diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/.version b/samples/webapp-template-app-react-sample-b2e-experimental/.version index f31f902..ff4d6d3 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/.version +++ b/samples/webapp-template-app-react-sample-b2e-experimental/.version @@ -1 +1 @@ -1.116.6 +1.117.3 diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/AGENT.md b/samples/webapp-template-app-react-sample-b2e-experimental/AGENT.md index bcb171e..26f6fcc 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/AGENT.md +++ b/samples/webapp-template-app-react-sample-b2e-experimental/AGENT.md @@ -1,87 +1,193 @@ -# Agent guide: SFDX project with React web app +# Agent guide: Salesforce UI Bundle development -This project is a **Salesforce DX (SFDX) project** containing a **React web application**. The SFDX source path is defined in `sfdx-project.json` (`packageDirectories[].path`); the web app lives under `/webapplications//`. Use this file when working in this directory. +This project is a **Salesforce DX (SFDX) project** containing a **React UI Bundle**. The UI Bundle is a standalone Vite + React SPA that runs inside the Salesforce platform. Use this file when working in this project. -## SFDX Source Path +## Resolving paths -The source path prefix is **not** always `force-app`. Read `sfdx-project.json` at the project root, take the first `packageDirectories[].path` value, and append `/main/default` to get ``. All paths below use this placeholder. +Read `sfdx-project.json` at the project root. Take the first `packageDirectories[].path` value and append `/main/default` to get ``. The UI Bundle directory is: + +``` +/uiBundles// +``` + +Replace `` with the actual folder name found under `uiBundles/`. The source path is **not** always `force-app` — always resolve it from `sfdx-project.json`. ## Project layout -- **Project root**: this directory — SFDX project root. Contains `sfdx-project.json`, the SFDX source directory, and (optionally) LWC/Aura. -- **React web app**: `/webapplications//` - - Replace `` with the actual app folder name (e.g. `base-react-app`, or the name chosen when the app was generated). - - Entry: `src/App.tsx` - - Routes: `src/routes.tsx` - - API/GraphQL: `src/api/` (e.g. `graphql.ts`, `graphql-operations-types.ts`, `utils/`) +``` +/ +├── sfdx-project.json +├── package.json # SFDX root scripts +├── scripts/ +│ ├── setup-cli.mjs # One-command setup (deploy, schema, build) +│ └── graphql-search.sh # Schema entity lookup +├── config/ +│ └── project-scratch-def.json +│ +└── / + ├── uiBundles/ + │ └── / # ← React UI Bundle (primary workspace) + │ ├── .uibundle-meta.xml + │ ├── ui-bundle.json + │ ├── index.html + │ ├── package.json + │ ├── vite.config.ts / tsconfig.json + │ ├── vitest.config.ts / playwright.config.ts + │ ├── codegen.yml / .graphqlrc.yml + │ └── src/ # All application code lives here + │ + ├── classes/ # Apex classes (optional) + ├── objects/ # Custom objects and fields (optional) + ├── permissionsets/ # Permission sets (optional) + ├── cspTrustedSites/ # CSP trusted site definitions (optional) + ├── layouts/ # Object layouts (optional) + ├── triggers/ # Apex triggers (optional) + └── data/ # Sample data for import (optional) +``` -Path convention: **webapplications** (lowercase). +## Web application source structure + +All application code lives inside the UI Bundle's `src/` directory: + +``` +src/ +├── app.tsx # Entry point — creates the browser router +├── appLayout.tsx # Shell layout (header, navigation, Outlet, footer) +├── routes.tsx # Single route registry for the entire app +├── navigationMenu.tsx # Navigation component +├── router-utils.tsx # Router helpers +├── lib/utils.ts # Utility functions (cn, etc.) +├── styles/global.css # Tailwind global styles +├── api/ # GraphQL operations, clients, data services +├── assets/ # Static SVGs, images +├── components/ +│ ├── ui/ # Shared primitives (shadcn-style: button, card, input, etc.) +│ ├── layout/ # Layout components (header, footer, sidebar) +│ └── / # Feature-specific components +├── features/ # Feature modules (auth, search, etc.) +├── hooks/ # Custom React hooks +├── pages/ # Page components (one per route) +├── public/ # Static assets served as-is +└── utils/ # Shared utilities +``` + +### Key files + +| File | Role | +|------|------| +| `app.tsx` | Creates `BrowserRouter`; do not add UI here | +| `appLayout.tsx` | Source of truth for navigation, header, footer, and page shell | +| `routes.tsx` | Single route registry; all pages are children of the layout route | +| `.uibundle-meta.xml` | Salesforce deploy descriptor (`masterLabel`, `version`, `isActive`) | +| `ui-bundle.json` | Runtime config (`outputDir`, routing) | ## Two package.json contexts -### 1. Project root (this directory) +### 1. Project root -Used for SFDX metadata (LWC, Aura, etc.). Scripts here are for the base SFDX template: +Used for SFDX metadata tooling. Scripts here target LWC/Aura, not the React app. | Command | Purpose | |---------|---------| -| `npm run lint` | ESLint for `aura/` and `lwc/` | | `npm run test` | LWC Jest (passWithNoTests) | -| `npm run prettier` | Format supported metadata files | +| `npm run prettier` | Format metadata files | | `npm run prettier:verify` | Check Prettier | -**One-command setup:** From project root run `node scripts/setup-cli.mjs --target-org ` to run login (if needed), deploy, optional permset/data import, GraphQL schema/codegen, web app build, and optionally the dev server. Use `node scripts/setup-cli.mjs --help` for options (e.g. `--skip-login`, `--skip-data`, `--webapp-name`). +**One-command setup:** `node scripts/setup-cli.mjs --target-org ` runs login, deploy, permset assignment, data import, GraphQL schema/codegen, UI Bundle build, and optionally the dev server. Use `--help` for all flags. -Root **does not** run the React app. The root `npm run build` is a no-op for the base SFDX project. +### 2. Web app directory (primary workspace) -### 2. React web app (where you do most work) - -**Always `cd` into the web app directory for dev/build/lint/test:** - -```bash -cd /webapplications/ -``` +**Always `cd` into the UI Bundle directory for dev/build/lint/test:** | Command | Purpose | |---------|---------| | `npm run dev` | Start Vite dev server | -| `npm run build` | TypeScript (`tsc -b`) + Vite build | +| `npm run build` | TypeScript check + Vite production build | | `npm run lint` | ESLint for the React app | -| `npm run test` | Vitest | +| `npm run test` | Vitest unit tests | | `npm run preview` | Preview production build | -| `npm run graphql:codegen` | Generate GraphQL types | -| `npm run graphql:schema` | Fetch GraphQL schema | +| `npm run graphql:codegen` | Generate GraphQL types from schema | +| `npm run graphql:schema` | Fetch GraphQL schema from org | -**Before finishing changes:** run `npm run build` and `npm run lint` from the web app directory; both must succeed. +**Before completing any change:** run `npm run build` and `npm run lint` from the UI Bundle directory. Both must pass with zero errors. -## Agent rules (.a4drules/) +## Development conventions -Markdown rules at the project root under **.a4drules/** define platform constraints: +### UI -- **`.a4drules/webapp-ui.md`** — Salesforce Web Application UI (scaffold with `sf webapp generate`, no LWC/Aura for new UI). -- **`.a4drules/webapp-data.md`** — Salesforce data access (Data SDK only, supported APIs, GraphQL workflow, `scripts/graphql-search.sh` for schema lookup). +- **Component library:** shadcn/ui primitives in `src/components/ui/`. Always use these over raw HTML equivalents. +- **Styling:** Tailwind CSS only. No inline `style={{}}`. Use `cn()` from `@/lib/utils` for conditional classes. +- **Icons:** Lucide React. +- **Path alias:** `@/*` maps to `src/*`. Use it for all imports. +- **TypeScript:** No `any`. Use proper types, generics, or `unknown`. +- **Components:** Accept `className?: string` prop. Extract shared state to custom hooks in `src/hooks/`. +- **React apps must not** import Salesforce platform modules (`lightning/*`, `@wire`, LWC APIs). -When rules refer to "web app directory" or `/webapplications//`, resolve `` from `sfdx-project.json` and use the **actual app folder name** for this project. +### Routing + +- React Router with `createBrowserRouter`. Route definitions live exclusively in `routes.tsx`. +- All page routes are children of the layout route (which renders `appLayout.tsx`). +- Default-export one component per page file. +- The catch-all `path: '*'` route must always be last. +- Navigation uses absolute paths (`/dashboard`). Non-router imports use dot-relative paths (`./utils`). +- Navigation visibility is driven by `handle.showInNavigation` on route definitions. + +### Layout and navigation + +- `appLayout.tsx` owns the header, navigation menu, footer, and ``. +- To modify header or footer, edit `appLayout.tsx` and create components in `src/components/layout/`. +- To add a page, add a route in `routes.tsx` and create the page component — do not modify `appLayout.tsx` or `app.tsx` for page additions. + +### Data access (Salesforce) + +- **All data access uses the Data SDK** (`@salesforce/sdk-data`) via `createDataSDK()`. +- **Never** use `fetch()` or `axios` directly for Salesforce data. +- **GraphQL is preferred** for record operations (`sdk.graphql`). Use `sdk.fetch` only when GraphQL cannot cover the case (UI API REST, Apex REST, Connect REST, Einstein LLM). +- Use optional chaining: `sdk.graphql?.()`, `sdk.fetch?.()`. +- Apply the `@optional` directive to all record fields for field-level security resilience. +- Verify field and object names via `scripts/graphql-search.sh` before writing queries. +- Use `__SF_API_VERSION__` global for API version in REST calls. +- **Blocked APIs:** Enterprise REST query endpoint (`/query` with SOQL), `@AuraEnabled` Apex, Chatter API. + +### CSP trusted sites + +Any external domain the app calls (APIs, CDNs, fonts) must have a `.cspTrustedSite-meta.xml` file under `/cspTrustedSites/`. Unregistered domains are blocked at runtime. Each subdomain needs its own entry. URLs must be HTTPS with no trailing slash, no path, and no wildcards. ## Deploying -**Deployment order:** Metadata (objects, permission sets) must be deployed before GraphQL schema fetch. After any metadata deployment, re-run `npm run graphql:schema` and `npm run graphql:codegen` from the webapp dir. **One-command setup:** `node scripts/setup-cli.mjs --target-org ` runs deploy → permset → schema → codegen in the correct order. +**Deployment order matters.** Metadata (objects, permission sets) must be deployed before fetching the GraphQL schema. After any metadata deployment that changes objects, fields, or permissions, re-run schema fetch and codegen. -From **this project root** (resolve the actual SFDX source path from `sfdx-project.json`): +**Recommended sequence:** + +1. Authenticate to the target org +2. Build the UI Bundle (`npm run build` in the UI Bundle directory) +3. Deploy metadata (`sf project deploy start --source-dir --target-org `) +4. Assign permission sets +5. Import data (only with user confirmation) +6. Fetch GraphQL schema + run codegen (`npm run graphql:schema && npm run graphql:codegen`) +7. Rebuild the UI Bundle (schema changes may affect generated types) + +**Or use the one-command setup:** `node scripts/setup-cli.mjs --target-org ` ```bash -# Build the React app first (replace and with actual values) -cd /webapplications/ && npm i && npm run build && cd - +# Deploy UI Bundle only +sf project deploy start --source-dir /ui-bundles --target-org -# Deploy web app only (replace with actual path, e.g. force-app/main/default) -sf project deploy start --source-dir /webapplications --target-org - -# Deploy all metadata (use the top-level package directory, e.g. force-app) +# Deploy all metadata sf project deploy start --source-dir --target-org ``` -## Conventions (quick reference) +## Skills -- **UI**: shadcn/ui + Tailwind. Import from `@/components/ui/...`. -- **Entry**: Keep `App.tsx` and routes in `src/`; add features as new routes or sections, don't replace the app shell but you may modify it to match the requested design. -- **Data (Salesforce)**: Follow `.a4drules/webapp-data.md` for all Salesforce data access. Use the Data SDK (`createDataSDK()` + `sdk.graphql` or `sdk.fetch`) — never use `fetch` or `axios` directly. GraphQL is preferred; use `sdk.fetch` when GraphQL is not sufficient. +Check for available skills before implementing any of the following: + +| Area | When to consult | +|------|----------------| +| UI generation | Building pages, components, modifying header/footer/layout | +| Salesforce data access | Reading/writing records, GraphQL queries, REST calls | +| Metadata and deployment | Scaffolding apps, configuring CSP, deployment sequencing | +| Feature installation | Before building something from scratch — check if a pre-built feature exists | +| File upload | Adding file upload with Salesforce ContentVersion | +| Agentforce conversation | Adding or modifying the Agentforce chat widget | + +Skills are the authoritative source for detailed patterns, constraints, and code examples in each area. This file provides project-level orientation; skills provide implementation depth. diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/CHANGELOG.md b/samples/webapp-template-app-react-sample-b2e-experimental/CHANGELOG.md index 1c3dfdd..cbee788 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/CHANGELOG.md +++ b/samples/webapp-template-app-react-sample-b2e-experimental/CHANGELOG.md @@ -3,7 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.116.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.5...v1.116.6) (2026-03-26) +## [1.117.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.2...v1.117.3) (2026-03-29) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.117.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.1...v1.117.2) (2026-03-29) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.117.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.0...v1.117.1) (2026-03-28) **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental @@ -11,9 +27,84 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline +# [1.117.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.13...v1.117.0) (2026-03-27) + +**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental + + + + + +## [1.116.13](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.12...v1.116.13) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.12](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.11...v1.116.12) (2026-03-27) + + +### Bug Fixes + +* updating AGENT.md to focus on UI Bundle development ([#366](https://github.com/salesforce-experience-platform-emu/webapps/issues/366)) ([59b94d7](https://github.com/salesforce-experience-platform-emu/webapps/commit/59b94d7b995042051e1622c78f8cd562b6f99244)) + + + + + +## [1.116.11](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.10...v1.116.11) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.10](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.9...v1.116.10) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.9](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.8...v1.116.9) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.7...v1.116.8) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.6...v1.116.7) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.5...v1.116.6) (2026-03-26) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + ## [1.116.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.4...v1.116.5) (2026-03-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -21,7 +112,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.116.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.3...v1.116.4) (2026-03-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -29,7 +120,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.116.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.2...v1.116.3) (2026-03-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -48,7 +139,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.116.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.0...v1.116.1) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -56,7 +147,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.116.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.115.0...v1.116.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -64,7 +155,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.115.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.114.0...v1.115.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -72,7 +163,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.114.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.113.0...v1.114.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -80,7 +171,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.113.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.10...v1.113.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -88,7 +179,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.10](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.9...v1.112.10) (2026-03-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -107,7 +198,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.7...v1.112.8) (2026-03-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -115,7 +206,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.6...v1.112.7) (2026-03-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -123,7 +214,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.5...v1.112.6) (2026-03-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -131,7 +222,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.4...v1.112.5) (2026-03-21) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -161,7 +252,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.1...v1.112.2) (2026-03-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -169,7 +260,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.0...v1.112.1) (2026-03-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -188,7 +279,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.111.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.110.1...v1.111.0) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -207,7 +298,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.110.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.9...v1.110.0) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -215,7 +306,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.9](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.8...v1.109.9) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -223,7 +314,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.7...v1.109.8) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -231,7 +322,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.6...v1.109.7) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -239,7 +330,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.5...v1.109.6) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -247,7 +338,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.4...v1.109.5) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -255,7 +346,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.3...v1.109.4) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -263,7 +354,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.2...v1.109.3) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -271,7 +362,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.1...v1.109.2) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -279,7 +370,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.0...v1.109.1) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -287,7 +378,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.109.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.108.1...v1.109.0) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -295,7 +386,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.108.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.108.0...v1.108.1) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -303,7 +394,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.108.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.6...v1.108.0) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -322,7 +413,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.4...v1.107.5) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -330,7 +421,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.3...v1.107.4) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -349,7 +440,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.1...v1.107.2) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -357,7 +448,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.0...v1.107.1) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -409,7 +500,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.105.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.105.0...v1.105.1) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -417,7 +508,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.105.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.104.1...v1.105.0) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -425,7 +516,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.104.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.104.0...v1.104.1) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -433,7 +524,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.104.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.6...v1.104.0) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -441,7 +532,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.5...v1.103.6) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -449,7 +540,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.4...v1.103.5) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -457,7 +548,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.3...v1.103.4) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -465,7 +556,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.2...v1.103.3) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -484,7 +575,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.0...v1.103.1) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -492,7 +583,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.103.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.102.1...v1.103.0) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -500,7 +591,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.102.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.102.0...v1.102.1) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -508,7 +599,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.102.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.5...v1.102.0) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -516,7 +607,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.4...v1.101.5) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -524,7 +615,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.3...v1.101.4) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -532,7 +623,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.2...v1.101.3) (2026-03-14) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -540,7 +631,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.1...v1.101.2) (2026-03-14) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -548,7 +639,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.0...v1.101.1) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -556,7 +647,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.101.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.100.2...v1.101.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -564,7 +655,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.100.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.100.1...v1.100.2) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -572,7 +663,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.100.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.100.0...v1.100.1) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -580,7 +671,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.100.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.99.0...v1.100.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -588,7 +679,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.99.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.98.0...v1.99.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -596,7 +687,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.98.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.97.2...v1.98.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -604,7 +695,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.97.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.97.1...v1.97.2) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -612,7 +703,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.97.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.97.0...v1.97.1) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -620,7 +711,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.97.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.96.0...v1.97.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -628,7 +719,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.96.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.95.0...v1.96.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -636,7 +727,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.95.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.94.1...v1.95.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -655,7 +746,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.94.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.93.1...v1.94.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -663,7 +754,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.93.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.93.0...v1.93.1) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -671,7 +762,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.93.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.92.1...v1.93.0) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -690,7 +781,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.92.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.91.0...v1.92.0) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -698,7 +789,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.91.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.4...v1.91.0) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -706,7 +797,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.3...v1.90.4) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -714,7 +805,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.2...v1.90.3) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -722,7 +813,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.1...v1.90.2) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -730,7 +821,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.0...v1.90.1) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -749,7 +840,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.89.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.88.1...v1.89.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -757,7 +848,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.88.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.88.0...v1.88.1) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -765,7 +856,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.88.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.87.0...v1.88.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -776,7 +867,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* new webapp specific rules ([#246](https://github.com/salesforce-experience-platform-emu/webapps/issues/246)) ([cff4738](https://github.com/salesforce-experience-platform-emu/webapps/commit/cff4738ed407828c844e1cd412c962e2a64d869d)) +* new UI Bundle specific rules ([#246](https://github.com/salesforce-experience-platform-emu/webapps/issues/246)) ([cff4738](https://github.com/salesforce-experience-platform-emu/webapps/commit/cff4738ed407828c844e1cd412c962e2a64d869d)) @@ -784,7 +875,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.86.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.85.0...v1.86.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -792,7 +883,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.85.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.84.1...v1.85.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -800,7 +891,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.84.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.84.0...v1.84.1) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -822,7 +913,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* dedupe with feature skills, rename to webapp-react-* where relevant @W-21338965@ ([#233](https://github.com/salesforce-experience-platform-emu/webapps/issues/233)) ([9e4e4d8](https://github.com/salesforce-experience-platform-emu/webapps/commit/9e4e4d80f4a33575412e1940a8cbfaae6c035a12)) +* dedupe with feature skills, rename to ui-bundle-react-* where relevant @W-21338965@ ([#233](https://github.com/salesforce-experience-platform-emu/webapps/issues/233)) ([9e4e4d8](https://github.com/salesforce-experience-platform-emu/webapps/commit/9e4e4d80f4a33575412e1940a8cbfaae6c035a12)) @@ -830,7 +921,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.82.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.81.0...v1.82.0) (2026-03-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -838,7 +929,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.81.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.80.1...v1.81.0) (2026-03-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -846,7 +937,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.80.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.80.0...v1.80.1) (2026-03-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -854,7 +945,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.80.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.79.2...v1.80.0) (2026-03-07) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -862,7 +953,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.79.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.79.1...v1.79.2) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -870,7 +961,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.79.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.79.0...v1.79.1) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -878,7 +969,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.79.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.78.0...v1.79.0) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -886,7 +977,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.78.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.77.0...v1.78.0) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -894,7 +985,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.77.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.76.1...v1.77.0) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -902,7 +993,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.76.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.76.0...v1.76.1) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -921,7 +1012,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.75.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.75.0...v1.75.1) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -929,7 +1020,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.75.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.74.0...v1.75.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -937,7 +1028,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.74.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.1...v1.74.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -945,7 +1036,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.73.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.0...v1.73.1) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -953,7 +1044,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.73.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.72.0...v1.73.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -961,7 +1052,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.72.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.3...v1.72.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -969,7 +1060,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.71.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.2...v1.71.3) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -977,7 +1068,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.71.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.1...v1.71.2) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -985,7 +1076,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.71.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.0...v1.71.1) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -993,7 +1084,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.71.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.70.0...v1.71.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1001,7 +1092,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.70.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.69.0...v1.70.0) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1009,7 +1100,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.69.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.68.1...v1.69.0) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1017,7 +1108,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.68.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.68.0...v1.68.1) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1025,7 +1116,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.68.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.67.1...v1.68.0) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1033,7 +1124,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.67.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.67.0...v1.67.1) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1041,7 +1132,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.67.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.66.0...v1.67.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1049,7 +1140,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.66.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.65.0...v1.66.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1057,7 +1148,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.65.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.64.0...v1.65.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1065,7 +1156,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.64.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.63.0...v1.64.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1084,7 +1175,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.62.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.62.1...v1.62.2) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1092,7 +1183,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.62.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.62.0...v1.62.1) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1100,7 +1191,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.62.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.4...v1.62.0) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1108,7 +1199,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.3...v1.61.4) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1116,7 +1207,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.2...v1.61.3) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1124,7 +1215,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.1...v1.61.2) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1132,7 +1223,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.0...v1.61.1) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1140,7 +1231,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.61.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.2...v1.61.0) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1148,7 +1239,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.60.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.1...v1.60.2) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1156,7 +1247,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.60.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.0...v1.60.1) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1164,7 +1255,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.60.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.59.2...v1.60.0) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1172,7 +1263,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.59.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.59.1...v1.59.2) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1180,7 +1271,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.59.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.59.0...v1.59.1) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1188,7 +1279,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.59.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.58.2...v1.59.0) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1207,7 +1298,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.58.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.58.0...v1.58.1) (2026-02-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1215,7 +1306,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.58.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.57.0...v1.58.0) (2026-02-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1223,7 +1314,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.57.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.56.1...v1.57.0) (2026-02-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1231,7 +1322,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.56.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.56.0...v1.56.1) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1239,7 +1330,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.56.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.55.0...v1.56.0) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1247,7 +1338,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.55.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.1...v1.55.0) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1255,7 +1346,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.54.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.0...v1.54.1) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1263,7 +1354,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.54.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.2...v1.54.0) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1282,7 +1373,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.53.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.0...v1.53.1) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1290,7 +1381,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.53.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.52.1...v1.53.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1298,7 +1389,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.52.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.52.0...v1.52.1) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1306,7 +1397,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.52.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.51.0...v1.52.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1314,7 +1405,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.51.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.50.1...v1.51.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1322,7 +1413,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.50.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.50.0...v1.50.1) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1330,7 +1421,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.50.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.49.0...v1.50.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1338,7 +1429,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.49.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.3...v1.49.0) (2026-02-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1346,7 +1437,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.48.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.2...v1.48.3) (2026-02-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1354,7 +1445,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.48.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.1...v1.48.2) (2026-02-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1362,7 +1453,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.48.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.0...v1.48.1) (2026-02-21) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1370,7 +1461,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.48.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.47.0...v1.48.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1378,7 +1469,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.47.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.2...v1.47.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1386,7 +1477,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.46.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.1...v1.46.2) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1394,7 +1485,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.46.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.0...v1.46.1) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1402,7 +1493,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.46.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.45.1...v1.46.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1410,7 +1501,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.45.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.45.0...v1.45.1) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1418,7 +1509,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.45.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.44.0...v1.45.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1426,7 +1517,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.44.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.43.1...v1.44.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1445,7 +1536,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.43.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.42.0...v1.43.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1453,7 +1544,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.42.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.41.0...v1.42.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1461,7 +1552,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.41.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.40.0...v1.41.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1469,7 +1560,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.40.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.39.0...v1.40.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1477,7 +1568,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.39.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.1...v1.39.0) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1485,7 +1576,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.38.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.0...v1.38.1) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1493,7 +1584,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.38.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.37.0...v1.38.0) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1501,7 +1592,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.37.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.4...v1.37.0) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1509,7 +1600,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.3...v1.36.4) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1517,7 +1608,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.2...v1.36.3) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1525,7 +1616,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.1...v1.36.2) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1533,7 +1624,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.0...v1.36.1) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1563,7 +1654,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.35.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.0...v1.35.1) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1571,7 +1662,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.35.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.34.0...v1.35.0) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1579,7 +1670,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.34.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.6...v1.34.0) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1587,7 +1678,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.5...v1.33.6) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1595,7 +1686,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.4...v1.33.5) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1603,7 +1694,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.3...v1.33.4) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1611,7 +1702,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.2...v1.33.3) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1619,7 +1710,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.1...v1.33.2) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1627,7 +1718,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.0...v1.33.1) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1635,7 +1726,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.33.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.32.0...v1.33.0) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1643,7 +1734,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.32.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.31.0...v1.32.0) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1651,7 +1742,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.31.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.30.1...v1.31.0) (2026-02-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1659,7 +1750,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.30.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.30.0...v1.30.1) (2026-02-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1678,7 +1769,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.29.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.29.0...v1.29.1) (2026-02-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1686,7 +1777,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.29.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.2...v1.29.0) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1694,7 +1785,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.28.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.1...v1.28.2) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1702,7 +1793,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.28.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.0...v1.28.1) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1710,7 +1801,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.28.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.27.1...v1.28.0) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1718,7 +1809,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.27.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.27.0...v1.27.1) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1737,7 +1828,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.26.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.2...v1.26.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1745,7 +1836,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.25.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.1...v1.25.2) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1753,7 +1844,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.25.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.0...v1.25.1) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1761,7 +1852,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.25.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.24.0...v1.25.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1769,7 +1860,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.24.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.23.0...v1.24.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1777,7 +1868,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.23.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.22.1...v1.23.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1785,7 +1876,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.22.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.22.0...v1.22.1) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1804,7 +1895,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.21.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.20.0...v1.21.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1812,7 +1903,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.20.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.19.1...v1.20.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1820,7 +1911,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.19.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.19.0...v1.19.1) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1828,7 +1919,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.19.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.18.0...v1.19.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1836,7 +1927,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.18.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.17.1...v1.18.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1844,7 +1935,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.17.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.17.0...v1.17.1) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1852,7 +1943,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.17.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.16.1...v1.17.0) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1860,7 +1951,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.16.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.16.0...v1.16.1) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1868,7 +1959,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.16.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.15.0...v1.16.0) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1876,7 +1967,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.15.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.14.0...v1.15.0) (2026-02-07) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1884,7 +1975,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.14.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.13.0...v1.14.0) (2026-02-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1903,7 +1994,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.12.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.2...v1.12.0) (2026-02-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1911,7 +2002,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.11.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.1...v1.11.2) (2026-02-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1919,7 +2010,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.11.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.0...v1.11.1) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1927,7 +2018,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.11.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.10.0...v1.11.0) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1935,7 +2026,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.10.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.9.0...v1.10.0) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1943,7 +2034,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.9.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.8.1...v1.9.0) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1951,7 +2042,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.8.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.8.0...v1.8.1) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1959,7 +2050,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.8.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.7.0...v1.8.0) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1967,7 +2058,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.7.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.2...v1.7.0) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1975,7 +2066,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.6.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.1...v1.6.2) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1983,7 +2074,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.6.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.0...v1.6.1) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1991,7 +2082,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.6.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.5.1...v1.6.0) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1999,7 +2090,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.5.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.5.0...v1.5.1) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2007,7 +2098,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.5.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.4.0...v1.5.0) (2026-02-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2015,7 +2106,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.4.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.5...v1.4.0) (2026-02-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2023,7 +2114,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.3.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.4...v1.3.5) (2026-01-31) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2031,7 +2122,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.3.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.3...v1.3.4) (2026-01-31) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/README.md b/samples/webapp-template-app-react-sample-b2e-experimental/README.md index 386cd89..1dd9d44 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/README.md +++ b/samples/webapp-template-app-react-sample-b2e-experimental/README.md @@ -1,43 +1,43 @@ # Property Management App -A property management sample React web app for the Salesforce platform. Demonstrates property management, maintenance requests, tenant applications, a dashboard, and an Agentforce conversation client. Built with React, Vite, TypeScript, and Tailwind/shadcn. +A property management sample React UI Bundle for the Salesforce platform. Demonstrates property management, maintenance requests, tenant applications, a dashboard, and an Agentforce conversation client. Built with React, Vite, TypeScript, and Tailwind/shadcn. ## What's included -| Path | Description | -| --------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `force-app/main/default/webapplications/propertymanagementapp/` | React web app (source, config, tests) | -| `force-app/main/default/objects/` | 17 custom objects — Agent\_\_c, Application\_\_c, KPI_Snapshot\_\_c, Lease\_\_c, Maintenance_Request\_\_c, Maintenance_Worker\_\_c, Notification\_\_c, Payment\_\_c, Property\_\_c, Property_Cost\_\_c, Property_Feature\_\_c, Property_Image\_\_c, Property_Listing\_\_c, Property_Management_Company\_\_c, Property_Owner\_\_c, Property_Sale\_\_c, Tenant\_\_c | -| `force-app/main/default/layouts/` | Page layouts for each custom object | -| `force-app/main/default/permissionsets/` | `Property_Management_Access` permission set | -| `force-app/main/default/data/` | Sample data (JSON) for all objects, importable via `sf data import tree` | +| Path | Description | +| --------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `force-app/main/default/uiBundles/propertymanagementapp/` | React UI Bundle (source, config, tests) | +| `force-app/main/default/objects/` | 17 custom objects — Agent\_\_c, Application\_\_c, KPI_Snapshot\_\_c, Lease\_\_c, Maintenance_Request\_\_c, Maintenance_Worker\_\_c, Notification\_\_c, Payment\_\_c, Property\_\_c, Property_Cost\_\_c, Property_Feature\_\_c, Property_Image\_\_c, Property_Listing\_\_c, Property_Management_Company\_\_c, Property_Owner\_\_c, Property_Sale\_\_c, Tenant\_\_c | +| `force-app/main/default/layouts/` | Page layouts for each custom object | +| `force-app/main/default/permissionsets/` | `Property_Management_Access` permission set | +| `force-app/main/default/data/` | Sample data (JSON) for all objects, importable via `sf data import tree` | ## Getting started -Navigate to the web app and install dependencies: +Navigate to the UI Bundle and install dependencies: ```bash -cd force-app/main/default/webapplications/propertymanagementapp +cd force-app/main/default/uiBundles/propertymanagementapp npm install npm run dev ``` -Opens at http://localhost:5173 by default. For build and test instructions, see the [web app README](force-app/main/default/webapplications/propertymanagementapp/README.md). +Opens at http://localhost:5173 by default. For build and test instructions, see the [UI Bundle README](force-app/main/default/uiBundles/propertymanagementapp/README.md). ## Deploy -### Deploy everything (metadata + web app) +### Deploy everything (metadata + UI Bundle) ```bash -cd force-app/main/default/webapplications/propertymanagementapp && npm install && npm run build && cd - +cd force-app/main/default/uiBundles/propertymanagementapp && npm install && npm run build && cd - sf project deploy start --source-dir force-app --target-org ``` -### Deploy the web app only +### Deploy the UI Bundle only ```bash -cd force-app/main/default/webapplications/propertymanagementapp && npm install && npm run build && cd - -sf project deploy start --source-dir force-app/main/default/webapplications --target-org +cd force-app/main/default/uiBundles/propertymanagementapp && npm install && npm run build && cd - +sf project deploy start --source-dir force-app/main/default/ui-bundles --target-org ``` ### Deploy metadata only (objects, layouts, permission sets) @@ -70,7 +70,7 @@ sf data import tree --plan force-app/main/default/data/data-plan.json --target-o ## Using setup-cli.mjs -When this app is built (e.g. from the monorepo or from a published package), a `setup-cli.mjs` script is included at the project root. It runs the full setup in one go: login (if needed), deploy metadata, assign the `Property_Management_Access` permission set, prepare and import sample data, fetch GraphQL schema and run codegen, build the web app, and optionally start the dev server. +When this app is built (e.g. from the monorepo or from a published package), a `setup-cli.mjs` script is included at the project root. It runs the full setup in one go: login (if needed), deploy metadata, assign the `Property_Management_Access` permission set, prepare and import sample data, fetch GraphQL schema and run codegen, build the UI Bundle, and optionally start the dev server. Run from the **project root** (the directory that contains `force-app/`, `sfdx-project.json`, and `setup-cli.mjs`): @@ -80,15 +80,15 @@ node setup-cli.mjs --target-org Common options: -| Option | Description | -| --------------------- | ---------------------------------------------------------------- | -| `--skip-login` | Skip browser login (org already authenticated) | -| `--skip-data` | Skip data preparation and import | -| `--skip-graphql` | Skip GraphQL schema fetch and codegen | -| `--skip-webapp-build` | Skip `npm install` and web app build | -| `--skip-dev` | Do not start the dev server at the end | -| `--permset ` | Permission set to assign (default: `Property_Management_Access`) | -| `--app ` | Web app folder name when multiple exist | +| Option | Description | +| ------------------------ | ---------------------------------------------------------------- | +| `--skip-login` | Skip browser login (org already authenticated) | +| `--skip-data` | Skip data preparation and import | +| `--skip-graphql` | Skip GraphQL schema fetch and codegen | +| `--skip-ui-bundle-build` | Skip `npm install` and UI Bundle build | +| `--skip-dev` | Do not start the dev server at the end | +| `--permset ` | Permission set to assign (default: `Property_Management_Access`) | +| `--app ` | Web app folder name when multiple exist | For all options: `node setup-cli.mjs --help`. diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls index b84c7bf..e3fe932 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls @@ -1,4 +1,4 @@ -public with sharing class MaintenanceRequestTriggerHandler { +public without sharing class MaintenanceRequestTriggerHandler { /** * Handles before insert logic for Maintenance Request records @@ -7,11 +7,14 @@ public with sharing class MaintenanceRequestTriggerHandler { public static void handleBeforeInsert(List newRequests) { // Map to store request type to worker type mappings Map requestTypeToWorkerType = new Map{ - 'Plumbing' => 'Plumbing', - 'Electrical' => 'Electrical', - 'HVAC' => 'HVAC (Heating & Cooling)', - 'Appliance' => 'Appliance Repair', - 'Pest' => 'Pest Control' + 'Plumbing' => 'Plumbing', + 'Electrical' => 'Electrical', + 'HVAC' => 'HVAC (Heating & Cooling)', + 'Appliance' => 'Appliance Repair', + 'Carpentry' => 'General Carpentry', + 'Landscaping' => 'Landscaping / Grounds', + 'Cleaning' => 'Janitorial / Cleaning', + 'Pest' => 'Pest Control' }; // Collect unique worker types needed diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler.cls b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler.cls index 0cb1b70..5cb48c8 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler.cls +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler.cls @@ -29,7 +29,15 @@ public with sharing class TenantTriggerHandler { if (userIds.isEmpty()) { return; } + assignTenantMaintenanceAccessAsync(new List(userIds)); + } + @future + private static void assignTenantMaintenanceAccessAsync(List userIdsList) { + Set userIds = new Set(userIdsList); + if (userIds.isEmpty()) { + return; + } List permSets = [ SELECT Id FROM PermissionSet diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls index 49c6b1a..d2b953c 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls @@ -73,7 +73,9 @@ private class TenantTriggerHandler_Test { static void testNoDuplicateAssign() { Id runAsUserId = UserInfo.getUserId(); Tenant__c tenant = new Tenant__c(User__c = runAsUserId); + Test.startTest(); insert tenant; + Test.stopTest(); Integer countBefore = [ SELECT COUNT() @@ -82,8 +84,10 @@ private class TenantTriggerHandler_Test { AND PermissionSet.Name = 'Tenant_Maintenance_Access' ]; + Test.startTest(); tenant.Status__c = 'Active'; update tenant; + Test.stopTest(); Integer countAfter = [ SELECT COUNT() diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml index 1612d0e..b904f6d 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml @@ -32,11 +32,31 @@ false + + Carpentry + false + + + + Landscaping + false + + + + Cleaning + false + + Pest false + + Other + false + + diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.forceignore b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.forceignore similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.forceignore rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.forceignore diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.graphqlrc.yml b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.graphqlrc.yml similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.graphqlrc.yml rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.graphqlrc.yml diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.prettierignore b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.prettierignore similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.prettierignore rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.prettierignore diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.prettierrc b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.prettierrc similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/.prettierrc rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/.prettierrc diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/CHANGELOG.md b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/CHANGELOG.md similarity index 50% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/CHANGELOG.md rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/CHANGELOG.md index aa218bb..cfc9c85 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/CHANGELOG.md +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/CHANGELOG.md @@ -7,4 +7,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -- auto bump base react app versions and fix issue with base webapplication json ([#175](https://github.com/salesforce-experience-platform-emu/webapps/issues/175)) ([048b5a8](https://github.com/salesforce-experience-platform-emu/webapps/commit/048b5a8449c899fc923aeebc3c76bc5bf1c5e0d4)) +- auto bump base react app versions and fix issue with base ui-bundle json ([#175](https://github.com/salesforce-experience-platform-emu/webapps/issues/175)) ([048b5a8](https://github.com/salesforce-experience-platform-emu/webapps/commit/048b5a8449c899fc923aeebc3c76bc5bf1c5e0d4)) diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/README.md b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/README.md similarity index 55% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/README.md rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/README.md index d599992..e704984 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/README.md +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/README.md @@ -1,6 +1,6 @@ # Property Management App -Property management sample React web app on the Salesforce platform. Includes property management, maintenance requests, tenant applications, a dashboard, and an Agentforce conversation client. Built with React, Vite, TypeScript, and Tailwind/shadcn. +Property management sample React UI Bundle on the Salesforce platform. Includes property management, maintenance requests, tenant applications, a dashboard, and an Agentforce conversation client. Built with React, Vite, TypeScript, and Tailwind/shadcn. For project-level details (metadata, deploy, sample data), see the [project README](../../../../../../README.md). @@ -24,7 +24,7 @@ Starts the Vite dev server (default: http://localhost:5173). npm run build ``` -Writes the production bundle to `dist/` inside the web app folder. +Writes the production bundle to `dist/` inside the UI Bundle folder. ## Test diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/codegen.yml b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/codegen.yml similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/codegen.yml rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/codegen.yml diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/components.json b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/components.json similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/components.json rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/components.json diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/e2e/app.spec.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/e2e/app.spec.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/e2e/app.spec.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/e2e/app.spec.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/eslint.config.js b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/eslint.config.js similarity index 92% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/eslint.config.js rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/eslint.config.js index 0bf9b43..cd400d4 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/eslint.config.js +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/eslint.config.js @@ -18,7 +18,12 @@ const schemaExists = existsSync(schemaPath); const config = [ // Global ignores { - ignores: ['build/**/*', 'dist/**/*', 'coverage/**/*'], + ignores: [ + 'build/**/*', + 'dist/**/*', + 'coverage/**/*', + 'src/api/graphql-operations-types.ts', + ], }, // Config files and build tools (first to avoid inheritance) { @@ -89,11 +94,17 @@ const config = [ 'react/no-unescaped-entities': 'off', '@typescript-eslint/no-unused-vars': [ 'error', - { argsIgnorePattern: '^_' }, + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + caughtErrorsIgnorePattern: '^_', + ignoreRestSiblings: true, + }, ], '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'off', + 'react-hooks/set-state-in-effect': 'warn', }, settings: { react: { diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/index.html b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/index.html similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/index.html rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/index.html diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/package.json b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/package.json similarity index 86% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/package.json rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/package.json index 64f3607..0299412 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/package.json +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/package.json @@ -15,8 +15,8 @@ "graphql:schema": "node scripts/get-graphql-schema.mjs" }, "dependencies": { - "@salesforce/sdk-data": "^1.116.6", - "@salesforce/webapp-experimental": "^1.116.6", + "@salesforce/sdk-data": "file:../../../../../../../../../sdk/sdk-data", + "@salesforce/ui-bundle": "file:../../../../../../../../../ui-bundle", "@tailwindcss/vite": "^4.1.17", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", @@ -32,7 +32,7 @@ "tailwind-merge": "^3.5.0", "tailwindcss": "^4.1.17", "tw-animate-css": "^1.4.0", - "@salesforce/agentforce-conversation-client": "^1.102.0", + "@salesforce/agentforce-conversation-client": "^1.116.9", "recharts": "^2.15.0" }, "devDependencies": { @@ -43,7 +43,7 @@ "@graphql-eslint/eslint-plugin": "^4.1.0", "@graphql-tools/utils": "^11.0.0", "@playwright/test": "^1.49.0", - "@salesforce/vite-plugin-webapp-experimental": "^1.116.6", + "@salesforce/vite-plugin-ui-bundle": "file:../../../../../../../../../vite-plugin-ui-bundle", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.1.0", "@testing-library/user-event": "^14.5.2", diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/playwright.config.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/playwright.config.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/playwright.config.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/playwright.config.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/propertymanagementapp.webapplication-meta.xml b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/propertymanagementapp.uibundle-meta.xml similarity index 50% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/propertymanagementapp.webapplication-meta.xml rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/propertymanagementapp.uibundle-meta.xml index 1a87842..b4c06e8 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/propertymanagementapp.webapplication-meta.xml +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/propertymanagementapp.uibundle-meta.xml @@ -1,7 +1,7 @@ - + propertymanagementapp - A Salesforce web application. + A Salesforce UI Bundle. true 1 - + diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/scripts/get-graphql-schema.mjs b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/scripts/get-graphql-schema.mjs similarity index 96% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/scripts/get-graphql-schema.mjs rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/scripts/get-graphql-schema.mjs index 50fe06d..7603005 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/scripts/get-graphql-schema.mjs +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/scripts/get-graphql-schema.mjs @@ -10,7 +10,7 @@ */ import { writeFileSync } from 'node:fs'; import { resolve } from 'node:path'; -import { getOrgInfo } from '@salesforce/webapp-experimental/app'; +import { getOrgInfo } from '@salesforce/ui-bundle/app'; import { buildClientSchema, getIntrospectionQuery, printSchema } from 'graphql'; import { pruneSchema } from '@graphql-tools/utils'; diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/scripts/rewrite-e2e-assets.mjs b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/scripts/rewrite-e2e-assets.mjs similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/scripts/rewrite-e2e-assets.mjs rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/scripts/rewrite-e2e-assets.mjs diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/applicationSearchService.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applicationSearchService.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/applicationSearchService.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applicationSearchService.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applications.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applications.ts new file mode 100644 index 0000000..a2de4be --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applications.ts @@ -0,0 +1,122 @@ +import GET_APPLICATIONS from "./query/getApplications.graphql?raw"; +import UPDATE_APPLICATION_STATUS from "./query/updateApplicationStatus.graphql?raw"; +import APPLICATION_FOR_APPROVAL_QUERY from "./query/applicationForApproval.graphql?raw"; +import USER_BY_CONTACT_QUERY from "./query/userByContact.graphql?raw"; +import EXISTING_TENANT_QUERY from "./query/existingTenant.graphql?raw"; +import { createRecord } from "@salesforce/ui-bundle/api"; +import type { + GetApplicationsQuery, + GetApplicationsQueryVariables, + UpdateApplicationStatusMutation, + UpdateApplicationStatusMutationVariables, + ApplicationForApprovalQuery, + ApplicationForApprovalQueryVariables, + UserByContactQuery, + UserByContactQueryVariables, + ExistingTenantQuery, + ExistingTenantQueryVariables, +} from "../graphql-operations-types.js"; +import { executeGraphQL } from "../graphqlClient.js"; + +export type ApplicationNode = NonNullable< + NonNullable< + NonNullable["edges"] + >[number] +>["node"]; + +const TENANT_OBJECT_API_NAME = "Tenant__c"; + +export async function getApplications(): Promise[]> { + try { + const data = await executeGraphQL( + GET_APPLICATIONS, + {}, + ); + const edges = data?.uiapi?.query?.Application__c?.edges || []; + return edges + .map((edge) => edge?.node) + .filter((node): node is NonNullable => node != null); + } catch (error) { + console.error("Error fetching applications:", error); + return []; + } +} + +export async function updateApplicationStatus( + applicationId: string, + status: string, +): Promise { + const normalizedStatus = status.trim().toLowerCase(); + if (normalizedStatus === "approved") { + await ensureTenantForApprovedApplication(applicationId); + } + + const variables: UpdateApplicationStatusMutationVariables = { + input: { + Id: applicationId, + Application__c: { + Status__c: status, + }, + }, + }; + try { + const data = await executeGraphQL< + UpdateApplicationStatusMutation, + UpdateApplicationStatusMutationVariables + >(UPDATE_APPLICATION_STATUS, variables); + return !!data?.uiapi?.Application__cUpdate?.success; + } catch (error) { + console.error("Error updating application status:", error); + return false; + } +} + +async function ensureTenantForApprovedApplication(applicationId: string): Promise { + const appData = await executeGraphQL< + ApplicationForApprovalQuery, + ApplicationForApprovalQueryVariables + >(APPLICATION_FOR_APPROVAL_QUERY, { applicationId }); + const applicationNode = appData.uiapi?.query?.Application__c?.edges?.[0]?.node; + if (!applicationNode) { + throw new Error("Application record not found."); + } + + const contactId = applicationNode.User__c?.value ?? null; + const propertyId = applicationNode.Property__c?.value ?? null; + const startDate = applicationNode.Start_Date__c?.value ?? null; + + if (!contactId || !propertyId) { + return; + } + + const userData = await executeGraphQL( + USER_BY_CONTACT_QUERY, + { contactId }, + ); + const userId = userData.uiapi?.query?.User?.edges?.[0]?.node?.Id ?? null; + if (!userId) { + return; + } + + const existingTenantData = await executeGraphQL< + ExistingTenantQuery, + ExistingTenantQueryVariables + >(EXISTING_TENANT_QUERY, { + userId, + propertyId, + }); + const existingTenantId = existingTenantData.uiapi?.query?.Tenant__c?.edges?.[0]?.node?.Id ?? null; + if (existingTenantId) return; + + const tenantFields: Record = { + User__c: userId, + Property__c: propertyId, + User_Status__c: "Tenant", + Status__c: "Active", + }; + if (startDate) { + tenantFields.Start_Date__c = String(startDate); + } + + await createRecord(TENANT_OBJECT_API_NAME, tenantFields); +} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/applicationForApproval.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/applicationForApproval.graphql new file mode 100644 index 0000000..1d5bfb0 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/applicationForApproval.graphql @@ -0,0 +1,22 @@ +query ApplicationForApproval($applicationId: ID!) { + uiapi { + query { + Application__c(where: { Id: { eq: $applicationId } }, first: 1) { + edges { + node { + Id + User__c @optional { + value + } + Property__c @optional { + value + } + Start_Date__c @optional { + value + } + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/distinctApplicationStatus.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/distinctApplicationStatus.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/distinctApplicationStatus.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/distinctApplicationStatus.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/existingTenant.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/existingTenant.graphql new file mode 100644 index 0000000..3320bce --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/existingTenant.graphql @@ -0,0 +1,16 @@ +query ExistingTenant($userId: ID!, $propertyId: ID!) { + uiapi { + query { + Tenant__c( + where: { and: [{ User__c: { eq: $userId } }, { Property__c: { eq: $propertyId } }] } + first: 1 + ) { + edges { + node { + Id + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/getApplications.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/getApplications.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/getApplications.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/getApplications.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/searchApplications.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/searchApplications.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/searchApplications.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/searchApplications.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/updateApplicationStatus.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/updateApplicationStatus.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/query/updateApplicationStatus.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/updateApplicationStatus.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/userByContact.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/userByContact.graphql new file mode 100644 index 0000000..9025382 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/userByContact.graphql @@ -0,0 +1,13 @@ +query UserByContact($contactId: ID!) { + uiapi { + query { + User(where: { ContactId: { eq: $contactId } }, first: 1) { + edges { + node { + Id + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/dashboard.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/dashboard.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/dashboard.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/dashboard.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/query/getDashboardMetrics.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getDashboardMetrics.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/query/getDashboardMetrics.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getDashboardMetrics.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/query/getOpenApplications.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getOpenApplications.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/query/getOpenApplications.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getOpenApplications.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/query/getUserInfo.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getUserInfo.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/dashboard/query/getUserInfo.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getUserInfo.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/graphql-operations-types.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphql-operations-types.ts similarity index 72% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/graphql-operations-types.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphql-operations-types.ts index 5464e05..1eed99e 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/graphql-operations-types.ts +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphql-operations-types.ts @@ -39,6 +39,159 @@ export type Scalars = { Url: { input: string; output: string }; }; +export type AbnExperimentCohort_Filter = { + AbnExperiment?: InputMaybe; + AbnExperimentId?: InputMaybe; + AllocationWeight?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsControl?: InputMaybe; + IsDeleted?: InputMaybe; + IsFallThrough?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Personalizer?: InputMaybe; + PersonalizerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AbnExperimentEngmtSgnlMtrc_Filter = { + AbnExperiment?: InputMaybe; + AbnExperimentId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsHigherBetter?: InputMaybe; + IsPrimary?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Metric?: InputMaybe; + MetricId?: InputMaybe; + OverallScoreWeight?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AbnExperimentEngmtSgnlMtrc_Metric_Filters = { + EngagementSignalCmpndMetric?: InputMaybe; + EngagementSignalMetric?: InputMaybe; + Name?: InputMaybe; +}; + +export type AbnExperiment_Filter = { + ChanceToWinThreshold?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastAnalyzed?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + MaximumDurationInMinutes?: InputMaybe; + MinimumDurationInMinutes?: InputMaybe; + MinimumRequiredParticipants?: InputMaybe; + Name?: InputMaybe; + PersonalizationSchema?: InputMaybe; + PersonalizationSchemaEnum?: InputMaybe; + PersonalizationSchemaId?: InputMaybe; + PrimaryMetric?: InputMaybe; + PrimaryMetricId?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + ScheduleFrequencyInMinutes?: InputMaybe; + Source?: InputMaybe; + SourceRecord?: InputMaybe; + SourceRecordId?: InputMaybe; + StartedDate?: InputMaybe; + State?: InputMaybe; + Status?: InputMaybe; + StoppedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + WinnerSelectionMode?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AbnExperiment_PrimaryMetric_Filters = { + EngagementSignalCmpndMetric?: InputMaybe; + EngagementSignalMetric?: InputMaybe; + Name?: InputMaybe; +}; + +export type AbnExperiment_SourceRecord_Filters = { + FlowRecordElement?: InputMaybe; + ManagedContent?: InputMaybe; + Name?: InputMaybe; +}; + +export type AccountBrand_Filter = { + Account?: InputMaybe; + AccountId?: InputMaybe; + City?: InputMaybe; + CompanyName?: InputMaybe; + Country?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Email?: InputMaybe; + GeocodeAccuracy?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Latitude?: InputMaybe; + LogoId?: InputMaybe; + LogoUrl?: InputMaybe; + Longitude?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Phone?: InputMaybe; + PostalCode?: InputMaybe; + State?: InputMaybe; + Street?: InputMaybe; + SystemModstamp?: InputMaybe; + Website?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AccountBrand_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type AccountHistory_Filter = { Account?: InputMaybe; AccountId?: InputMaybe; @@ -93,6 +246,8 @@ export type Account_Filter = { BillingPostalCode?: InputMaybe; BillingState?: InputMaybe; BillingStreet?: InputMaybe; + ChannelProgramLevelName?: InputMaybe; + ChannelProgramName?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -100,7 +255,9 @@ export type Account_Filter = { Fax?: InputMaybe; Id?: InputMaybe; Industry?: InputMaybe; + IsCustomerPortal?: InputMaybe; IsDeleted?: InputMaybe; + IsPartner?: InputMaybe; Jigsaw?: InputMaybe; JigsawCompanyId?: InputMaybe; LastActivityDate?: InputMaybe; @@ -147,6 +304,8 @@ export type Account_OrderBy = { BillingPostalCode?: InputMaybe; BillingState?: InputMaybe; BillingStreet?: InputMaybe; + ChannelProgramLevelName?: InputMaybe; + ChannelProgramName?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -154,7 +313,9 @@ export type Account_OrderBy = { Fax?: InputMaybe; Id?: InputMaybe; Industry?: InputMaybe; + IsCustomerPortal?: InputMaybe; IsDeleted?: InputMaybe; + IsPartner?: InputMaybe; Jigsaw?: InputMaybe; JigsawCompanyId?: InputMaybe; LastActivityDate?: InputMaybe; @@ -187,6 +348,165 @@ export type Account_OrderBy = { Website?: InputMaybe; }; +export type ActivationTargetHistory_Filter = { + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTargetPlatformHistory_Filter = { + ActivationTargetPlatformId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTargetSecureFtp_Filter = { + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + ChildDirectory?: InputMaybe; + Compression?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CustomFileName?: InputMaybe; + Delimiter?: InputMaybe; + FileDateTimeSuffix?: InputMaybe; + FileNameType?: InputMaybe; + Id?: InputMaybe; + IsCreateFolderWithInChildDir?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MaxFileSizeInBytes?: InputMaybe; + MaxRecordsPerFile?: InputMaybe; + Name?: InputMaybe; + PreDeterminedFileName?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTarget_DataConConfiguration_Filters = { + DataConnectorS3?: InputMaybe; + Name?: InputMaybe; +}; + +export type ActivationTarget_Filter = { + AudienceHistoryDmoId?: InputMaybe; + AudienceHistoryDmoName?: InputMaybe; + AudienceLatestDmoId?: InputMaybe; + AudienceLatestDmoName?: InputMaybe; + AuditDmoId?: InputMaybe; + AuditDmoName?: InputMaybe; + ConnectionType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataConConfiguration?: InputMaybe; + DataConConfigurationId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + ExportToDirectory?: InputMaybe; + ExportToEndpoint?: InputMaybe; + Id?: InputMaybe; + IsCommunicationCappingEnabled?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastPublishStatusDate?: InputMaybe; + LastPublishStatusErrorMessage?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastTargetStatusDateTime?: InputMaybe; + LastTargetStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + MasterLabel?: InputMaybe; + OutputFormat?: InputMaybe; + OwnedByOrg?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + PlatformName?: InputMaybe; + PlatformPrivacyType?: InputMaybe; + RunStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetStatus?: InputMaybe; + TargetType?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ActivationTrgtIntOrgAccessHistory_Filter = { + ActivationTrgtIntOrgAccessId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActvTgtPlatformFieldValueHistory_Filter = { + ActvTgtPlatformFieldValueId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type Agent__History_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -527,8 +847,6 @@ export type ApprovalSubmissionDetail_Filter = { LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - LastReferencedDate?: InputMaybe; - LastViewedDate?: InputMaybe; Name?: InputMaybe; SystemModstamp?: InputMaybe; and?: InputMaybe>>; @@ -567,8 +885,6 @@ export type ApprovalSubmission_Filter = { LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - LastReferencedDate?: InputMaybe; - LastViewedDate?: InputMaybe; Name?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; @@ -592,6 +908,7 @@ export type ApprovalSubmission_Owner_Filters = { export type ApprovalSubmission_RelatedRecord_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -601,14 +918,19 @@ export type ApprovalSubmission_RelatedRecord_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; CaseComment?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -624,16 +946,37 @@ export type ApprovalSubmission_RelatedRecord_Filters = { ContentVersion?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -644,6 +987,11 @@ export type ApprovalSubmission_RelatedRecord_Filters = { Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; @@ -652,6 +1000,10 @@ export type ApprovalSubmission_RelatedRecord_Filters = { OrderItem?: InputMaybe; OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -667,11 +1019,12 @@ export type ApprovalSubmission_RelatedRecord_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPersona?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; @@ -726,11 +1079,7 @@ export type ApprovalWorkItem_Filter = { LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - LastReferencedDate?: InputMaybe; - LastViewedDate?: InputMaybe; Name?: InputMaybe; - ParentWorkItem?: InputMaybe; - ParentWorkItemId?: InputMaybe; RelatedRecord?: InputMaybe; RelatedRecordId?: InputMaybe; RelatedRecordObjectName?: InputMaybe; @@ -746,6 +1095,7 @@ export type ApprovalWorkItem_Filter = { export type ApprovalWorkItem_RelatedRecord_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -755,14 +1105,19 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; CaseComment?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -778,16 +1133,37 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { ContentVersion?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -798,6 +1174,11 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; @@ -806,6 +1187,10 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { OrderItem?: InputMaybe; OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -821,11 +1206,12 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPersona?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; @@ -1001,83 +1387,150 @@ export type AssociatedLocation_Filter = { or?: InputMaybe>>; }; -export type Attachment_Filter = { - BodyLength?: InputMaybe; - ContentType?: InputMaybe; +export type AsyncOperationTracker_Filter = { + AsyncOperationNumber?: InputMaybe; + CorrelationIdentifier?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; - Description?: InputMaybe; + ExpiresAt?: InputMaybe; + FailedJobItems?: InputMaybe; + FinishedAt?: InputMaybe; Id?: InputMaybe; IsDeleted?: InputMaybe; - IsPrivate?: InputMaybe; + JobType?: InputMaybe; LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - Name?: InputMaybe; - Owner?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; OwnerId?: InputMaybe; - Parent?: InputMaybe; - ParentId?: InputMaybe; + ParentOperation?: InputMaybe; + ParentOperationId?: InputMaybe; + ReferenceEntity?: InputMaybe; + ReferenceEntityId?: InputMaybe; + Request?: InputMaybe; + Response?: InputMaybe; + SequenceNumber?: InputMaybe; + StartedAt?: InputMaybe; + Status?: InputMaybe; + StepName?: InputMaybe; + SubmittedAt?: InputMaybe; + SuccessfulJobItems?: InputMaybe; SystemModstamp?: InputMaybe; - and?: InputMaybe>>; - not?: InputMaybe; - or?: InputMaybe>>; + TotalJobItems?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; }; -export type Attachment_Owner_Filters = { +export type AsyncOperationTracker_Owner_Filters = { + Group?: InputMaybe; Name?: InputMaybe; User?: InputMaybe; }; -export type Attachment_Parent_Filters = { - Account?: InputMaybe; - Agent__c?: InputMaybe; - Application__c?: InputMaybe; - ApprovalSubmission?: InputMaybe; - ApprovalSubmissionDetail?: InputMaybe; - ApprovalWorkItem?: InputMaybe; - Asset?: InputMaybe; - Campaign?: InputMaybe; - Case?: InputMaybe; - CommSubscription?: InputMaybe; - CommSubscriptionChannelType?: InputMaybe; - CommSubscriptionConsent?: InputMaybe; - CommSubscriptionTiming?: InputMaybe; - Contact?: InputMaybe; - Contract?: InputMaybe; - DevopsEnvironment?: InputMaybe; - DevopsRequestInfo?: InputMaybe; - EmailMessage?: InputMaybe; - EmailTemplate?: InputMaybe; - EngagementChannelType?: InputMaybe; - Event?: InputMaybe; - Image?: InputMaybe; - KPI_Snapshot__c?: InputMaybe; - Lead?: InputMaybe; - Lease__c?: InputMaybe; - Location?: InputMaybe; - Maintenance_Request__c?: InputMaybe; - Maintenance_Worker__c?: InputMaybe; +export type AsyncOperationTracker_ReferenceEntity_Filters = { Name?: InputMaybe; - Notification__c?: InputMaybe; - Opportunity?: InputMaybe; Order?: InputMaybe; - Payment__c?: InputMaybe; Product2?: InputMaybe; - Property_Cost__c?: InputMaybe; - Property_Feature__c?: InputMaybe; - Property_Image__c?: InputMaybe; - Property_Listing__c?: InputMaybe; - Property_Management_Company__c?: InputMaybe; - Property_Owner__c?: InputMaybe; - Property_Sale__c?: InputMaybe; - Property__c?: InputMaybe; - SocialPost?: InputMaybe; - Task?: InputMaybe; - Tenant__c?: InputMaybe; - WorkOrder?: InputMaybe; - WorkOrderLineItem?: InputMaybe; +}; + +export type AttribModelStageMetric_Filter = { + AggregateFunction?: InputMaybe; + Alias?: InputMaybe; + AttribModelStage?: InputMaybe; + AttribModelStageId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignalMetric?: InputMaybe; + EngagementSignalMetricId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AttribModelStage_Filter = { + AttribModel?: InputMaybe; + AttribModelId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalEnum?: InputMaybe; + EngagementSignalId?: InputMaybe; + EngagementSignalType?: InputMaybe; + Id?: InputMaybe; + IsContentMatchRequired?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Sequence?: InputMaybe; + StageUnionGroupName?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AttribModel_Filter = { + AttribModelStatus?: InputMaybe; + AttribRecordOutputObjectApiName?: InputMaybe; + AttribRecordOutputObjectId?: InputMaybe; + AttributionModelType?: InputMaybe; + AttributionType?: InputMaybe; + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DailyContentOutputObjectId?: InputMaybe; + DailyOutputObjectId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + ErrorCode?: InputMaybe; + GlobalAttributionWindowDays?: InputMaybe; + Id?: InputMaybe; + IdentityResolutionMode?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + IsZeroDayLoadRequired?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefresh?: InputMaybe; + LastSuccessfulRefresh?: InputMaybe; + LastViewedDate?: InputMaybe; + LatestRefreshedStatus?: InputMaybe; + ModelContext?: InputMaybe; + ModelRevision?: InputMaybe; + ModelVersion?: InputMaybe; + Name?: InputMaybe; + Partner?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + ProfileLinkObjectId?: InputMaybe; + ScheduledFrequencyMins?: InputMaybe; + SyncStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + Tags?: InputMaybe; + UnifiedProfileObjectId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; }; export type AuthorizationFormConsentHistory_Filter = { @@ -1332,6 +1785,62 @@ export type BooleanOperators = { ne?: InputMaybe; }; +export type BriefPlanStep_Filter = { + Brief?: InputMaybe; + BriefId?: InputMaybe; + Channel?: InputMaybe; + Content?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + StepNumber?: InputMaybe; + StepType?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetingRule?: InputMaybe; + WaitNumber?: InputMaybe; + WaitUnit?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type Brief_Filter = { + AdditionalNotes?: InputMaybe; + AgentGuardrails?: InputMaybe; + Brand?: InputMaybe; + BrandId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsConversational?: InputMaybe; + IsDeleted?: InputMaybe; + KeyMessage?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PlanName?: InputMaybe; + PrimaryCtas?: InputMaybe; + PrimaryGoal?: InputMaybe; + PrimaryKpi?: InputMaybe; + Priority?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetAudience?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type BusinessBrand_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -1394,6 +1903,80 @@ export type BusinessHours_Filter = { or?: InputMaybe>>; }; +export type CalcAffinityEngmtSgnl_Filter = { + CalculatedAffinity?: InputMaybe; + CalculatedAffinityId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalId?: InputMaybe; + EngagementSignalImpact?: InputMaybe; + EngagementSignalStrength?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type CalculatedAffinityField_Filter = { + CalculatedAffinity?: InputMaybe; + CalculatedAffinityId?: InputMaybe; + CalculatedInsight?: InputMaybe; + CalculatedInsightId?: InputMaybe; + ContentObjectFieldId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type CalculatedAffinity_Filter = { + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDecay?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + LookBackWindow?: InputMaybe; + Name?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + ScoringModel?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type CampaignHistory_Filter = { Campaign?: InputMaybe; CampaignId?: InputMaybe; @@ -1491,7 +2074,10 @@ export type Campaign_Filter = { ActualCost?: InputMaybe; AmountAllOpportunities?: InputMaybe; AmountWonOpportunities?: InputMaybe; + Brief?: InputMaybe; + BriefId?: InputMaybe; BudgetedCost?: InputMaybe; + CampaignImageId?: InputMaybe; CampaignMemberRecordType?: InputMaybe; CampaignMemberRecordTypeId?: InputMaybe; CreatedBy?: InputMaybe; @@ -1644,6 +2230,154 @@ export type Case_Owner_Filters = { User?: InputMaybe; }; +export type ChannelProgramHistory_Filter = { + ChannelProgram?: InputMaybe; + ChannelProgramId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramLevelHistory_Filter = { + ChannelProgramLevel?: InputMaybe; + ChannelProgramLevelId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramLevel_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Program?: InputMaybe; + ProgramId?: InputMaybe; + Rank?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramLevel_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ChannelProgramMemberHistory_Filter = { + ChannelProgramMember?: InputMaybe; + ChannelProgramMemberId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramMember_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Level?: InputMaybe; + LevelId?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Partner?: InputMaybe; + PartnerId?: InputMaybe; + Program?: InputMaybe; + ProgramId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramMember_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ChannelProgram_Filter = { + Category?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsActive?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgram_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type CommSubscriptionChannelTypeHistory_Filter = { CommSubscriptionChannelType?: InputMaybe; CommSubscriptionChannelTypeId?: InputMaybe; @@ -1680,6 +2414,10 @@ export type CommSubscriptionChannelType_Filter = { LastModifiedDate?: InputMaybe; LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelId?: InputMaybe; + MessagingChannelUsage?: InputMaybe; + MessagingChannelUsageId?: InputMaybe; Name?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; @@ -1842,6 +2580,7 @@ export type CommSubscriptionTiming_Filter = { }; export type CommSubscription_Filter = { + BusinessUnitId?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -2487,6 +3226,8 @@ export type ContentDocumentLink_Filter = { export type ContentDocumentLink_LinkedEntity_Filters = { Account?: InputMaybe; + AccountBrand?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; ApprovalSubmission?: InputMaybe; @@ -2495,8 +3236,12 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AuthorizationFormText?: InputMaybe; + Brief?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -2504,13 +3249,34 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Contact?: InputMaybe; ContentWorkspace?: InputMaybe; Contract?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSpace?: InputMaybe; + DataStream?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; + EmailContent?: InputMaybe; EmailMessage?: InputMaybe; EmailTemplate?: InputMaybe; EngagementChannelType?: InputMaybe; + EngagementSignal?: InputMaybe; EnhancedLetterhead?: InputMaybe; Event?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -2519,12 +3285,22 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Location?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; + Network?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; OrderItem?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; @@ -2774,6 +3550,7 @@ export type ContentVersion_Filter = { MalwareScanDate?: InputMaybe; MalwareScanStatus?: InputMaybe; NegativeRatingCount?: InputMaybe; + NetworkId?: InputMaybe; Origin?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; @@ -2797,6 +3574,8 @@ export type ContentVersion_Filter = { export type ContentVersion_FirstPublishLocation_Filters = { Account?: InputMaybe; + AccountBrand?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; ApprovalSubmission?: InputMaybe; @@ -2805,8 +3584,12 @@ export type ContentVersion_FirstPublishLocation_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AuthorizationFormText?: InputMaybe; + Brief?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -2814,13 +3597,34 @@ export type ContentVersion_FirstPublishLocation_Filters = { Contact?: InputMaybe; ContentWorkspace?: InputMaybe; Contract?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSpace?: InputMaybe; + DataStream?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; + EmailContent?: InputMaybe; EmailMessage?: InputMaybe; EmailTemplate?: InputMaybe; EngagementChannelType?: InputMaybe; + EngagementSignal?: InputMaybe; EnhancedLetterhead?: InputMaybe; Event?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -2829,12 +3633,22 @@ export type ContentVersion_FirstPublishLocation_Filters = { Location?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; + Network?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; OrderItem?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; @@ -3079,6 +3893,1013 @@ export type Customer_Owner_Filters = { User?: InputMaybe; }; +export type DataActionHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataAction?: InputMaybe; + DataActionId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionJobSummaryHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionJobSummaryId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionJobSummary_DataActionDefinition_Filters = { + DataAction?: InputMaybe; + Name?: InputMaybe; +}; + +export type DataActionJobSummary_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataActionDefinition?: InputMaybe; + DataActionDefinitionId?: InputMaybe; + EndExecutionTime?: InputMaybe; + ExecutionDetails?: InputMaybe; + ExternalRequestName?: InputMaybe; + FailedRecordCount?: InputMaybe; + FailedRecords?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + JobStatus?: InputMaybe; + JobType?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + ProcessName?: InputMaybe; + ProcessedRecordCount?: InputMaybe; + PublishDateTime?: InputMaybe; + SkippedRecords?: InputMaybe; + StartExecutionTime?: InputMaybe; + SystemModstamp?: InputMaybe; + UpdatedRecordCount?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionJobSummary_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataActionTargetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataActionTarget?: InputMaybe; + DataActionTargetId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionTarget_Filter = { + ApiContract?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastSigningKeyDateTime?: InputMaybe; + LastTargetStatusDateTime?: InputMaybe; + LastTargetStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedBy?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetApiName?: InputMaybe; + TargetDefinitionId?: InputMaybe; + TargetEndpoint?: InputMaybe; + TargetStatus?: InputMaybe; + TargetType?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataAction_Filter = { + ActionApiName?: InputMaybe; + ActionDefinitionId?: InputMaybe; + ActionStatus?: InputMaybe; + AffiliationDmoDeveloperName?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastActionStatusDateTime?: InputMaybe; + LastActionStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedBy?: InputMaybe; + Name?: InputMaybe; + ShouldProcessDayZero?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommCapActvTargetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommCapActvTargetId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommCapActvTarget_Filter = { + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommCapDimId?: InputMaybe; + DataCommCapDimValueId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommCapActvTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataCommunicationCapHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataCommunicationCapId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommunicationCap_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommunicationCapDefId?: InputMaybe; + DataCommunicationCapStatus?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastStatusDateTime?: InputMaybe; + LastStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommunicationCap_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataConnectorS3_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Delimiter?: InputMaybe; + DeveloperName?: InputMaybe; + FileNameWildcard?: InputMaybe; + FileType?: InputMaybe; + Id?: InputMaybe; + ImportFromDirectory?: InputMaybe; + IsDeleted?: InputMaybe; + Language?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MasterLabel?: InputMaybe; + NamespacePrefix?: InputMaybe; + S3BucketName?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataContentLensSourceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataContentLensSourceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataContentLensSource_Filter = { + ContentVersion?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DocumentVersion?: InputMaybe; + FileKey?: InputMaybe; + FileName?: InputMaybe; + FullyQualifiedFilePath?: InputMaybe; + Id?: InputMaybe; + IdentifierField?: InputMaybe; + IndexStatus?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MimeType?: InputMaybe; + Name?: InputMaybe; + RecordIds?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataGraph_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DaoDefinitionId?: InputMaybe; + DaoFieldsCount?: InputMaybe; + DataGraphApiName?: InputMaybe; + DataGraphType?: InputMaybe; + DataSourceObjCount?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + FullRefreshConfig?: InputMaybe; + Id?: InputMaybe; + IncrementalRefreshConfig?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastViewedDate?: InputMaybe; + Levels?: InputMaybe; + Name?: InputMaybe; + OwnedBy?: InputMaybe; + PrimaryDmo?: InputMaybe; + RecordCount?: InputMaybe; + RolloutVersion?: InputMaybe; + Schedule?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + Version?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataHarmonizedModelObjRef_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCloudContentIdentifier?: InputMaybe; + FileType?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + ObjectDeveloperName?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKitDeploymentLog_Filter = { + BundleName?: InputMaybe; + ComponentName?: InputMaybe; + ComponentTemplateId?: InputMaybe; + ComponentType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataKitName?: InputMaybe; + DataPackageKitDefinition?: InputMaybe; + DataSpaceName?: InputMaybe; + DeployJob?: InputMaybe; + DeploymentAction?: InputMaybe; + DeploymentError?: InputMaybe; + DeploymentStatus?: InputMaybe; + FileBasedComponentTemplate?: InputMaybe; + FlowInterviewIdentifier?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + JobIdentifier?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + PublisherOrgComponent?: InputMaybe; + PublisherOrgComponentId?: InputMaybe; + SubscriberOrgComponent?: InputMaybe; + SubscriberOrgComponentId?: InputMaybe; + SystemModstamp?: InputMaybe; + TemplateVersion?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKitDeploymentLog_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataKitDeploymentLog_PublisherOrgComponent_Filters = { + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + Name?: InputMaybe; +}; + +export type DataKitDeploymentLog_SubscriberOrgComponent_Filters = { + ActivationTarget?: InputMaybe; + DataAction?: InputMaybe; + DataActionTarget?: InputMaybe; + DataGraph?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataStream?: InputMaybe; + EngagementSignal?: InputMaybe; + ExtDataShare?: InputMaybe; + IdentityResolution?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + Name?: InputMaybe; + PersnlBatchDecision?: InputMaybe; + PersonalizationObjective?: InputMaybe; + PersonalizationPoint?: InputMaybe; + PersonalizationRecommender?: InputMaybe; + PersonalizationSchema?: InputMaybe; +}; + +export type DataKnowledgeSpaceSession_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastActiveTime?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + SessionKey?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSpace_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSpace_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataKnowledgeSpcJobRun_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + ErrorMessage?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + JobIdentifier?: InputMaybe; + JobStatus?: InputMaybe; + JobType?: InputMaybe; + KnowledgeSpcObjRef?: InputMaybe; + KnowledgeSpcObjRefId?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSpcJobRun_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataKnowledgeSrcFileRef_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataKnowledgeLibraryId?: InputMaybe; + DataKnowledgeSourceId?: InputMaybe; + FileName?: InputMaybe; + FilePath?: InputMaybe; + FileType?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SourceFileStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSrcFileRef_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataLakeObjectInstanceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLakeObjectInstanceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLakeObjectInstance_Filter = { + AccelerationEnabled?: InputMaybe; + AccelerationSchedule?: InputMaybe; + Billable?: InputMaybe; + Category?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLakeObjectNamespacePrefix?: InputMaybe; + DataLakeObjectRef?: InputMaybe; + DataLakeObjectStatus?: InputMaybe; + DeletionRecordsDataLakeObject?: InputMaybe; + Description?: InputMaybe; + ExternalName?: InputMaybe; + ExternalObjectErrorCode?: InputMaybe; + ExternalObjectErrorStatus?: InputMaybe; + HydrationStatus?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastSyncedFingerprint?: InputMaybe; + LastViewedDate?: InputMaybe; + MktDataLakeObjectDeveloperName?: InputMaybe; + MktDataLakeObjectId?: InputMaybe; + MktDataLakeObjectLabel?: InputMaybe; + Name?: InputMaybe; + ProblemRecordsDataLakeObject?: InputMaybe; + Storage?: InputMaybe; + SyncStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + TotalNumberOfFields?: InputMaybe; + TotalRecords?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLineageNodeDefSyncLogHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataLineageNodeDefSyncLogId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLineageNodeDefSyncLog_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DevName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastFailureReason?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + ObjectType?: InputMaybe; + OperationTime?: InputMaybe; + OperationType?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Payload?: InputMaybe; + RecordIdentifier?: InputMaybe; + RetryCount?: InputMaybe; + SyncStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLineageNodeDefSyncLog_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataObjSecondaryIndexHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataObjSecondaryIndexId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataObjSecondaryIndex_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IndexedFields?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshTime?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + RuntimeStatus?: InputMaybe; + SecondaryIndexDeveloperName?: InputMaybe; + SourceObjectName?: InputMaybe; + SourceObjectType?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspaceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspaceTab_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Entity?: InputMaybe; + EntityType?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Query?: InputMaybe; + QueryWorkspace?: InputMaybe; + QueryWorkspaceId?: InputMaybe; + SystemModstamp?: InputMaybe; + TabOption?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspace_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LandingTab?: InputMaybe; + LandingTabId?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspace_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataQuickAttributeHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataQuickAttributeId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQuickAttribute_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataQuickAttributeType?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + OwnedBy?: InputMaybe; + PathSignature?: InputMaybe; + PrimaryObjectId?: InputMaybe; + SystemModstamp?: InputMaybe; + Tags?: InputMaybe; + TargetFieldApiName?: InputMaybe; + TargetFieldId?: InputMaybe; + TargetObjectApiName?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSemanticSearchHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSemanticSearchId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSemanticSearch_Filter = { + AttachmentDmo?: InputMaybe; + ChunkDmo?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CreationType?: InputMaybe; + DataSemanticSearchDefId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Id?: InputMaybe; + IndexRefreshedOn?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PrimaryDmo?: InputMaybe; + RuntimeStatus?: InputMaybe; + SearchType?: InputMaybe; + SemanticSearchApiName?: InputMaybe; + SharingStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + VectorDmo?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSpaceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSpace_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpaceApiName?: InputMaybe; + DataSpaceDefinitionId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataStreamHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataStream?: InputMaybe; + DataStreamId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataStream_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataStreamDefinitionId?: InputMaybe; + DataStreamStatus?: InputMaybe; + DeletionRecordsDataLakeObject?: InputMaybe; + Description?: InputMaybe; + ExternalRecordIdentifier?: InputMaybe; + ExternalStreamErrorCode?: InputMaybe; + ExtractionTime?: InputMaybe; + FullRefreshIntervalDays?: InputMaybe; + Id?: InputMaybe; + ImportRunStatus?: InputMaybe; + IsDeleted?: InputMaybe; + IsNewFieldsAvailable?: InputMaybe; + IsRefreshDeliveryHourAutomatic?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastNumberOfRowsAddedCount?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + ProblemRecordsDataLakeObject?: InputMaybe; + RefreshDayOfMonth?: InputMaybe; + RefreshDayOfWeek?: InputMaybe; + RefreshFrequency?: InputMaybe; + RefreshHours?: InputMaybe; + RefreshMode?: InputMaybe; + StreamType?: InputMaybe; + SystemModstamp?: InputMaybe; + TotalNumberOfRowsAdded?: InputMaybe; + TotalRowsProcessed?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export enum DataType { Address = "ADDRESS", Anytype = "ANYTYPE", @@ -3333,6 +5154,58 @@ export type DateTimeOperators = { nin?: InputMaybe>>; }; +export type DelegatedAccountHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + DelegatedAccount?: InputMaybe; + DelegatedAccountId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DelegatedAccount_Filter = { + AccessManageUsers?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedBy?: InputMaybe; + ManagedById?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Parent?: InputMaybe; + ParentId?: InputMaybe; + SystemModstamp?: InputMaybe; + Target?: InputMaybe; + TargetId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DelegatedAccount_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type DeleteEvent_Filter = { DeletedBy?: InputMaybe; DeletedById?: InputMaybe; @@ -3347,6 +5220,63 @@ export type DeleteEvent_Filter = { or?: InputMaybe>>; }; +export type DevopsActivityLogHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + DevopsActivityLog?: InputMaybe; + DevopsActivityLogId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DevopsActivityLog_Filter = { + Activity?: InputMaybe; + ActivityDate?: InputMaybe; + ActivityType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + DevopsRequestInfo?: InputMaybe; + DevopsRequestInfoId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + ParentActivity?: InputMaybe; + ParentActivityId?: InputMaybe; + PerformedBy?: InputMaybe; + PerformedById?: InputMaybe; + RequestInfoErrorDetails?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DevopsActivityLog_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type DevopsEnvironmentHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -3444,8 +5374,6 @@ export type DevopsRequestInfo_Filter = { OperationType?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; - ParentRequestInfo?: InputMaybe; - ParentRequestInfoId?: InputMaybe; RequestCompletionDate?: InputMaybe; RequestToken?: InputMaybe; Status?: InputMaybe; @@ -3461,6 +5389,11 @@ export type DevopsRequestInfo_Owner_Filters = { User?: InputMaybe; }; +export type DistanceInput = { + latitude: Scalars["Latitude"]["input"]; + longitude: Scalars["Longitude"]["input"]; +}; + export type DoubleOperators = { eq?: InputMaybe; gt?: InputMaybe; @@ -3496,7 +5429,6 @@ export type DuplicateRecordItem_Record_Filters = { Account?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; - Case?: InputMaybe; Contact?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -3538,6 +5470,50 @@ export type DuplicateRecordSet_Filter = { or?: InputMaybe>>; }; +export type EmailContent_Filter = { + ClickThroughRate?: InputMaybe; + ClickToOpenRatio?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DeliveryRate?: InputMaybe; + Description?: InputMaybe; + HtmlBody?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedContent?: InputMaybe; + ManagedContentId?: InputMaybe; + Name?: InputMaybe; + OpenRate?: InputMaybe; + OptOutRate?: InputMaybe; + PageId?: InputMaybe; + SpamComplaintRate?: InputMaybe; + Subject?: InputMaybe; + SystemModstamp?: InputMaybe; + Template?: InputMaybe; + TemplateId?: InputMaybe; + TextBody?: InputMaybe; + TotalDelivered?: InputMaybe; + TotalHardBounced?: InputMaybe; + TotalOpens?: InputMaybe; + TotalSent?: InputMaybe; + TotalSoftBounced?: InputMaybe; + TotalSpamComplaints?: InputMaybe; + TotalTrackedLinkClicks?: InputMaybe; + UniqueClickThroughRate?: InputMaybe; + UniqueOpens?: InputMaybe; + UniqueOptOuts?: InputMaybe; + UniqueTrackedLinkClicks?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type EmailMessageRelation_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -3628,9 +5604,14 @@ export type EmailMessage_RelatedTo_Filters = { AssetRelationship?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscriptionConsent?: InputMaybe; ContactRequest?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; Image?: InputMaybe; @@ -3642,6 +5623,10 @@ export type EmailMessage_RelatedTo_Filters = { Name?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -3684,6 +5669,7 @@ export type EmailTemplate_Filter = { Folder?: InputMaybe; FolderId?: InputMaybe; FolderName?: InputMaybe; + HasSalesforceFiles?: InputMaybe; HtmlValue?: InputMaybe; Id?: InputMaybe; IsActive?: InputMaybe; @@ -3762,6 +5748,110 @@ export type EngagementChannelType_Owner_Filters = { User?: InputMaybe; }; +export type EngagementSignalCmpndMetric_Filter = { + CompoundMetricFormula?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DenomEngmtSignalMetric?: InputMaybe; + DenomEngmtSignalMetricId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + NumerEngmtSignalMetric?: InputMaybe; + NumerEngmtSignalMetricId?: InputMaybe; + Operator?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type EngagementSignalCmpndMetric_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type EngagementSignalHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type EngagementSignalMetric_Filter = { + AggregateFunction?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalId?: InputMaybe; + FieldId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type EngagementSignal_Filter = { + CatalogIdFieldId?: InputMaybe; + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + TimestampFieldId?: InputMaybe; + UniqueIdentifierFieldId?: InputMaybe; + UserIdFieldId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type EnhancedLetterhead_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -3920,9 +6010,14 @@ export type Event_What_Filters = { AssetRelationship?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscriptionConsent?: InputMaybe; ContactRequest?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; Image?: InputMaybe; @@ -3934,6 +6029,10 @@ export type Event_What_Filters = { Name?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -3974,6 +6073,104 @@ export type ExpressionSetView_Filter = { or?: InputMaybe>>; }; +export type ExtDataShareHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ExtDataShareTargetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + ExtDataShareTargetId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ExtDataShareTarget_Filter = { + ConnectionType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataShareTargetDefinitionId?: InputMaybe; + DataShareTargetStatus?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ExtDataShareTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ExtDataShare_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataShareConsentFormStatus?: InputMaybe; + DataShareDefinitionId?: InputMaybe; + DataShareStatus?: InputMaybe; + DataShareType?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Id?: InputMaybe; + InboundDataShareName?: InputMaybe; + InboundDataShareOrgIdentifier?: InputMaybe; + IsDeleted?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + ObjectCount?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type FeedItem_Filter = { BestCommentId?: InputMaybe; Body?: InputMaybe; @@ -3996,6 +6193,7 @@ export type FeedItem_Filter = { LastModifiedDate?: InputMaybe; LikeCount?: InputMaybe; LinkUrl?: InputMaybe; + NetworkScope?: InputMaybe; Parent?: InputMaybe; ParentId?: InputMaybe; RelatedRecordId?: InputMaybe; @@ -4004,6 +6202,7 @@ export type FeedItem_Filter = { SystemModstamp?: InputMaybe; Title?: InputMaybe; Type?: InputMaybe; + Visibility?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; or?: InputMaybe>>; @@ -4011,6 +6210,7 @@ export type FeedItem_Filter = { export type FeedItem_Parent_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; ApprovalSubmission?: InputMaybe; @@ -4019,8 +6219,12 @@ export type FeedItem_Parent_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AuthorizationFormText?: InputMaybe; + Brief?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -4028,11 +6232,32 @@ export type FeedItem_Parent_Filters = { Contact?: InputMaybe; ContentDocument?: InputMaybe; Contract?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSpace?: InputMaybe; + DataStream?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; + EmailContent?: InputMaybe; EngagementChannelType?: InputMaybe; + EngagementSignal?: InputMaybe; EnhancedLetterhead?: InputMaybe; Event?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -4040,11 +6265,20 @@ export type FeedItem_Parent_Filters = { Location?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; OrderItem?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; @@ -4340,8 +6574,6 @@ export type FlowOrchestrationWorkItem_Filter = { OrchestrationName?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; - ParentWorkItem?: InputMaybe; - ParentWorkItemId?: InputMaybe; RelatedRecord?: InputMaybe; RelatedRecordId?: InputMaybe; ScreenFlow?: InputMaybe; @@ -4363,6 +6595,7 @@ export type FlowOrchestrationWorkItem_Owner_Filters = { export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -4372,14 +6605,19 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; CaseComment?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -4395,16 +6633,37 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { ContentVersion?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -4415,6 +6674,11 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; @@ -4423,6 +6687,10 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { OrderItem?: InputMaybe; OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -4438,11 +6706,12 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPersona?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; @@ -4504,6 +6773,11 @@ export type FlowRecordElementOccurrence_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Entries?: InputMaybe; + Errors?: InputMaybe; + Exits?: InputMaybe; FlowRecord?: InputMaybe; FlowRecordElement?: InputMaybe; FlowRecordElementId?: InputMaybe; @@ -4518,7 +6792,12 @@ export type FlowRecordElementOccurrence_Filter = { LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; Name?: InputMaybe; + Paused?: InputMaybe; + Retrying?: InputMaybe; + Stopped?: InputMaybe; SystemModstamp?: InputMaybe; + TotalDuration?: InputMaybe; + Waiting?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; or?: InputMaybe>>; @@ -4528,6 +6807,8 @@ export type FlowRecordElement_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; ElementName?: InputMaybe; FlowRecordVersion?: InputMaybe; FlowRecordVersionId?: InputMaybe; @@ -4569,6 +6850,8 @@ export type FlowRecordVersionOccurrence_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; Enqueued?: InputMaybe; Entries?: InputMaybe; ErrorDetail?: InputMaybe; @@ -4588,6 +6871,7 @@ export type FlowRecordVersionOccurrence_Filter = { Name?: InputMaybe; ProgressStatus?: InputMaybe; ScheduledDate?: InputMaybe; + Stopped?: InputMaybe; SystemModstamp?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; @@ -4595,7 +6879,6 @@ export type FlowRecordVersionOccurrence_Filter = { }; export type FlowRecordVersion_Filter = { - AccessType?: InputMaybe; ActivatedBy?: InputMaybe; ActivatedById?: InputMaybe; ActivatedDate?: InputMaybe; @@ -4606,7 +6889,12 @@ export type FlowRecordVersion_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; Description?: InputMaybe; + Entries?: InputMaybe; + Errors?: InputMaybe; + Exits?: InputMaybe; FlowRecord?: InputMaybe; FlowRecordId?: InputMaybe; FlowType?: InputMaybe; @@ -4653,6 +6941,8 @@ export type FlowRecord_AssociatedRecord_Filters = { }; export type FlowRecord_Filter = { + Activation?: InputMaybe; + ActivationId?: InputMaybe; ActiveVersion?: InputMaybe; ActiveVersionId?: InputMaybe; ApiName?: InputMaybe; @@ -4665,9 +6955,9 @@ export type FlowRecord_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; Description?: InputMaybe; - ElementEntries?: InputMaybe; - ElementErrors?: InputMaybe; ErrorCode?: InputMaybe; ErrorDetails?: InputMaybe; FlowCategory?: InputMaybe; @@ -4675,7 +6965,6 @@ export type FlowRecord_Filter = { FlowLabel?: InputMaybe; FlowSubcategory?: InputMaybe; FlowType?: InputMaybe; - Health?: InputMaybe; Id?: InputMaybe; InstalledPackageName?: InputMaybe; IsCitizenEnabled?: InputMaybe; @@ -4688,8 +6977,6 @@ export type FlowRecord_Filter = { LastModifiedDate?: InputMaybe; LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; - List?: InputMaybe; - ListId?: InputMaybe; LogsEnabledFlowVersion?: InputMaybe; ManageableState?: InputMaybe; Name?: InputMaybe; @@ -4702,6 +6989,8 @@ export type FlowRecord_Filter = { OwnerId?: InputMaybe; ProgressStatus?: InputMaybe; ScheduledStartDate?: InputMaybe; + Segment?: InputMaybe; + SegmentId?: InputMaybe; SourceTemplate?: InputMaybe; SourceTemplateId?: InputMaybe; StartSource?: InputMaybe; @@ -4850,6 +7139,18 @@ export type ForecastingType_Filter = { or?: InputMaybe>>; }; +export type GeolocationInput = { + latitude: Scalars["Latitude"]["input"]; + longitude: Scalars["Longitude"]["input"]; + radius: Scalars["Float"]["input"]; + unit: Unit; +}; + +export type GeolocationOperators = { + gt?: InputMaybe; + lt?: InputMaybe; +}; + export type GroupMember_Filter = { Group?: InputMaybe; GroupId?: InputMaybe; @@ -5004,6 +7305,68 @@ export type IdOperators = { ninq?: InputMaybe; }; +export type IdentityResolutionHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IdentityResolution?: InputMaybe; + IdentityResolutionId?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type IdentityResolution_Filter = { + ConsolidationRate?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + ErrorCode?: InputMaybe; + ErrorMessage?: InputMaybe; + Id?: InputMaybe; + IdentityResolutionDefId?: InputMaybe; + IsCaseSensitive?: InputMaybe; + IsDeleted?: InputMaybe; + IsLimitedToSingleHousehold?: InputMaybe; + IsScheduled?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastRunStatusDateTime?: InputMaybe; + LastSuccessfulRunDateTime?: InputMaybe; + LastViewedDate?: InputMaybe; + MatchedCount?: InputMaybe; + Name?: InputMaybe; + RootEntityLabel?: InputMaybe; + SecondaryEntityLabel?: InputMaybe; + SourceCount?: InputMaybe; + SourceIr?: InputMaybe; + SourceIrId?: InputMaybe; + Status?: InputMaybe; + StatusDetails?: InputMaybe; + Suffix?: InputMaybe; + SystemModstamp?: InputMaybe; + TotalAnonymousRecords?: InputMaybe; + TotalNonAnonymousRecords?: InputMaybe; + UnifiedCount?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type ImageHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -5059,6 +7422,31 @@ export type Image_Owner_Filters = { User?: InputMaybe; }; +export type IndividualGdprState__Dlm_Filter = { + CreatedBy__c?: InputMaybe; + CreatedDate__c?: InputMaybe; + DataSourceObject__c?: InputMaybe; + DataSource__c?: InputMaybe; + HasOptedOutProcessing__c?: InputMaybe; + Id?: InputMaybe; + Id__c?: InputMaybe; + IndividualId__c?: InputMaybe; + LastModifiedBy__c?: InputMaybe; + LastModifiedDate__c?: InputMaybe; + OptOutProcessRequestCompletionDate__c?: InputMaybe; + OptOutProcessRequestDate__c?: InputMaybe; + SendIndividualDataRequestCompletionDate__c?: InputMaybe; + SendIndividualDataRequestDate__c?: InputMaybe; + SendIndividualData__c?: InputMaybe; + ShouldForgetRequestCompletionDate__c?: InputMaybe; + ShouldForgetRequestDate__c?: InputMaybe; + ShouldForget__c?: InputMaybe; + TenantId__c?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type IndividualHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -5163,6 +7551,62 @@ export type Individual_OrderBy = { Website?: InputMaybe; }; +export type InsightsExternalDataPart_Filter = { + CompressedDataLength?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLength?: InputMaybe; + Id?: InputMaybe; + InsightsExternalData?: InputMaybe; + InsightsExternalDataId?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + PartNumber?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type InsightsExternalData_Filter = { + Action?: InputMaybe; + CompressedMetadataLength?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Dataflow?: InputMaybe; + Description?: InputMaybe; + EdgemartAlias?: InputMaybe; + EdgemartContainer?: InputMaybe; + EdgemartLabel?: InputMaybe; + FileName?: InputMaybe; + Format?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsDependentOnLastUpload?: InputMaybe; + IsIndependentParts?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LicenseType?: InputMaybe; + MetaDataLength?: InputMaybe; + Mode?: InputMaybe; + NotificationEmail?: InputMaybe; + NotificationSent?: InputMaybe; + Operation?: InputMaybe; + Status?: InputMaybe; + StatusMessage?: InputMaybe; + SubmittedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + Target?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type IntegerOperators = { eq?: InputMaybe; gt?: InputMaybe; @@ -5175,9 +7619,19 @@ export type IntegerOperators = { }; export type JoinInput = { + AbnExperiment?: InputMaybe; + AbnExperimentCohort?: InputMaybe; + AbnExperimentEngmtSgnlMtrc?: InputMaybe; Account?: InputMaybe; + AccountBrand?: InputMaybe; AccountHistory?: InputMaybe; AccountPartner?: InputMaybe; + ActivationTarget?: InputMaybe; + ActivationTargetHistory?: InputMaybe; + ActivationTargetPlatformHistory?: InputMaybe; + ActivationTargetSecureFTP?: InputMaybe; + ActivationTrgtIntOrgAccessHistory?: InputMaybe; + ActvTgtPlatformFieldValueHistory?: InputMaybe; Agent__History?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; @@ -5198,7 +7652,10 @@ export type JoinInput = { AssetRelationshipHistory?: InputMaybe; AssociatedLocation?: InputMaybe; AssociatedLocationHistory?: InputMaybe; - Attachment?: InputMaybe; + AsyncOperationTracker?: InputMaybe; + AttribModel?: InputMaybe; + AttribModelStage?: InputMaybe; + AttribModelStageMetric?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormConsentHistory?: InputMaybe; @@ -5208,8 +7665,13 @@ export type JoinInput = { AuthorizationFormText?: InputMaybe; AuthorizationFormTextHistory?: InputMaybe; BackgroundOperation?: InputMaybe; + Brief?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; BusinessHours?: InputMaybe; + CalcAffinityEngmtSgnl?: InputMaybe; + CalculatedAffinity?: InputMaybe; + CalculatedAffinityField?: InputMaybe; Campaign?: InputMaybe; CampaignHistory?: InputMaybe; CampaignMember?: InputMaybe; @@ -5218,6 +7680,12 @@ export type JoinInput = { CaseComment?: InputMaybe; CaseContactRole?: InputMaybe; CaseHistory?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramHistory?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramLevelHistory?: InputMaybe; + ChannelProgramMember?: InputMaybe; + ChannelProgramMemberHistory?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionChannelTypeHistory?: InputMaybe; @@ -5258,26 +7726,76 @@ export type JoinInput = { CspTrustedSite?: InputMaybe; CustomPermission?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionHistory?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionJobSummaryHistory?: InputMaybe; + DataActionTarget?: InputMaybe; + DataActionTargetHistory?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommCapActvTargetHistory?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataCommunicationCapHistory?: InputMaybe; + DataConnectorS3?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataContentLensSourceHistory?: InputMaybe; + DataGraph?: InputMaybe; + DataHarmonizedModelObjRef?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpaceSession?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLakeObjectInstanceHistory?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataLineageNodeDefSyncLogHistory?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataObjSecondaryIndexHistory?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceHistory?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataQuickAttributeHistory?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSemanticSearchHistory?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceHistory?: InputMaybe; + DataStream?: InputMaybe; + DataStreamHistory?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUseLegalBasisHistory?: InputMaybe; DataUsePurpose?: InputMaybe; DataUsePurposeHistory?: InputMaybe; + DelegatedAccount?: InputMaybe; + DelegatedAccountHistory?: InputMaybe; DeleteEvent?: InputMaybe; + DevopsActivityLog?: InputMaybe; + DevopsActivityLogHistory?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsEnvironmentHistory?: InputMaybe; DevopsRequestInfo?: InputMaybe; DevopsRequestInfoHistory?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; + EmailContent?: InputMaybe; EmailMessage?: InputMaybe; EmailMessageRelation?: InputMaybe; EmailTemplate?: InputMaybe; EngagementChannelType?: InputMaybe; EngagementChannelTypeHistory?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalCmpndMetric?: InputMaybe; + EngagementSignalHistory?: InputMaybe; + EngagementSignalMetric?: InputMaybe; EnhancedLetterhead?: InputMaybe; EntityDefinition?: InputMaybe; Event?: InputMaybe; ExpressionSetView?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareHistory?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + ExtDataShareTargetHistory?: InputMaybe; FeedItem?: InputMaybe; FieldPermissions?: InputMaybe; FlowInterview?: InputMaybe; @@ -5303,10 +7821,15 @@ export type JoinInput = { GroupMember?: InputMaybe; Holiday?: InputMaybe; IPAddressRange?: InputMaybe; + IdentityResolution?: InputMaybe; + IdentityResolutionHistory?: InputMaybe; Image?: InputMaybe; ImageHistory?: InputMaybe; Individual?: InputMaybe; + IndividualGDPRState__dlm?: InputMaybe; IndividualHistory?: InputMaybe; + InsightsExternalData?: InputMaybe; + InsightsExternalDataPart?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; LeadHistory?: InputMaybe; @@ -5323,9 +7846,31 @@ export type JoinInput = { ManagedContent?: InputMaybe; ManagedContentPublishedUrl?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationHistory?: InputMaybe; + MarketSegmentDefinition?: InputMaybe; + MarketSegmentHistory?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelUsage?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktCalculatedInsightHistory?: InputMaybe; + MktDataTransform?: InputMaybe; + MktDataTransformHistory?: InputMaybe; + MktMLAIModelHistory?: InputMaybe; + MktMLModel?: InputMaybe; + MktMLModelHistory?: InputMaybe; + MktMLModelKitHistory?: InputMaybe; + MktMLPredictionJobHistory?: InputMaybe; + MktSgmtActvDataModelFld?: InputMaybe; + MktSgmtActvDataSource?: InputMaybe; + Network?: InputMaybe; + NetworkDataCategory?: InputMaybe; Note?: InputMaybe; Notification__c?: InputMaybe; + ObjectMetadataTag?: InputMaybe; ObjectPermissions?: InputMaybe; + ObjectRelatedUrl?: InputMaybe; Opportunity?: InputMaybe; OpportunityContactRole?: InputMaybe; OpportunityFieldHistory?: InputMaybe; @@ -5341,6 +7886,14 @@ export type JoinInput = { OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; Partner?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundAllocationHistory?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundClaimHistory?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerFundRequestHistory?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; + PartnerMarketingBudgetHistory?: InputMaybe; PartyConsent?: InputMaybe; PartyConsentHistory?: InputMaybe; Payment__History?: InputMaybe; @@ -5349,6 +7902,15 @@ export type JoinInput = { PermissionSet?: InputMaybe; PermissionSetGroup?: InputMaybe; PermissionSetLicense?: InputMaybe; + PersnlBatchDecision?: InputMaybe; + PersnlContextVariable?: InputMaybe; + PersnlExperience?: InputMaybe; + PersnlTransformer?: InputMaybe; + PersonalizationDecision?: InputMaybe; + PersonalizationObjective?: InputMaybe; + PersonalizationPoint?: InputMaybe; + PersonalizationRecommender?: InputMaybe; + PersonalizationSchema?: InputMaybe; Pricebook2?: InputMaybe; Pricebook2History?: InputMaybe; PricebookEntry?: InputMaybe; @@ -5379,13 +7941,13 @@ export type JoinInput = { Property_Sale__c?: InputMaybe; Property__History?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; QuickTextHistory?: InputMaybe; Recommendation?: InputMaybe; RecordAction?: InputMaybe; RecordType?: InputMaybe; Report?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; Scorecard?: InputMaybe; ScorecardAssociation?: InputMaybe; ScorecardMetric?: InputMaybe; @@ -5393,6 +7955,7 @@ export type JoinInput = { SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; SellerHistory?: InputMaybe; + SenderEmailAddress?: InputMaybe; SetupAssistantStep?: InputMaybe; SiteHistory?: InputMaybe; SocialPersona?: InputMaybe; @@ -5418,6 +7981,7 @@ export type JoinInput = { UserLocalWebServerIdentity?: InputMaybe; UserRole?: InputMaybe; UserSharedFeature?: InputMaybe; + WaveAutoInstallRequest?: InputMaybe; WorkBadgeDefinitionHistory?: InputMaybe; WorkOrder?: InputMaybe; WorkOrderHistory?: InputMaybe; @@ -5623,33 +8187,46 @@ export type Lease__C_Filter = { export type ListEmail_Filter = { Campaign?: InputMaybe; CampaignId?: InputMaybe; - CcAddress?: InputMaybe; + CommSubscription?: InputMaybe; + CommSubscriptionChannelType?: InputMaybe; + CommSubscriptionChannelTypeId?: InputMaybe; + CommSubscriptionId?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + CustomDomainAddress?: InputMaybe; + EmailContent?: InputMaybe; + EmailContentId?: InputMaybe; + FlowRecordElement?: InputMaybe; + FlowRecordElementId?: InputMaybe; FromAddress?: InputMaybe; FromName?: InputMaybe; HasAttachment?: InputMaybe; HtmlBody?: InputMaybe; Id?: InputMaybe; + IsClickTrackingEnabled?: InputMaybe; IsDeleted?: InputMaybe; - IsEmailArchiveRequired?: InputMaybe; - IsSyntheticCcEnabled?: InputMaybe; + IsOpenTrackingEnabled?: InputMaybe; IsTracked?: InputMaybe; LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; + ManagedContent?: InputMaybe; + ManagedContentId?: InputMaybe; + MessagePurpose?: InputMaybe; Name?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; PardotAsset?: InputMaybe; PardotTenant?: InputMaybe; + PreHeader?: InputMaybe; RelatedTo?: InputMaybe; RelatedToId?: InputMaybe; - ReplyToName?: InputMaybe; ScheduledDate?: InputMaybe; + Segment?: InputMaybe; + SegmentId?: InputMaybe; SentVia?: InputMaybe; Status?: InputMaybe; Subject?: InputMaybe; @@ -6086,6 +8663,8 @@ export type ManagedContent_Filter = { LastPublishedVersionId?: InputMaybe; LastStagedVersionId?: InputMaybe; LatestVersionId?: InputMaybe; + LinkedAttributeEntity?: InputMaybe; + LinkedAttributeEntityId?: InputMaybe; Name?: InputMaybe; PrimaryLanguage?: InputMaybe; SourceContext?: InputMaybe; @@ -6097,6 +8676,576 @@ export type ManagedContent_Filter = { or?: InputMaybe>>; }; +export type MarketSegmentActivationHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegmentActivation_Filter = { + ActivationEventMetadata?: InputMaybe; + ActivationFlowType?: InputMaybe; + ActivationMappingSchema?: InputMaybe; + ActivationObjectFilter?: InputMaybe; + ActivationObjectId?: InputMaybe; + ActivationObjectName?: InputMaybe; + ActivationObjectPath?: InputMaybe; + ActivationProcessingType?: InputMaybe; + ActivationRecordSchema?: InputMaybe; + ActivationRefreshType?: InputMaybe; + ActivationStatus?: InputMaybe; + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + AudienceDmoLastRunTimestamp?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CuratedEntityId?: InputMaybe; + CuratedEntityName?: InputMaybe; + CustomerFileSource?: InputMaybe; + DataGraphId?: InputMaybe; + DataGraphName?: InputMaybe; + DataGraphPath?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DirectAttributeDmoFilterExpression?: InputMaybe; + DmoFilterExpression?: InputMaybe; + DoExcludeDeletes?: InputMaybe; + DoExcludeUpdates?: InputMaybe; + EndDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastActivationStatusDateTime?: InputMaybe; + LastActivationStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastPublishStatus?: InputMaybe; + LastPublishStatusErrorMessage?: InputMaybe; + LastPublishedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + LimitValue?: InputMaybe; + LimitingAttributesExpression?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivationDefId?: InputMaybe; + MarketSegmentId?: InputMaybe; + Name?: InputMaybe; + OwnedByOrg?: InputMaybe; + PartnerObjectIds?: InputMaybe; + PlatformName?: InputMaybe; + RecordCount?: InputMaybe; + SourceDmoApiName?: InputMaybe; + SourceDmoId?: InputMaybe; + StartDate?: InputMaybe; + StaticAttributes?: InputMaybe; + SystemModstamp?: InputMaybe; + WaterfallSelectedChildSegmentsConfig?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegmentDefinition_Filter = { + AdditionalMetadata?: InputMaybe; + AdditionalMetadataInfo?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataGraphDefinitionId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + ExcludeCriteria?: InputMaybe; + GroupSortLimitFilterCriteria?: InputMaybe; + Id?: InputMaybe; + IncludeCriteria?: InputMaybe; + IsCurrentSaveApproxCount?: InputMaybe; + IsDeleted?: InputMaybe; + IsPrevSaveApproxCount?: InputMaybe; + IsRemote?: InputMaybe; + IsSeedSegment?: InputMaybe; + Language?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LookbackPeriod?: InputMaybe; + MasterLabel?: InputMaybe; + NamespacePrefix?: InputMaybe; + OwnedBy?: InputMaybe; + PublishScheduleEndDate?: InputMaybe; + PublishScheduleEndDateTime?: InputMaybe; + PublishScheduleInfo?: InputMaybe; + PublishScheduleInterval?: InputMaybe; + PublishScheduleStartDateTime?: InputMaybe; + PublishType?: InputMaybe; + SegmentOnId?: InputMaybe; + SegmentType?: InputMaybe; + SourceMarketSegment?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegmentHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegment_Filter = { + AdditionalMetadataInfo?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataGraph?: InputMaybe; + DataGraphId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + ExcludeCriteria?: InputMaybe; + GroupSortLimitFilterCriteria?: InputMaybe; + Id?: InputMaybe; + IncludeCriteria?: InputMaybe; + IsCurrentSaveApproxCount?: InputMaybe; + IsDeleted?: InputMaybe; + IsPrevSaveApproxCount?: InputMaybe; + IsRemote?: InputMaybe; + IsSeedSegment?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastPublishStatusDateTime?: InputMaybe; + LastPublishStatusErrorCode?: InputMaybe; + LastPublishedEndDateTime?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastSeedModelRunDateTime?: InputMaybe; + LastSeedModelStatusDateTime?: InputMaybe; + LastSeedModelStatusErrorCode?: InputMaybe; + LastSegmentCountEndDateTime?: InputMaybe; + LastSegmentExcludedCount?: InputMaybe; + LastSegmentExcludedCountError?: InputMaybe; + LastSegmentIncludedCount?: InputMaybe; + LastSegmentMemberCount?: InputMaybe; + LastSegmentMemberCountError?: InputMaybe; + LastSegmentRemainderCount?: InputMaybe; + LastSegmentStatusDateTime?: InputMaybe; + LastSegmentStatusErrorCode?: InputMaybe; + LastSegmentStatusErrorDetails?: InputMaybe; + LastSegmentTotalCount?: InputMaybe; + LastViewedDate?: InputMaybe; + LookbackPeriod?: InputMaybe; + MarketSegmentDefinition?: InputMaybe; + MarketSegmentDefinitionId?: InputMaybe; + MarketSegmentType?: InputMaybe; + Name?: InputMaybe; + NextPublishDateTime?: InputMaybe; + OwnedBy?: InputMaybe; + PublishScheduleEndDate?: InputMaybe; + PublishScheduleEndDateTime?: InputMaybe; + PublishScheduleInfo?: InputMaybe; + PublishScheduleInterval?: InputMaybe; + PublishScheduleStartDateTime?: InputMaybe; + PublishStatus?: InputMaybe; + PublishType?: InputMaybe; + SeedModelStatus?: InputMaybe; + SeedSimilarity?: InputMaybe; + SeedSimilarityHighToMedium?: InputMaybe; + SeedSimilarityMediumToLow?: InputMaybe; + SegmentMembershipDataModelList?: InputMaybe; + SegmentMembershipTable?: InputMaybe; + SegmentOnId?: InputMaybe; + SegmentStatus?: InputMaybe; + SourceMarketSegment?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MessagingChannelUsage_Filter = { + ConsentType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DeploymentStatus?: InputMaybe; + DeploymentType?: InputMaybe; + DisabledTime?: InputMaybe; + ErrorDetails?: InputMaybe; + ErrorReason?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelId?: InputMaybe; + RoutingOverride?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MessagingChannel_Filter = { + BusinessHours?: InputMaybe; + BusinessHoursId?: InputMaybe; + ChannelAddressIdentifier?: InputMaybe; + ChannelProviderStatus?: InputMaybe; + ConsentType?: InputMaybe; + ConversationEndResponse?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DefaultResponse?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + DoubleOptInPrompt?: InputMaybe; + EndUserIdleTimeOut?: InputMaybe; + EngagedResponse?: InputMaybe; + ExternalAccountIdentifier?: InputMaybe; + ExternalBusinessIdentifier?: InputMaybe; + FallbackQueue?: InputMaybe; + FallbackQueueId?: InputMaybe; + Id?: InputMaybe; + InitialResponse?: InputMaybe; + IsActive?: InputMaybe; + IsDeleted?: InputMaybe; + IsLinkedRecordOpenedAsSubTab?: InputMaybe; + IsRequireDoubleOptIn?: InputMaybe; + IsRestrictedToBusinessHours?: InputMaybe; + IsUnifiedMessagingEnabled?: InputMaybe; + IsoCountryCode?: InputMaybe; + Language?: InputMaybe; + LastMilePlatform?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LinkingPreference?: InputMaybe; + MasterLabel?: InputMaybe; + MessageType?: InputMaybe; + MessagingPlatformKey?: InputMaybe; + OfflineAgentsResponse?: InputMaybe; + OptInPrompt?: InputMaybe; + OptionsConversationalSurveysToggle?: InputMaybe; + OptionsIdentifyEndUserLanguage?: InputMaybe; + OptionsIsBusinessNameAsSenderEnabled?: InputMaybe; + OptionsIsEstimatedWaitTimeEnabled?: InputMaybe; + OptionsIsOutboundOnly?: InputMaybe; + OptionsIsQueuePositionEnabled?: InputMaybe; + OptionsIsReadReceiptsEnabled?: InputMaybe; + OptionsIsSynchronousChatEnabled?: InputMaybe; + OptionsIsTypingIndicatorsEnabled?: InputMaybe; + OptionsIsVoiceModeEnabled?: InputMaybe; + OutsideBusinessHoursResponse?: InputMaybe; + PlatformType?: InputMaybe; + RoutingType?: InputMaybe; + SessionHandler?: InputMaybe; + SessionHandlerId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetQueue?: InputMaybe; + TargetQueueId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MessagingChannel_SessionHandler_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type MktCalculatedInsightHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktCalculatedInsightId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktCalculatedInsight_Filter = { + CalculatedInsightStatus?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + ExternalErrorProperties?: InputMaybe; + HistoryCi?: InputMaybe; + HistoryCiId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastCalcInsightStatusDateTime?: InputMaybe; + LastCalcInsightStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRunDateTime?: InputMaybe; + LastRunStatus?: InputMaybe; + LastRunStatusDateTime?: InputMaybe; + LastRunStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + MktCalcInsightObjectDefId?: InputMaybe; + Name?: InputMaybe; + OwnedBy?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktDataTransformHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktDataTransform?: InputMaybe; + MktDataTransformId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktDataTransform_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CreationSource?: InputMaybe; + CreationType?: InputMaybe; + CurrencyCode?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + DataTransformDefinitionId?: InputMaybe; + DataTransformStatus?: InputMaybe; + DataTransformStatusDetails?: InputMaybe; + FullRunFrequency?: InputMaybe; + Id?: InputMaybe; + IsCreatedAsMultiDefinition?: InputMaybe; + IsDeleted?: InputMaybe; + IsSystem?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastRunTime?: InputMaybe; + LastViewedDate?: InputMaybe; + MktDataTransformSetupId?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetObject?: InputMaybe; + Type?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktDataTransform_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type MktMlaiModelHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLAIModelId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModelHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLModel?: InputMaybe; + MktMLModelId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModelKitHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLModelKitId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModel_Filter = { + AggregatedStatus?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DeployStatus?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastProcessedRecords?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastViewedDate?: InputMaybe; + MktMlModelDefinitionId?: InputMaybe; + MlModelApiName?: InputMaybe; + Name?: InputMaybe; + OffCoreSyncStatus?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + ScoringMode?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModel_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type MktMlPredictionJobHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLPredictionJobId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktSgmtActvDataModelFld_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationId?: InputMaybe; + MktDataModelFieldId?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktSgmtActvDataSource_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSourceId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationId?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type MultiPicklistOperators = { eq?: InputMaybe; excludes?: InputMaybe>>; @@ -6155,6 +9304,118 @@ export type Name_OrderBy = { Username?: InputMaybe; }; +export type NetworkDataCategory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCategoryGroupName?: InputMaybe; + DataCategoryLabel?: InputMaybe; + DataCategoryName?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + Image?: InputMaybe; + ImageId?: InputMaybe; + IsDeleted?: InputMaybe; + Label?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Network?: InputMaybe; + NetworkId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type Network_Filter = { + AllowedExtensions?: InputMaybe; + CaseCommentEmailTemplateId?: InputMaybe; + ChangePasswordEmailTemplateId?: InputMaybe; + ChgEmailVerNewEmailTemplateId?: InputMaybe; + ChgEmailVerOldEmailTemplateId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + DeviceActEmailTemplateId?: InputMaybe; + EmailFooterLogoId?: InputMaybe; + EmailFooterText?: InputMaybe; + EmailSenderAddress?: InputMaybe; + EmailSenderName?: InputMaybe; + FirstActivationDate?: InputMaybe; + ForgotPasswordEmailTemplateId?: InputMaybe; + HeadlessForgotPasswordTemplateId?: InputMaybe; + HeadlessRegistrationTemplateId?: InputMaybe; + Id?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LockoutEmailTemplateId?: InputMaybe; + MaxFileSizeKb?: InputMaybe; + Name?: InputMaybe; + NewSenderAddress?: InputMaybe; + OptionsActionOverrideEnabled?: InputMaybe; + OptionsAdvancedAuthForSiteEnabled?: InputMaybe; + OptionsAllowInternalUserLogin?: InputMaybe; + OptionsAllowMembersToFlag?: InputMaybe; + OptionsApexCDNCachingEnabled?: InputMaybe; + OptionsCWBannerState?: InputMaybe; + OptionsDirectMessagesEnabled?: InputMaybe; + OptionsDisableWorkspaceInfo?: InputMaybe; + OptionsEinsteinAnswersEnabled?: InputMaybe; + OptionsEinsteinAnswersKAEnabled?: InputMaybe; + OptionsEinsteinAnswersQAEnabled?: InputMaybe; + OptionsEinsteinAnswersSnippetEnabled?: InputMaybe; + OptionsEmbeddedLoginEnabled?: InputMaybe; + OptionsEnableTalkingAboutStats?: InputMaybe; + OptionsEnableTopicAssignmentRules?: InputMaybe; + OptionsExpFriendlyUrlsAsDefault?: InputMaybe; + OptionsExperienceBundleBasedSnaOverrideEnabled?: InputMaybe; + OptionsGatherCustomerSentimentData?: InputMaybe; + OptionsGuestChatterEnabled?: InputMaybe; + OptionsGuestFileAccessEnabled?: InputMaybe; + OptionsGuestMemberVisibility?: InputMaybe; + OptionsHeadlessFrgtPswEnabled?: InputMaybe; + OptionsImageOptimizationCDNEnabled?: InputMaybe; + OptionsInvitationsEnabled?: InputMaybe; + OptionsKnowledgeableEnabled?: InputMaybe; + OptionsLWRExperienceConnectedAppEnabled?: InputMaybe; + OptionsLWRExperienceOnManagedRuntime?: InputMaybe; + OptionsLWRSearchGenerativeAnswersEnabled?: InputMaybe; + OptionsMemberVisibility?: InputMaybe; + OptionsMobileImageOptimizationEnabled?: InputMaybe; + OptionsNetworkSentimentAnalysis?: InputMaybe; + OptionsNicknameDisplayEnabled?: InputMaybe; + OptionsPrivateMessagesEnabled?: InputMaybe; + OptionsProfileBasedLayoutsForKnowledgeSearchEnabled?: InputMaybe; + OptionsRecognitionBadgingEnabled?: InputMaybe; + OptionsReputationEnabled?: InputMaybe; + OptionsReputationRecordConversationsDisabled?: InputMaybe; + OptionsSelfRegistrationEnabled?: InputMaybe; + OptionsSendWelcomeEmail?: InputMaybe; + OptionsShowAllNetworkSettings?: InputMaybe; + OptionsSiteAsContainerEnabled?: InputMaybe; + OptionsSlfSrvcPersonalizationEnabled?: InputMaybe; + OptionsThreadedDiscussionsEnabled?: InputMaybe; + OptionsTopicFilteringForKnowledgeSearchEnabled?: InputMaybe; + OptionsTopicSuggestionsEnabled?: InputMaybe; + OptionsTwilioCallbackApiEnabled?: InputMaybe; + OptionsUpDownVoteEnabled?: InputMaybe; + PwdlessRegEmailTemplateId?: InputMaybe; + SelfRegMicroBatchSubErrorEmailTemplateId?: InputMaybe; + SelfRegProfileId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + TabSetId?: InputMaybe; + UrlPathPrefix?: InputMaybe; + VerificationEmailTemplateId?: InputMaybe; + WelcomeEmailTemplateId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type NoFunctionAggregateOrderByClause = { nulls?: InputMaybe; order?: InputMaybe; @@ -6190,12 +9451,18 @@ export type Note_Parent_Filters = { ApprovalSubmissionDetail?: InputMaybe; ApprovalWorkItem?: InputMaybe; Asset?: InputMaybe; + Brief?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; CommSubscriptionTiming?: InputMaybe; Contact?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; EngagementChannelType?: InputMaybe; @@ -6210,6 +9477,10 @@ export type Note_Parent_Filters = { Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; Property_Cost__c?: InputMaybe; @@ -6269,6 +9540,27 @@ export enum NullsOrder { Last = "LAST", } +export type ObjectMetadataTag_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + Language?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Record?: InputMaybe; + RecordId?: InputMaybe; + SystemModstamp?: InputMaybe; + TagType?: InputMaybe; + Value?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type ObjectPermissions_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -6293,6 +9585,52 @@ export type ObjectPermissions_Filter = { or?: InputMaybe>>; }; +export type ObjectRelatedUrl_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LanguageCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Parent?: InputMaybe; + ParentId?: InputMaybe; + Scope?: InputMaybe; + SystemModstamp?: InputMaybe; + UniqueIndex?: InputMaybe; + UrlName?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ObjectRelatedUrl_Parent_Filters = { + Account?: InputMaybe; + Agent__c?: InputMaybe; + Application__c?: InputMaybe; + Contact?: InputMaybe; + KPI_Snapshot__c?: InputMaybe; + Lease__c?: InputMaybe; + Maintenance_Request__c?: InputMaybe; + Maintenance_Worker__c?: InputMaybe; + Name?: InputMaybe; + Notification__c?: InputMaybe; + Payment__c?: InputMaybe; + Product2?: InputMaybe; + Property_Cost__c?: InputMaybe; + Property_Feature__c?: InputMaybe; + Property_Image__c?: InputMaybe; + Property_Listing__c?: InputMaybe; + Property_Management_Company__c?: InputMaybe; + Property_Owner__c?: InputMaybe; + Property_Sale__c?: InputMaybe; + Property__c?: InputMaybe; + Tenant__c?: InputMaybe; +}; + export type OpportunityContactRole_Filter = { Contact?: InputMaybe; ContactId?: InputMaybe; @@ -6488,6 +9826,12 @@ export type OrderByClause = { order?: InputMaybe; }; +export type OrderByGeolocationClause = { + distance?: InputMaybe; + nulls?: InputMaybe; + order?: InputMaybe; +}; + export type OrderHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -6816,6 +10160,234 @@ export type Organization_OrderBy = { WebToCaseDefaultOrigin?: InputMaybe; }; +export type PartnerFundAllocationHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundAllocationId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundAllocation_Filter = { + Amount?: InputMaybe; + Budget?: InputMaybe; + BudgetId?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + TotalApprovedFcs?: InputMaybe; + TotalApprovedFrs?: InputMaybe; + TotalReimbursedFcs?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundAllocation_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type PartnerFundClaimHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundClaimId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundClaim_Filter = { + Allocation?: InputMaybe; + AllocationId?: InputMaybe; + Amount?: InputMaybe; + Budget?: InputMaybe; + BudgetId?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Request?: InputMaybe; + RequestId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundClaim_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type PartnerFundRequestHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerFundRequestId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundRequest_Filter = { + Activity?: InputMaybe; + Allocation?: InputMaybe; + AllocationId?: InputMaybe; + Amount?: InputMaybe; + Budget?: InputMaybe; + BudgetId?: InputMaybe; + Campaign?: InputMaybe; + CampaignId?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + DesiredOutcome?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + RequestedAmount?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + TotalApprovedFcs?: InputMaybe; + TotalReimbursedFcs?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundRequest_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type PartnerMarketingBudgetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; + PartnerMarketingBudgetId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerMarketingBudget_Filter = { + Amount?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + EndDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsIgnoreValidation?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + StartDate?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + TotalAllocatedAmount?: InputMaybe; + TotalApprovedFcs?: InputMaybe; + TotalApprovedFrs?: InputMaybe; + TotalReimbursedFcs?: InputMaybe; + Type?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerMarketingBudget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type Partner_Filter = { AccountFrom?: InputMaybe; AccountFromId?: InputMaybe; @@ -7013,12 +10585,18 @@ export type PermissionSetLicense_Filter = { LastModifiedDate?: InputMaybe; LicenseExpirationPolicy?: InputMaybe; MasterLabel?: InputMaybe; - MaximumPermissionsAcceptInboundBundling?: InputMaybe; + MaximumPermissionsAICreateInsightObjects?: InputMaybe; + MaximumPermissionsAIViewInsightObjects?: InputMaybe; MaximumPermissionsAccessBankingRelationshipAssistance?: InputMaybe; MaximumPermissionsAccessBankingServiceAgent?: InputMaybe; MaximumPermissionsAccessCMC?: InputMaybe; + MaximumPermissionsAccessCdpApp?: InputMaybe; + MaximumPermissionsAccessCdpDataExplorer?: InputMaybe; + MaximumPermissionsAccessCdpProfileExplorer?: InputMaybe; MaximumPermissionsAccessContentBuilder?: InputMaybe; + MaximumPermissionsAccessCustomerDataCloudSetup?: InputMaybe; MaximumPermissionsAccessDisputePrompts?: InputMaybe; + MaximumPermissionsAccessKnowledgeSpace?: InputMaybe; MaximumPermissionsAccessOrchestrationObjects?: InputMaybe; MaximumPermissionsAccessPolicyAgent?: InputMaybe; MaximumPermissionsAccessServiceEinstein?: InputMaybe; @@ -7030,10 +10608,23 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsAccessWealthAdvisorAgent?: InputMaybe; MaximumPermissionsAccountSwitcherUser?: InputMaybe; MaximumPermissionsActivateContract?: InputMaybe; + MaximumPermissionsActivateDeactivateNonSetupFlow?: InputMaybe; MaximumPermissionsActivateOrder?: InputMaybe; MaximumPermissionsActivateSystemModeFlows?: InputMaybe; MaximumPermissionsActivitiesAccess?: InputMaybe; + MaximumPermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + MaximumPermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; MaximumPermissionsAddDirectMessageMembers?: InputMaybe; + MaximumPermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddWaitToNonSetupFlow?: InputMaybe; MaximumPermissionsAdvancedCsvDataImportUser?: InputMaybe; MaximumPermissionsAgentforceServiceAgentUser?: InputMaybe; MaximumPermissionsAllowEmailIC?: InputMaybe; @@ -7060,7 +10651,9 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsCanApproveUninstalledApps?: InputMaybe; MaximumPermissionsCanDoActAsUser?: InputMaybe; MaximumPermissionsCanEditPrompts?: InputMaybe; + MaximumPermissionsCanExitFlowViaAPI?: InputMaybe; MaximumPermissionsCanInsertFeedSystemFields?: InputMaybe; + MaximumPermissionsCanMarketingUserDebugFlow?: InputMaybe; MaximumPermissionsCanTranslateScrt2Conversation?: InputMaybe; MaximumPermissionsCanUpdateEmailMessage?: InputMaybe; MaximumPermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -7069,6 +10662,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsCdcReportingCreateReports?: InputMaybe; MaximumPermissionsCdcReportingManageFolders?: InputMaybe; MaximumPermissionsCdcReportingViewReports?: InputMaybe; + MaximumPermissionsCdpConnectionManagementUser?: InputMaybe; MaximumPermissionsChangeDashboardColors?: InputMaybe; MaximumPermissionsChatterComposeUiCodesnippet?: InputMaybe; MaximumPermissionsChatterEditOwnPost?: InputMaybe; @@ -7079,20 +10673,30 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsChatterOwnGroups?: InputMaybe; MaximumPermissionsClientSecretRotation?: InputMaybe; MaximumPermissionsCloseConversations?: InputMaybe; + MaximumPermissionsCodeBuilderUser?: InputMaybe; MaximumPermissionsConfigCustomRecs?: InputMaybe; MaximumPermissionsConfigureDataspaceScope?: InputMaybe; MaximumPermissionsConnectOrgToEnvironmentHub?: InputMaybe; MaximumPermissionsConsentApiUpdate?: InputMaybe; + MaximumPermissionsConsentBannerSettingsSetup?: InputMaybe; MaximumPermissionsContentAdministrator?: InputMaybe; MaximumPermissionsContentHubUser?: InputMaybe; MaximumPermissionsContentWorkspaces?: InputMaybe; MaximumPermissionsConvertLeads?: InputMaybe; + MaximumPermissionsCosellAuthSetupUser?: InputMaybe; + MaximumPermissionsCosellExportUser?: InputMaybe; MaximumPermissionsCreateCustomizeDashboards?: InputMaybe; MaximumPermissionsCreateCustomizeFilters?: InputMaybe; MaximumPermissionsCreateCustomizeReports?: InputMaybe; MaximumPermissionsCreateDashboardFolders?: InputMaybe; + MaximumPermissionsCreateEditNonSetupFlow?: InputMaybe; MaximumPermissionsCreateLtngTempFolder?: InputMaybe; MaximumPermissionsCreateLtngTempInPub?: InputMaybe; + MaximumPermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; MaximumPermissionsCreatePackaging?: InputMaybe; MaximumPermissionsCreateReportFolders?: InputMaybe; MaximumPermissionsCreateReportInLightning?: InputMaybe; @@ -7104,9 +10708,11 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsCustomSidebarOnAllPages?: InputMaybe; MaximumPermissionsCustomizeApplication?: InputMaybe; MaximumPermissionsDataExport?: InputMaybe; + MaximumPermissionsDelegatedPortalUserAdmin?: InputMaybe; MaximumPermissionsDelegatedTwoFactor?: InputMaybe; MaximumPermissionsDeleteActivatedContract?: InputMaybe; MaximumPermissionsDeleteCrMemoAndInvoice?: InputMaybe; + MaximumPermissionsDeleteNonSetupFlow?: InputMaybe; MaximumPermissionsDeleteSalesforceFiles?: InputMaybe; MaximumPermissionsDeleteTopics?: InputMaybe; MaximumPermissionsDigitalLendingAdminUser?: InputMaybe; @@ -7131,6 +10737,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsEditReadonlyFields?: InputMaybe; MaximumPermissionsEditTask?: InputMaybe; MaximumPermissionsEditTopics?: InputMaybe; + MaximumPermissionsEinsteinMetadataUserAccess?: InputMaybe; MaximumPermissionsEmailAdministration?: InputMaybe; MaximumPermissionsEmailMass?: InputMaybe; MaximumPermissionsEmailSingle?: InputMaybe; @@ -7152,7 +10759,6 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsFreezeUsers?: InputMaybe; MaximumPermissionsGiveRecognitionBadge?: InputMaybe; MaximumPermissionsGovernNetworks?: InputMaybe; - MaximumPermissionsGrantOutboundBundling?: InputMaybe; MaximumPermissionsHasUnlimitedNBAExecutions?: InputMaybe; MaximumPermissionsHeadlessCMSAccess?: InputMaybe; MaximumPermissionsHeadlessPublishNudges?: InputMaybe; @@ -7177,16 +10783,20 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsListEmailSend?: InputMaybe; MaximumPermissionsLobbyManagementUserAccess?: InputMaybe; MaximumPermissionsLtngPromoReserved01UserPerm?: InputMaybe; + MaximumPermissionsMCGSetupUserPerm?: InputMaybe; MaximumPermissionsMCPMetadataApi?: InputMaybe; MaximumPermissionsManageAccessPolicies?: InputMaybe; MaximumPermissionsManageAgentforceServiceAgent?: InputMaybe; MaximumPermissionsManageAnalyticSnapshots?: InputMaybe; MaximumPermissionsManageApiNamedQueries?: InputMaybe; MaximumPermissionsManageAuthProviders?: InputMaybe; + MaximumPermissionsManageBriefs?: InputMaybe; MaximumPermissionsManageBusinessHourHolidays?: InputMaybe; + MaximumPermissionsManageBusinessUnit?: InputMaybe; MaximumPermissionsManageC360AConnections?: InputMaybe; MaximumPermissionsManageCMS?: InputMaybe; MaximumPermissionsManageCallCenters?: InputMaybe; + MaximumPermissionsManageCampaigns?: InputMaybe; MaximumPermissionsManageCases?: InputMaybe; MaximumPermissionsManageCategories?: InputMaybe; MaximumPermissionsManageCdpMlModels?: InputMaybe; @@ -7197,19 +10807,26 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageContentProperties?: InputMaybe; MaximumPermissionsManageContentTaxonomy?: InputMaybe; MaximumPermissionsManageContentTypes?: InputMaybe; + MaximumPermissionsManageCssUsers?: InputMaybe; MaximumPermissionsManageCustomDomains?: InputMaybe; MaximumPermissionsManageCustomPermissions?: InputMaybe; MaximumPermissionsManageCustomReportTypes?: InputMaybe; + MaximumPermissionsManageCustomerDataOptOut?: InputMaybe; MaximumPermissionsManageDashbdsInPubFolders?: InputMaybe; + MaximumPermissionsManageDataAnalyticsGroups?: InputMaybe; MaximumPermissionsManageDataCategories?: InputMaybe; MaximumPermissionsManageDataIntegrations?: InputMaybe; MaximumPermissionsManageDataspaceScope?: InputMaybe; + MaximumPermissionsManageDevSandboxes?: InputMaybe; MaximumPermissionsManageDynamicDashboards?: InputMaybe; MaximumPermissionsManageEmailClientConfig?: InputMaybe; + MaximumPermissionsManageEmailContent?: InputMaybe; + MaximumPermissionsManageEmailMessagingSetup?: InputMaybe; MaximumPermissionsManageExchangeConfig?: InputMaybe; MaximumPermissionsManageExternalConnections?: InputMaybe; MaximumPermissionsManageFilesAndAttachments?: InputMaybe; MaximumPermissionsManageForecastingCustomData?: InputMaybe; + MaximumPermissionsManageGlobalPrivacyCenterVO?: InputMaybe; MaximumPermissionsManageHealthCheck?: InputMaybe; MaximumPermissionsManageHerokuAppLink?: InputMaybe; MaximumPermissionsManageHubConnections?: InputMaybe; @@ -7221,11 +10838,15 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageLoginAccessPolicies?: InputMaybe; MaximumPermissionsManageMaliciousFiles?: InputMaybe; MaximumPermissionsManageMobile?: InputMaybe; + MaximumPermissionsManageMobileAppSecurity?: InputMaybe; + MaximumPermissionsManageMyExternalUsers?: InputMaybe; MaximumPermissionsManageNamedCredentials?: InputMaybe; MaximumPermissionsManageNetworks?: InputMaybe; MaximumPermissionsManageOrchInstsAndWorkItems?: InputMaybe; MaximumPermissionsManageOrchestrationRuns?: InputMaybe; + MaximumPermissionsManagePartners?: InputMaybe; MaximumPermissionsManagePasswordPolicies?: InputMaybe; + MaximumPermissionsManagePreferenceCenter?: InputMaybe; MaximumPermissionsManageProfilesPermissionsets?: InputMaybe; MaximumPermissionsManagePropositions?: InputMaybe; MaximumPermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -7235,10 +10856,11 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageRemoteAccess?: InputMaybe; MaximumPermissionsManageReportsInPubFolders?: InputMaybe; MaximumPermissionsManageRoles?: InputMaybe; + MaximumPermissionsManageSMSDomainSetup?: InputMaybe; + MaximumPermissionsManageSMSMessagingSetup?: InputMaybe; + MaximumPermissionsManageSandboxes?: InputMaybe; MaximumPermissionsManageSessionPermissionSets?: InputMaybe; - MaximumPermissionsManageSharedListViews?: InputMaybe; MaximumPermissionsManageSharing?: InputMaybe; - MaximumPermissionsManageSocialPosting?: InputMaybe; MaximumPermissionsManageSolutions?: InputMaybe; MaximumPermissionsManageSubscriptions?: InputMaybe; MaximumPermissionsManageSurveys?: InputMaybe; @@ -7248,12 +10870,16 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageUnlistedGroups?: InputMaybe; MaximumPermissionsManageUsers?: InputMaybe; MaximumPermissionsMassInlineEdit?: InputMaybe; - MaximumPermissionsMeetingEngagementUser?: InputMaybe; - MaximumPermissionsMemberSelfServiceAgentAccess?: InputMaybe; + MaximumPermissionsMcScoringRulesConfig?: InputMaybe; MaximumPermissionsMergeTopics?: InputMaybe; MaximumPermissionsMetadataStudioUser?: InputMaybe; + MaximumPermissionsMicrobatching?: InputMaybe; MaximumPermissionsMngBenVerfForAssistiveAgnt?: InputMaybe; + MaximumPermissionsMobileAppSecurity?: InputMaybe; MaximumPermissionsModerateChatter?: InputMaybe; + MaximumPermissionsModerateNetworkFeeds?: InputMaybe; + MaximumPermissionsModerateNetworkFiles?: InputMaybe; + MaximumPermissionsModerateNetworkMessages?: InputMaybe; MaximumPermissionsModerateNetworkUsers?: InputMaybe; MaximumPermissionsModifyAccessAllowPolicies?: InputMaybe; MaximumPermissionsModifyAccessDenyPolicies?: InputMaybe; @@ -7264,19 +10890,27 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsMonitorLoginHistory?: InputMaybe; MaximumPermissionsNativeWebviewScrolling?: InputMaybe; MaximumPermissionsNewReportBuilder?: InputMaybe; + MaximumPermissionsOpportunityInfluence?: InputMaybe; + MaximumPermissionsOrgPerformanceAccess?: InputMaybe; MaximumPermissionsOutboundMigrationToolsUser?: InputMaybe; MaximumPermissionsOverrideForecasts?: InputMaybe; + MaximumPermissionsPRMChannelMgmtConsoleUser?: InputMaybe; MaximumPermissionsPackaging2?: InputMaybe; MaximumPermissionsPackaging2Delete?: InputMaybe; MaximumPermissionsPasswordNeverExpires?: InputMaybe; + MaximumPermissionsPerformanceAnalysisAccess?: InputMaybe; MaximumPermissionsPersonalizationDecisioningUser?: InputMaybe; MaximumPermissionsPersonalizationIntelUser?: InputMaybe; MaximumPermissionsPersonalizationPlatform?: InputMaybe; MaximumPermissionsPersonalizedFinanceUserAccess?: InputMaybe; + MaximumPermissionsPortalSuperUser?: InputMaybe; MaximumPermissionsPreventClassicExperience?: InputMaybe; + MaximumPermissionsPreviewTestSendEmail?: InputMaybe; + MaximumPermissionsPreviewTestSendSMS?: InputMaybe; MaximumPermissionsPrismBackofficeUser?: InputMaybe; MaximumPermissionsPrismPlaygroundUser?: InputMaybe; MaximumPermissionsPrivacyDataAccess?: InputMaybe; + MaximumPermissionsPrmEnhancedPortalUser?: InputMaybe; MaximumPermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; MaximumPermissionsPublishPackaging?: InputMaybe; MaximumPermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -7285,6 +10919,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsQuipMetricsAccess?: InputMaybe; MaximumPermissionsQuipUserEngagementMetrics?: InputMaybe; MaximumPermissionsReassignOrchestrationWorkItems?: InputMaybe; + MaximumPermissionsRecordVisibilityAPI?: InputMaybe; MaximumPermissionsRegrelloUser?: InputMaybe; MaximumPermissionsRemoveDirectMessageMembers?: InputMaybe; MaximumPermissionsResetPasswords?: InputMaybe; @@ -7298,7 +10933,10 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsSelectFilesFromSalesforce?: InputMaybe; MaximumPermissionsSendAnnouncementEmails?: InputMaybe; MaximumPermissionsSendCustomNotifications?: InputMaybe; + MaximumPermissionsSendEmail?: InputMaybe; + MaximumPermissionsSendSMS?: InputMaybe; MaximumPermissionsSendSitRequests?: InputMaybe; + MaximumPermissionsShareFilesWithNetworks?: InputMaybe; MaximumPermissionsShowCompanyNameAsUserBadge?: InputMaybe; MaximumPermissionsSimpleCsvDataImportUser?: InputMaybe; MaximumPermissionsSkipIdentityConfirmation?: InputMaybe; @@ -7318,8 +10956,12 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsTransferAnyEntity?: InputMaybe; MaximumPermissionsTransferAnyLead?: InputMaybe; MaximumPermissionsTwoFactorApi?: InputMaybe; + MaximumPermissionsUMAStandaloneUserPerm?: InputMaybe; + MaximumPermissionsUMAWebTrackingSetup?: InputMaybe; + MaximumPermissionsUmaEditConsentSettings?: InputMaybe; + MaximumPermissionsUmaQueryCMSEmailContent?: InputMaybe; + MaximumPermissionsUnifiedEHDViewer?: InputMaybe; MaximumPermissionsUpdateReportTypeReferences?: InputMaybe; - MaximumPermissionsUseAnyApiAuth?: InputMaybe; MaximumPermissionsUseAssistantDialog?: InputMaybe; MaximumPermissionsUseMySearch?: InputMaybe; MaximumPermissionsUseQuerySuggestions?: InputMaybe; @@ -7331,6 +10973,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsUseTeamsForItSrvcs?: InputMaybe; MaximumPermissionsUseWebLink?: InputMaybe; MaximumPermissionsUserCanDeployStore?: InputMaybe; + MaximumPermissionsUserHasSendToListFilterAccess?: InputMaybe; MaximumPermissionsUserInteractionInsights?: InputMaybe; MaximumPermissionsViewAccessPolicies?: InputMaybe; MaximumPermissionsViewAllActivities?: InputMaybe; @@ -7339,22 +10982,30 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsViewAllFieldsGlobal?: InputMaybe; MaximumPermissionsViewAllForecasts?: InputMaybe; MaximumPermissionsViewAllForeignKeyNames?: InputMaybe; + MaximumPermissionsViewAllNonSetupFlows?: InputMaybe; MaximumPermissionsViewAllPolicyCenterPolicies?: InputMaybe; MaximumPermissionsViewAllProfiles?: InputMaybe; MaximumPermissionsViewAllUsers?: InputMaybe; MaximumPermissionsViewApiNamedQueries?: InputMaybe; + MaximumPermissionsViewBusinessUnit?: InputMaybe; MaximumPermissionsViewClientSecret?: InputMaybe; MaximumPermissionsViewContent?: InputMaybe; MaximumPermissionsViewContentTaxonomy?: InputMaybe; + MaximumPermissionsViewCustomerSentiment?: InputMaybe; MaximumPermissionsViewDataAssessment?: InputMaybe; MaximumPermissionsViewDataCategories?: InputMaybe; MaximumPermissionsViewDeveloperName?: InputMaybe; + MaximumPermissionsViewEmailMessagingSetup?: InputMaybe; MaximumPermissionsViewEncryptedData?: InputMaybe; MaximumPermissionsViewEventLogFiles?: InputMaybe; + MaximumPermissionsViewGlobalHeader?: InputMaybe; MaximumPermissionsViewHealthCheck?: InputMaybe; MaximumPermissionsViewHelpLink?: InputMaybe; MaximumPermissionsViewLicenseUtilization?: InputMaybe; + MaximumPermissionsViewMLModels?: InputMaybe; MaximumPermissionsViewMyTeamsDashboards?: InputMaybe; + MaximumPermissionsViewNonSetupFlow?: InputMaybe; + MaximumPermissionsViewOnlyEmbeddedAppUser?: InputMaybe; MaximumPermissionsViewOrchestrationsInAutomApp?: InputMaybe; MaximumPermissionsViewPrivateStaticResources?: InputMaybe; MaximumPermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -7363,8 +11014,10 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsViewRecommendations?: InputMaybe; MaximumPermissionsViewRestrictionAndScopingRules?: InputMaybe; MaximumPermissionsViewRoles?: InputMaybe; + MaximumPermissionsViewSMSMessagingSetup?: InputMaybe; MaximumPermissionsViewSetup?: InputMaybe; MaximumPermissionsViewTrustMeasures?: InputMaybe; + MaximumPermissionsViewUMACalendar?: InputMaybe; MaximumPermissionsViewUserPII?: InputMaybe; MaximumPermissionsYourAccountCDAPublishEvents?: InputMaybe; MigratableLicenses?: InputMaybe; @@ -7397,12 +11050,18 @@ export type PermissionSet_Filter = { NamespacePrefix?: InputMaybe; PermissionSetGroup?: InputMaybe; PermissionSetGroupId?: InputMaybe; - PermissionsAcceptInboundBundling?: InputMaybe; + PermissionsAICreateInsightObjects?: InputMaybe; + PermissionsAIViewInsightObjects?: InputMaybe; PermissionsAccessBankingRelationshipAssistance?: InputMaybe; PermissionsAccessBankingServiceAgent?: InputMaybe; PermissionsAccessCMC?: InputMaybe; + PermissionsAccessCdpApp?: InputMaybe; + PermissionsAccessCdpDataExplorer?: InputMaybe; + PermissionsAccessCdpProfileExplorer?: InputMaybe; PermissionsAccessContentBuilder?: InputMaybe; + PermissionsAccessCustomerDataCloudSetup?: InputMaybe; PermissionsAccessDisputePrompts?: InputMaybe; + PermissionsAccessKnowledgeSpace?: InputMaybe; PermissionsAccessOrchestrationObjects?: InputMaybe; PermissionsAccessPolicyAgent?: InputMaybe; PermissionsAccessServiceEinstein?: InputMaybe; @@ -7414,10 +11073,23 @@ export type PermissionSet_Filter = { PermissionsAccessWealthAdvisorAgent?: InputMaybe; PermissionsAccountSwitcherUser?: InputMaybe; PermissionsActivateContract?: InputMaybe; + PermissionsActivateDeactivateNonSetupFlow?: InputMaybe; PermissionsActivateOrder?: InputMaybe; PermissionsActivateSystemModeFlows?: InputMaybe; PermissionsActivitiesAccess?: InputMaybe; + PermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + PermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; PermissionsAddDirectMessageMembers?: InputMaybe; + PermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + PermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + PermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + PermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddWaitToNonSetupFlow?: InputMaybe; PermissionsAdvancedCsvDataImportUser?: InputMaybe; PermissionsAgentforceServiceAgentUser?: InputMaybe; PermissionsAllowEmailIC?: InputMaybe; @@ -7444,7 +11116,9 @@ export type PermissionSet_Filter = { PermissionsCanApproveUninstalledApps?: InputMaybe; PermissionsCanDoActAsUser?: InputMaybe; PermissionsCanEditPrompts?: InputMaybe; + PermissionsCanExitFlowViaAPI?: InputMaybe; PermissionsCanInsertFeedSystemFields?: InputMaybe; + PermissionsCanMarketingUserDebugFlow?: InputMaybe; PermissionsCanTranslateScrt2Conversation?: InputMaybe; PermissionsCanUpdateEmailMessage?: InputMaybe; PermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -7453,6 +11127,7 @@ export type PermissionSet_Filter = { PermissionsCdcReportingCreateReports?: InputMaybe; PermissionsCdcReportingManageFolders?: InputMaybe; PermissionsCdcReportingViewReports?: InputMaybe; + PermissionsCdpConnectionManagementUser?: InputMaybe; PermissionsChangeDashboardColors?: InputMaybe; PermissionsChatterComposeUiCodesnippet?: InputMaybe; PermissionsChatterEditOwnPost?: InputMaybe; @@ -7463,20 +11138,30 @@ export type PermissionSet_Filter = { PermissionsChatterOwnGroups?: InputMaybe; PermissionsClientSecretRotation?: InputMaybe; PermissionsCloseConversations?: InputMaybe; + PermissionsCodeBuilderUser?: InputMaybe; PermissionsConfigCustomRecs?: InputMaybe; PermissionsConfigureDataspaceScope?: InputMaybe; PermissionsConnectOrgToEnvironmentHub?: InputMaybe; PermissionsConsentApiUpdate?: InputMaybe; + PermissionsConsentBannerSettingsSetup?: InputMaybe; PermissionsContentAdministrator?: InputMaybe; PermissionsContentHubUser?: InputMaybe; PermissionsContentWorkspaces?: InputMaybe; PermissionsConvertLeads?: InputMaybe; + PermissionsCosellAuthSetupUser?: InputMaybe; + PermissionsCosellExportUser?: InputMaybe; PermissionsCreateCustomizeDashboards?: InputMaybe; PermissionsCreateCustomizeFilters?: InputMaybe; PermissionsCreateCustomizeReports?: InputMaybe; PermissionsCreateDashboardFolders?: InputMaybe; + PermissionsCreateEditNonSetupFlow?: InputMaybe; PermissionsCreateLtngTempFolder?: InputMaybe; PermissionsCreateLtngTempInPub?: InputMaybe; + PermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + PermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + PermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; PermissionsCreatePackaging?: InputMaybe; PermissionsCreateReportFolders?: InputMaybe; PermissionsCreateReportInLightning?: InputMaybe; @@ -7488,9 +11173,11 @@ export type PermissionSet_Filter = { PermissionsCustomSidebarOnAllPages?: InputMaybe; PermissionsCustomizeApplication?: InputMaybe; PermissionsDataExport?: InputMaybe; + PermissionsDelegatedPortalUserAdmin?: InputMaybe; PermissionsDelegatedTwoFactor?: InputMaybe; PermissionsDeleteActivatedContract?: InputMaybe; PermissionsDeleteCrMemoAndInvoice?: InputMaybe; + PermissionsDeleteNonSetupFlow?: InputMaybe; PermissionsDeleteSalesforceFiles?: InputMaybe; PermissionsDeleteTopics?: InputMaybe; PermissionsDigitalLendingAdminUser?: InputMaybe; @@ -7515,6 +11202,7 @@ export type PermissionSet_Filter = { PermissionsEditReadonlyFields?: InputMaybe; PermissionsEditTask?: InputMaybe; PermissionsEditTopics?: InputMaybe; + PermissionsEinsteinMetadataUserAccess?: InputMaybe; PermissionsEmailAdministration?: InputMaybe; PermissionsEmailMass?: InputMaybe; PermissionsEmailSingle?: InputMaybe; @@ -7536,7 +11224,6 @@ export type PermissionSet_Filter = { PermissionsFreezeUsers?: InputMaybe; PermissionsGiveRecognitionBadge?: InputMaybe; PermissionsGovernNetworks?: InputMaybe; - PermissionsGrantOutboundBundling?: InputMaybe; PermissionsHasUnlimitedNBAExecutions?: InputMaybe; PermissionsHeadlessCMSAccess?: InputMaybe; PermissionsHeadlessPublishNudges?: InputMaybe; @@ -7561,16 +11248,20 @@ export type PermissionSet_Filter = { PermissionsListEmailSend?: InputMaybe; PermissionsLobbyManagementUserAccess?: InputMaybe; PermissionsLtngPromoReserved01UserPerm?: InputMaybe; + PermissionsMCGSetupUserPerm?: InputMaybe; PermissionsMCPMetadataApi?: InputMaybe; PermissionsManageAccessPolicies?: InputMaybe; PermissionsManageAgentforceServiceAgent?: InputMaybe; PermissionsManageAnalyticSnapshots?: InputMaybe; PermissionsManageApiNamedQueries?: InputMaybe; PermissionsManageAuthProviders?: InputMaybe; + PermissionsManageBriefs?: InputMaybe; PermissionsManageBusinessHourHolidays?: InputMaybe; + PermissionsManageBusinessUnit?: InputMaybe; PermissionsManageC360AConnections?: InputMaybe; PermissionsManageCMS?: InputMaybe; PermissionsManageCallCenters?: InputMaybe; + PermissionsManageCampaigns?: InputMaybe; PermissionsManageCases?: InputMaybe; PermissionsManageCategories?: InputMaybe; PermissionsManageCdpMlModels?: InputMaybe; @@ -7581,19 +11272,26 @@ export type PermissionSet_Filter = { PermissionsManageContentProperties?: InputMaybe; PermissionsManageContentTaxonomy?: InputMaybe; PermissionsManageContentTypes?: InputMaybe; + PermissionsManageCssUsers?: InputMaybe; PermissionsManageCustomDomains?: InputMaybe; PermissionsManageCustomPermissions?: InputMaybe; PermissionsManageCustomReportTypes?: InputMaybe; + PermissionsManageCustomerDataOptOut?: InputMaybe; PermissionsManageDashbdsInPubFolders?: InputMaybe; + PermissionsManageDataAnalyticsGroups?: InputMaybe; PermissionsManageDataCategories?: InputMaybe; PermissionsManageDataIntegrations?: InputMaybe; PermissionsManageDataspaceScope?: InputMaybe; + PermissionsManageDevSandboxes?: InputMaybe; PermissionsManageDynamicDashboards?: InputMaybe; PermissionsManageEmailClientConfig?: InputMaybe; + PermissionsManageEmailContent?: InputMaybe; + PermissionsManageEmailMessagingSetup?: InputMaybe; PermissionsManageExchangeConfig?: InputMaybe; PermissionsManageExternalConnections?: InputMaybe; PermissionsManageFilesAndAttachments?: InputMaybe; PermissionsManageForecastingCustomData?: InputMaybe; + PermissionsManageGlobalPrivacyCenterVO?: InputMaybe; PermissionsManageHealthCheck?: InputMaybe; PermissionsManageHerokuAppLink?: InputMaybe; PermissionsManageHubConnections?: InputMaybe; @@ -7605,11 +11303,15 @@ export type PermissionSet_Filter = { PermissionsManageLoginAccessPolicies?: InputMaybe; PermissionsManageMaliciousFiles?: InputMaybe; PermissionsManageMobile?: InputMaybe; + PermissionsManageMobileAppSecurity?: InputMaybe; + PermissionsManageMyExternalUsers?: InputMaybe; PermissionsManageNamedCredentials?: InputMaybe; PermissionsManageNetworks?: InputMaybe; PermissionsManageOrchInstsAndWorkItems?: InputMaybe; PermissionsManageOrchestrationRuns?: InputMaybe; + PermissionsManagePartners?: InputMaybe; PermissionsManagePasswordPolicies?: InputMaybe; + PermissionsManagePreferenceCenter?: InputMaybe; PermissionsManageProfilesPermissionsets?: InputMaybe; PermissionsManagePropositions?: InputMaybe; PermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -7619,10 +11321,11 @@ export type PermissionSet_Filter = { PermissionsManageRemoteAccess?: InputMaybe; PermissionsManageReportsInPubFolders?: InputMaybe; PermissionsManageRoles?: InputMaybe; + PermissionsManageSMSDomainSetup?: InputMaybe; + PermissionsManageSMSMessagingSetup?: InputMaybe; + PermissionsManageSandboxes?: InputMaybe; PermissionsManageSessionPermissionSets?: InputMaybe; - PermissionsManageSharedListViews?: InputMaybe; PermissionsManageSharing?: InputMaybe; - PermissionsManageSocialPosting?: InputMaybe; PermissionsManageSolutions?: InputMaybe; PermissionsManageSubscriptions?: InputMaybe; PermissionsManageSurveys?: InputMaybe; @@ -7632,12 +11335,16 @@ export type PermissionSet_Filter = { PermissionsManageUnlistedGroups?: InputMaybe; PermissionsManageUsers?: InputMaybe; PermissionsMassInlineEdit?: InputMaybe; - PermissionsMeetingEngagementUser?: InputMaybe; - PermissionsMemberSelfServiceAgentAccess?: InputMaybe; + PermissionsMcScoringRulesConfig?: InputMaybe; PermissionsMergeTopics?: InputMaybe; PermissionsMetadataStudioUser?: InputMaybe; + PermissionsMicrobatching?: InputMaybe; PermissionsMngBenVerfForAssistiveAgnt?: InputMaybe; + PermissionsMobileAppSecurity?: InputMaybe; PermissionsModerateChatter?: InputMaybe; + PermissionsModerateNetworkFeeds?: InputMaybe; + PermissionsModerateNetworkFiles?: InputMaybe; + PermissionsModerateNetworkMessages?: InputMaybe; PermissionsModerateNetworkUsers?: InputMaybe; PermissionsModifyAccessAllowPolicies?: InputMaybe; PermissionsModifyAccessDenyPolicies?: InputMaybe; @@ -7648,19 +11355,27 @@ export type PermissionSet_Filter = { PermissionsMonitorLoginHistory?: InputMaybe; PermissionsNativeWebviewScrolling?: InputMaybe; PermissionsNewReportBuilder?: InputMaybe; + PermissionsOpportunityInfluence?: InputMaybe; + PermissionsOrgPerformanceAccess?: InputMaybe; PermissionsOutboundMigrationToolsUser?: InputMaybe; PermissionsOverrideForecasts?: InputMaybe; + PermissionsPRMChannelMgmtConsoleUser?: InputMaybe; PermissionsPackaging2?: InputMaybe; PermissionsPackaging2Delete?: InputMaybe; PermissionsPasswordNeverExpires?: InputMaybe; + PermissionsPerformanceAnalysisAccess?: InputMaybe; PermissionsPersonalizationDecisioningUser?: InputMaybe; PermissionsPersonalizationIntelUser?: InputMaybe; PermissionsPersonalizationPlatform?: InputMaybe; PermissionsPersonalizedFinanceUserAccess?: InputMaybe; + PermissionsPortalSuperUser?: InputMaybe; PermissionsPreventClassicExperience?: InputMaybe; + PermissionsPreviewTestSendEmail?: InputMaybe; + PermissionsPreviewTestSendSMS?: InputMaybe; PermissionsPrismBackofficeUser?: InputMaybe; PermissionsPrismPlaygroundUser?: InputMaybe; PermissionsPrivacyDataAccess?: InputMaybe; + PermissionsPrmEnhancedPortalUser?: InputMaybe; PermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; PermissionsPublishPackaging?: InputMaybe; PermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -7669,6 +11384,7 @@ export type PermissionSet_Filter = { PermissionsQuipMetricsAccess?: InputMaybe; PermissionsQuipUserEngagementMetrics?: InputMaybe; PermissionsReassignOrchestrationWorkItems?: InputMaybe; + PermissionsRecordVisibilityAPI?: InputMaybe; PermissionsRegrelloUser?: InputMaybe; PermissionsRemoveDirectMessageMembers?: InputMaybe; PermissionsResetPasswords?: InputMaybe; @@ -7682,7 +11398,10 @@ export type PermissionSet_Filter = { PermissionsSelectFilesFromSalesforce?: InputMaybe; PermissionsSendAnnouncementEmails?: InputMaybe; PermissionsSendCustomNotifications?: InputMaybe; + PermissionsSendEmail?: InputMaybe; + PermissionsSendSMS?: InputMaybe; PermissionsSendSitRequests?: InputMaybe; + PermissionsShareFilesWithNetworks?: InputMaybe; PermissionsShowCompanyNameAsUserBadge?: InputMaybe; PermissionsSimpleCsvDataImportUser?: InputMaybe; PermissionsSkipIdentityConfirmation?: InputMaybe; @@ -7702,8 +11421,12 @@ export type PermissionSet_Filter = { PermissionsTransferAnyEntity?: InputMaybe; PermissionsTransferAnyLead?: InputMaybe; PermissionsTwoFactorApi?: InputMaybe; + PermissionsUMAStandaloneUserPerm?: InputMaybe; + PermissionsUMAWebTrackingSetup?: InputMaybe; + PermissionsUmaEditConsentSettings?: InputMaybe; + PermissionsUmaQueryCMSEmailContent?: InputMaybe; + PermissionsUnifiedEHDViewer?: InputMaybe; PermissionsUpdateReportTypeReferences?: InputMaybe; - PermissionsUseAnyApiAuth?: InputMaybe; PermissionsUseAssistantDialog?: InputMaybe; PermissionsUseMySearch?: InputMaybe; PermissionsUseQuerySuggestions?: InputMaybe; @@ -7715,6 +11438,7 @@ export type PermissionSet_Filter = { PermissionsUseTeamsForItSrvcs?: InputMaybe; PermissionsUseWebLink?: InputMaybe; PermissionsUserCanDeployStore?: InputMaybe; + PermissionsUserHasSendToListFilterAccess?: InputMaybe; PermissionsUserInteractionInsights?: InputMaybe; PermissionsViewAccessPolicies?: InputMaybe; PermissionsViewAllActivities?: InputMaybe; @@ -7723,22 +11447,30 @@ export type PermissionSet_Filter = { PermissionsViewAllFieldsGlobal?: InputMaybe; PermissionsViewAllForecasts?: InputMaybe; PermissionsViewAllForeignKeyNames?: InputMaybe; + PermissionsViewAllNonSetupFlows?: InputMaybe; PermissionsViewAllPolicyCenterPolicies?: InputMaybe; PermissionsViewAllProfiles?: InputMaybe; PermissionsViewAllUsers?: InputMaybe; PermissionsViewApiNamedQueries?: InputMaybe; + PermissionsViewBusinessUnit?: InputMaybe; PermissionsViewClientSecret?: InputMaybe; PermissionsViewContent?: InputMaybe; PermissionsViewContentTaxonomy?: InputMaybe; + PermissionsViewCustomerSentiment?: InputMaybe; PermissionsViewDataAssessment?: InputMaybe; PermissionsViewDataCategories?: InputMaybe; PermissionsViewDeveloperName?: InputMaybe; + PermissionsViewEmailMessagingSetup?: InputMaybe; PermissionsViewEncryptedData?: InputMaybe; PermissionsViewEventLogFiles?: InputMaybe; + PermissionsViewGlobalHeader?: InputMaybe; PermissionsViewHealthCheck?: InputMaybe; PermissionsViewHelpLink?: InputMaybe; PermissionsViewLicenseUtilization?: InputMaybe; + PermissionsViewMLModels?: InputMaybe; PermissionsViewMyTeamsDashboards?: InputMaybe; + PermissionsViewNonSetupFlow?: InputMaybe; + PermissionsViewOnlyEmbeddedAppUser?: InputMaybe; PermissionsViewOrchestrationsInAutomApp?: InputMaybe; PermissionsViewPrivateStaticResources?: InputMaybe; PermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -7747,8 +11479,10 @@ export type PermissionSet_Filter = { PermissionsViewRecommendations?: InputMaybe; PermissionsViewRestrictionAndScopingRules?: InputMaybe; PermissionsViewRoles?: InputMaybe; + PermissionsViewSMSMessagingSetup?: InputMaybe; PermissionsViewSetup?: InputMaybe; PermissionsViewTrustMeasures?: InputMaybe; + PermissionsViewUMACalendar?: InputMaybe; PermissionsViewUserPII?: InputMaybe; PermissionsYourAccountCDAPublishEvents?: InputMaybe; Profile?: InputMaybe; @@ -7766,6 +11500,285 @@ export type PermissionSet_License_Filters = { PermissionSetLicense?: InputMaybe; }; +export type PersnlBatchDecision_Filter = { + ActivationTriggerType?: InputMaybe; + BatchStatus?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + ErrorCode?: InputMaybe; + Id?: InputMaybe; + InputDataModelObjectId?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefresh?: InputMaybe; + LastSuccessfulRefresh?: InputMaybe; + LastViewedDate?: InputMaybe; + LatestRefreshedStatus?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentId?: InputMaybe; + ModelRevision?: InputMaybe; + ModelVersion?: InputMaybe; + Name?: InputMaybe; + OutputDataModelObjectId?: InputMaybe; + RefreshMode?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersnlContextVariable_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationDataType?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersnlExperience_Filter = { + Channel?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataProvider?: InputMaybe; + DataProviderId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + DisplayLocation?: InputMaybe; + ElementClickPath?: InputMaybe; + ElementClickTag?: InputMaybe; + EngagementDestination?: InputMaybe; + ExitIntentDelay?: InputMaybe; + GroupDataRetrievalBy?: InputMaybe; + GroupDataRetrievalById?: InputMaybe; + Id?: InputMaybe; + IsAllowedToRenderIfEmpty?: InputMaybe; + IsDeleted?: InputMaybe; + IsEnabled?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PublishedDate?: InputMaybe; + ScrollPercentValue?: InputMaybe; + StreamingAppDataConnectorId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetMethodType?: InputMaybe; + WhenToTransform?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersnlTransformer_Filter = { + Category?: InputMaybe; + Channel?: InputMaybe; + ComponentName?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Html?: InputMaybe; + Id?: InputMaybe; + IsAutoEngmntAttrsDisabled?: InputMaybe; + IsDeleted?: InputMaybe; + IsEnabled?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationSchema?: InputMaybe; + PersonalizationSchemaId?: InputMaybe; + PublishedDate?: InputMaybe; + Script?: InputMaybe; + SystemModstamp?: InputMaybe; + TransformerType?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationDecision_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationPoint?: InputMaybe; + PersonalizationPointId?: InputMaybe; + Personalizer?: InputMaybe; + PersonalizerId?: InputMaybe; + Priority?: InputMaybe; + State?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationObjective_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationPoint_Filter = { + AbnExperiment?: InputMaybe; + AbnExperimentId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsAuthenticationRequired?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + MaxItemsCount?: InputMaybe; + Name?: InputMaybe; + PersonalizationSchema?: InputMaybe; + PersonalizationSchemaEnum?: InputMaybe; + PersonalizationSchemaId?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + RootPersonalizationPoint?: InputMaybe; + Source?: InputMaybe; + SourceRecord?: InputMaybe; + SourceRecordId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationPoint_SourceRecord_Filters = { + FlowRecordElement?: InputMaybe; + ManagedContent?: InputMaybe; + Name?: InputMaybe; +}; + +export type PersonalizationRecommender_Filter = { + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Goal?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + ItemDataGraph?: InputMaybe; + ItemDataGraphId?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefresh?: InputMaybe; + LastSuccessfulRefresh?: InputMaybe; + LastViewedDate?: InputMaybe; + LatestRefreshedStatus?: InputMaybe; + Name?: InputMaybe; + Objective?: InputMaybe; + ObjectiveId?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationSchema_Filter = { + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationType?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type PhoneNumberOperators = { eq?: InputMaybe; gt?: InputMaybe; @@ -7899,6 +11912,7 @@ export type ProcessDefinition_Filter = { export type ProcessException_AttachedTo_Filters = { Agent__c?: InputMaybe; Application__c?: InputMaybe; + AsyncOperationTracker?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lease__c?: InputMaybe; Maintenance_Request__c?: InputMaybe; @@ -7932,6 +11946,8 @@ export type ProcessException_Filter = { CreatedDate?: InputMaybe; Description?: InputMaybe; ExternalReference?: InputMaybe; + GroupBy?: InputMaybe; + GroupById?: InputMaybe; Id?: InputMaybe; IsDeleted?: InputMaybe; LastModifiedBy?: InputMaybe; @@ -7990,6 +12006,7 @@ export type ProcessInstance_Filter = { export type ProcessInstance_TargetObject_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -7999,13 +12016,18 @@ export type ProcessInstance_TargetObject_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -8018,17 +12040,38 @@ export type ProcessInstance_TargetObject_Filters = { ContactPointTypeConsent?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; FlowOrchestrationWorkItem?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -8037,11 +12080,20 @@ export type ProcessInstance_TargetObject_Filters = { LocationTrustMeasure?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; OrgMetricScanSummary?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -8057,10 +12109,11 @@ export type ProcessInstance_TargetObject_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; + Prospect?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; TableauHostMapping?: InputMaybe; @@ -8258,12 +12311,18 @@ export type Profile_Filter = { LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; Name?: InputMaybe; - PermissionsAcceptInboundBundling?: InputMaybe; + PermissionsAICreateInsightObjects?: InputMaybe; + PermissionsAIViewInsightObjects?: InputMaybe; PermissionsAccessBankingRelationshipAssistance?: InputMaybe; PermissionsAccessBankingServiceAgent?: InputMaybe; PermissionsAccessCMC?: InputMaybe; + PermissionsAccessCdpApp?: InputMaybe; + PermissionsAccessCdpDataExplorer?: InputMaybe; + PermissionsAccessCdpProfileExplorer?: InputMaybe; PermissionsAccessContentBuilder?: InputMaybe; + PermissionsAccessCustomerDataCloudSetup?: InputMaybe; PermissionsAccessDisputePrompts?: InputMaybe; + PermissionsAccessKnowledgeSpace?: InputMaybe; PermissionsAccessOrchestrationObjects?: InputMaybe; PermissionsAccessPolicyAgent?: InputMaybe; PermissionsAccessServiceEinstein?: InputMaybe; @@ -8275,10 +12334,23 @@ export type Profile_Filter = { PermissionsAccessWealthAdvisorAgent?: InputMaybe; PermissionsAccountSwitcherUser?: InputMaybe; PermissionsActivateContract?: InputMaybe; + PermissionsActivateDeactivateNonSetupFlow?: InputMaybe; PermissionsActivateOrder?: InputMaybe; PermissionsActivateSystemModeFlows?: InputMaybe; PermissionsActivitiesAccess?: InputMaybe; + PermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + PermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; PermissionsAddDirectMessageMembers?: InputMaybe; + PermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + PermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + PermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + PermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddWaitToNonSetupFlow?: InputMaybe; PermissionsAdvancedCsvDataImportUser?: InputMaybe; PermissionsAgentforceServiceAgentUser?: InputMaybe; PermissionsAllowEmailIC?: InputMaybe; @@ -8305,7 +12377,9 @@ export type Profile_Filter = { PermissionsCanApproveUninstalledApps?: InputMaybe; PermissionsCanDoActAsUser?: InputMaybe; PermissionsCanEditPrompts?: InputMaybe; + PermissionsCanExitFlowViaAPI?: InputMaybe; PermissionsCanInsertFeedSystemFields?: InputMaybe; + PermissionsCanMarketingUserDebugFlow?: InputMaybe; PermissionsCanTranslateScrt2Conversation?: InputMaybe; PermissionsCanUpdateEmailMessage?: InputMaybe; PermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -8314,6 +12388,7 @@ export type Profile_Filter = { PermissionsCdcReportingCreateReports?: InputMaybe; PermissionsCdcReportingManageFolders?: InputMaybe; PermissionsCdcReportingViewReports?: InputMaybe; + PermissionsCdpConnectionManagementUser?: InputMaybe; PermissionsChangeDashboardColors?: InputMaybe; PermissionsChatterComposeUiCodesnippet?: InputMaybe; PermissionsChatterEditOwnPost?: InputMaybe; @@ -8324,20 +12399,30 @@ export type Profile_Filter = { PermissionsChatterOwnGroups?: InputMaybe; PermissionsClientSecretRotation?: InputMaybe; PermissionsCloseConversations?: InputMaybe; + PermissionsCodeBuilderUser?: InputMaybe; PermissionsConfigCustomRecs?: InputMaybe; PermissionsConfigureDataspaceScope?: InputMaybe; PermissionsConnectOrgToEnvironmentHub?: InputMaybe; PermissionsConsentApiUpdate?: InputMaybe; + PermissionsConsentBannerSettingsSetup?: InputMaybe; PermissionsContentAdministrator?: InputMaybe; PermissionsContentHubUser?: InputMaybe; PermissionsContentWorkspaces?: InputMaybe; PermissionsConvertLeads?: InputMaybe; + PermissionsCosellAuthSetupUser?: InputMaybe; + PermissionsCosellExportUser?: InputMaybe; PermissionsCreateCustomizeDashboards?: InputMaybe; PermissionsCreateCustomizeFilters?: InputMaybe; PermissionsCreateCustomizeReports?: InputMaybe; PermissionsCreateDashboardFolders?: InputMaybe; + PermissionsCreateEditNonSetupFlow?: InputMaybe; PermissionsCreateLtngTempFolder?: InputMaybe; PermissionsCreateLtngTempInPub?: InputMaybe; + PermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + PermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + PermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; PermissionsCreateMultiforce?: InputMaybe; PermissionsCreateReportFolders?: InputMaybe; PermissionsCreateReportInLightning?: InputMaybe; @@ -8349,9 +12434,11 @@ export type Profile_Filter = { PermissionsCustomSidebarOnAllPages?: InputMaybe; PermissionsCustomizeApplication?: InputMaybe; PermissionsDataExport?: InputMaybe; + PermissionsDelegatedPortalUserAdmin?: InputMaybe; PermissionsDelegatedTwoFactor?: InputMaybe; PermissionsDeleteActivatedContract?: InputMaybe; PermissionsDeleteCrMemoAndInvoice?: InputMaybe; + PermissionsDeleteNonSetupFlow?: InputMaybe; PermissionsDeleteSalesforceFiles?: InputMaybe; PermissionsDeleteTopics?: InputMaybe; PermissionsDigitalLendingAdminUser?: InputMaybe; @@ -8376,6 +12463,7 @@ export type Profile_Filter = { PermissionsEditReadonlyFields?: InputMaybe; PermissionsEditTask?: InputMaybe; PermissionsEditTopics?: InputMaybe; + PermissionsEinsteinMetadataUserAccess?: InputMaybe; PermissionsEmailAdministration?: InputMaybe; PermissionsEmailMass?: InputMaybe; PermissionsEmailSingle?: InputMaybe; @@ -8397,7 +12485,6 @@ export type Profile_Filter = { PermissionsFreezeUsers?: InputMaybe; PermissionsGiveRecognitionBadge?: InputMaybe; PermissionsGovernNetworks?: InputMaybe; - PermissionsGrantOutboundBundling?: InputMaybe; PermissionsHasUnlimitedNBAExecutions?: InputMaybe; PermissionsHeadlessCMSAccess?: InputMaybe; PermissionsHeadlessPublishNudges?: InputMaybe; @@ -8422,16 +12509,20 @@ export type Profile_Filter = { PermissionsListEmailSend?: InputMaybe; PermissionsLobbyManagementUserAccess?: InputMaybe; PermissionsLtngPromoReserved01UserPerm?: InputMaybe; + PermissionsMCGSetupUserPerm?: InputMaybe; PermissionsMCPMetadataApi?: InputMaybe; PermissionsManageAccessPolicies?: InputMaybe; PermissionsManageAgentforceServiceAgent?: InputMaybe; PermissionsManageAnalyticSnapshots?: InputMaybe; PermissionsManageApiNamedQueries?: InputMaybe; PermissionsManageAuthProviders?: InputMaybe; + PermissionsManageBriefs?: InputMaybe; PermissionsManageBusinessHourHolidays?: InputMaybe; + PermissionsManageBusinessUnit?: InputMaybe; PermissionsManageC360AConnections?: InputMaybe; PermissionsManageCMS?: InputMaybe; PermissionsManageCallCenters?: InputMaybe; + PermissionsManageCampaigns?: InputMaybe; PermissionsManageCases?: InputMaybe; PermissionsManageCategories?: InputMaybe; PermissionsManageCdpMlModels?: InputMaybe; @@ -8442,19 +12533,26 @@ export type Profile_Filter = { PermissionsManageContentProperties?: InputMaybe; PermissionsManageContentTaxonomy?: InputMaybe; PermissionsManageContentTypes?: InputMaybe; + PermissionsManageCssUsers?: InputMaybe; PermissionsManageCustomDomains?: InputMaybe; PermissionsManageCustomPermissions?: InputMaybe; PermissionsManageCustomReportTypes?: InputMaybe; + PermissionsManageCustomerDataOptOut?: InputMaybe; PermissionsManageDashbdsInPubFolders?: InputMaybe; + PermissionsManageDataAnalyticsGroups?: InputMaybe; PermissionsManageDataCategories?: InputMaybe; PermissionsManageDataIntegrations?: InputMaybe; PermissionsManageDataspaceScope?: InputMaybe; + PermissionsManageDevSandboxes?: InputMaybe; PermissionsManageDynamicDashboards?: InputMaybe; PermissionsManageEmailClientConfig?: InputMaybe; + PermissionsManageEmailContent?: InputMaybe; + PermissionsManageEmailMessagingSetup?: InputMaybe; PermissionsManageExchangeConfig?: InputMaybe; PermissionsManageExternalConnections?: InputMaybe; PermissionsManageFilesAndAttachments?: InputMaybe; PermissionsManageForecastingCustomData?: InputMaybe; + PermissionsManageGlobalPrivacyCenterVO?: InputMaybe; PermissionsManageHealthCheck?: InputMaybe; PermissionsManageHerokuAppLink?: InputMaybe; PermissionsManageHubConnections?: InputMaybe; @@ -8466,11 +12564,15 @@ export type Profile_Filter = { PermissionsManageLoginAccessPolicies?: InputMaybe; PermissionsManageMaliciousFiles?: InputMaybe; PermissionsManageMobile?: InputMaybe; + PermissionsManageMobileAppSecurity?: InputMaybe; + PermissionsManageMyExternalUsers?: InputMaybe; PermissionsManageNamedCredentials?: InputMaybe; PermissionsManageNetworks?: InputMaybe; PermissionsManageOrchInstsAndWorkItems?: InputMaybe; PermissionsManageOrchestrationRuns?: InputMaybe; + PermissionsManagePartners?: InputMaybe; PermissionsManagePasswordPolicies?: InputMaybe; + PermissionsManagePreferenceCenter?: InputMaybe; PermissionsManageProfilesPermissionsets?: InputMaybe; PermissionsManagePropositions?: InputMaybe; PermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -8480,10 +12582,11 @@ export type Profile_Filter = { PermissionsManageRemoteAccess?: InputMaybe; PermissionsManageReportsInPubFolders?: InputMaybe; PermissionsManageRoles?: InputMaybe; + PermissionsManageSMSDomainSetup?: InputMaybe; + PermissionsManageSMSMessagingSetup?: InputMaybe; + PermissionsManageSandboxes?: InputMaybe; PermissionsManageSessionPermissionSets?: InputMaybe; - PermissionsManageSharedListViews?: InputMaybe; PermissionsManageSharing?: InputMaybe; - PermissionsManageSocialPosting?: InputMaybe; PermissionsManageSolutions?: InputMaybe; PermissionsManageSubscriptions?: InputMaybe; PermissionsManageSurveys?: InputMaybe; @@ -8493,12 +12596,16 @@ export type Profile_Filter = { PermissionsManageUnlistedGroups?: InputMaybe; PermissionsManageUsers?: InputMaybe; PermissionsMassInlineEdit?: InputMaybe; - PermissionsMeetingEngagementUser?: InputMaybe; - PermissionsMemberSelfServiceAgentAccess?: InputMaybe; + PermissionsMcScoringRulesConfig?: InputMaybe; PermissionsMergeTopics?: InputMaybe; PermissionsMetadataStudioUser?: InputMaybe; + PermissionsMicrobatching?: InputMaybe; PermissionsMngBenVerfForAssistiveAgnt?: InputMaybe; + PermissionsMobileAppSecurity?: InputMaybe; PermissionsModerateChatter?: InputMaybe; + PermissionsModerateNetworkFeeds?: InputMaybe; + PermissionsModerateNetworkFiles?: InputMaybe; + PermissionsModerateNetworkMessages?: InputMaybe; PermissionsModerateNetworkUsers?: InputMaybe; PermissionsModifyAccessAllowPolicies?: InputMaybe; PermissionsModifyAccessDenyPolicies?: InputMaybe; @@ -8509,19 +12616,27 @@ export type Profile_Filter = { PermissionsMonitorLoginHistory?: InputMaybe; PermissionsNativeWebviewScrolling?: InputMaybe; PermissionsNewReportBuilder?: InputMaybe; + PermissionsOpportunityInfluence?: InputMaybe; + PermissionsOrgPerformanceAccess?: InputMaybe; PermissionsOutboundMigrationToolsUser?: InputMaybe; PermissionsOverrideForecasts?: InputMaybe; + PermissionsPRMChannelMgmtConsoleUser?: InputMaybe; PermissionsPackaging2?: InputMaybe; PermissionsPackaging2Delete?: InputMaybe; PermissionsPasswordNeverExpires?: InputMaybe; + PermissionsPerformanceAnalysisAccess?: InputMaybe; PermissionsPersonalizationDecisioningUser?: InputMaybe; PermissionsPersonalizationIntelUser?: InputMaybe; PermissionsPersonalizationPlatform?: InputMaybe; PermissionsPersonalizedFinanceUserAccess?: InputMaybe; + PermissionsPortalSuperUser?: InputMaybe; PermissionsPreventClassicExperience?: InputMaybe; + PermissionsPreviewTestSendEmail?: InputMaybe; + PermissionsPreviewTestSendSMS?: InputMaybe; PermissionsPrismBackofficeUser?: InputMaybe; PermissionsPrismPlaygroundUser?: InputMaybe; PermissionsPrivacyDataAccess?: InputMaybe; + PermissionsPrmEnhancedPortalUser?: InputMaybe; PermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; PermissionsPublishMultiforce?: InputMaybe; PermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -8530,6 +12645,7 @@ export type Profile_Filter = { PermissionsQuipMetricsAccess?: InputMaybe; PermissionsQuipUserEngagementMetrics?: InputMaybe; PermissionsReassignOrchestrationWorkItems?: InputMaybe; + PermissionsRecordVisibilityAPI?: InputMaybe; PermissionsRegrelloUser?: InputMaybe; PermissionsRemoveDirectMessageMembers?: InputMaybe; PermissionsResetPasswords?: InputMaybe; @@ -8543,7 +12659,10 @@ export type Profile_Filter = { PermissionsSelectFilesFromSalesforce?: InputMaybe; PermissionsSendAnnouncementEmails?: InputMaybe; PermissionsSendCustomNotifications?: InputMaybe; + PermissionsSendEmail?: InputMaybe; + PermissionsSendSMS?: InputMaybe; PermissionsSendSitRequests?: InputMaybe; + PermissionsShareFilesWithNetworks?: InputMaybe; PermissionsShowCompanyNameAsUserBadge?: InputMaybe; PermissionsSimpleCsvDataImportUser?: InputMaybe; PermissionsSkipIdentityConfirmation?: InputMaybe; @@ -8563,8 +12682,12 @@ export type Profile_Filter = { PermissionsTransferAnyEntity?: InputMaybe; PermissionsTransferAnyLead?: InputMaybe; PermissionsTwoFactorApi?: InputMaybe; + PermissionsUMAStandaloneUserPerm?: InputMaybe; + PermissionsUMAWebTrackingSetup?: InputMaybe; + PermissionsUmaEditConsentSettings?: InputMaybe; + PermissionsUmaQueryCMSEmailContent?: InputMaybe; + PermissionsUnifiedEHDViewer?: InputMaybe; PermissionsUpdateReportTypeReferences?: InputMaybe; - PermissionsUseAnyApiAuth?: InputMaybe; PermissionsUseAssistantDialog?: InputMaybe; PermissionsUseMySearch?: InputMaybe; PermissionsUseQuerySuggestions?: InputMaybe; @@ -8576,6 +12699,7 @@ export type Profile_Filter = { PermissionsUseTeamsForItSrvcs?: InputMaybe; PermissionsUseWebLink?: InputMaybe; PermissionsUserCanDeployStore?: InputMaybe; + PermissionsUserHasSendToListFilterAccess?: InputMaybe; PermissionsUserInteractionInsights?: InputMaybe; PermissionsViewAccessPolicies?: InputMaybe; PermissionsViewAllActivities?: InputMaybe; @@ -8584,22 +12708,30 @@ export type Profile_Filter = { PermissionsViewAllFieldsGlobal?: InputMaybe; PermissionsViewAllForecasts?: InputMaybe; PermissionsViewAllForeignKeyNames?: InputMaybe; + PermissionsViewAllNonSetupFlows?: InputMaybe; PermissionsViewAllPolicyCenterPolicies?: InputMaybe; PermissionsViewAllProfiles?: InputMaybe; PermissionsViewAllUsers?: InputMaybe; PermissionsViewApiNamedQueries?: InputMaybe; + PermissionsViewBusinessUnit?: InputMaybe; PermissionsViewClientSecret?: InputMaybe; PermissionsViewContent?: InputMaybe; PermissionsViewContentTaxonomy?: InputMaybe; + PermissionsViewCustomerSentiment?: InputMaybe; PermissionsViewDataAssessment?: InputMaybe; PermissionsViewDataCategories?: InputMaybe; PermissionsViewDeveloperName?: InputMaybe; + PermissionsViewEmailMessagingSetup?: InputMaybe; PermissionsViewEncryptedData?: InputMaybe; PermissionsViewEventLogFiles?: InputMaybe; + PermissionsViewGlobalHeader?: InputMaybe; PermissionsViewHealthCheck?: InputMaybe; PermissionsViewHelpLink?: InputMaybe; PermissionsViewLicenseUtilization?: InputMaybe; + PermissionsViewMLModels?: InputMaybe; PermissionsViewMyTeamsDashboards?: InputMaybe; + PermissionsViewNonSetupFlow?: InputMaybe; + PermissionsViewOnlyEmbeddedAppUser?: InputMaybe; PermissionsViewOrchestrationsInAutomApp?: InputMaybe; PermissionsViewPrivateStaticResources?: InputMaybe; PermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -8608,8 +12740,10 @@ export type Profile_Filter = { PermissionsViewRecommendations?: InputMaybe; PermissionsViewRestrictionAndScopingRules?: InputMaybe; PermissionsViewRoles?: InputMaybe; + PermissionsViewSMSMessagingSetup?: InputMaybe; PermissionsViewSetup?: InputMaybe; PermissionsViewTrustMeasures?: InputMaybe; + PermissionsViewUMACalendar?: InputMaybe; PermissionsViewUserPII?: InputMaybe; PermissionsYourAccountCDAPublishEvents?: InputMaybe; SharingType?: InputMaybe; @@ -8636,12 +12770,18 @@ export type Profile_OrderBy = { LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; Name?: InputMaybe; - PermissionsAcceptInboundBundling?: InputMaybe; + PermissionsAICreateInsightObjects?: InputMaybe; + PermissionsAIViewInsightObjects?: InputMaybe; PermissionsAccessBankingRelationshipAssistance?: InputMaybe; PermissionsAccessBankingServiceAgent?: InputMaybe; PermissionsAccessCMC?: InputMaybe; + PermissionsAccessCdpApp?: InputMaybe; + PermissionsAccessCdpDataExplorer?: InputMaybe; + PermissionsAccessCdpProfileExplorer?: InputMaybe; PermissionsAccessContentBuilder?: InputMaybe; + PermissionsAccessCustomerDataCloudSetup?: InputMaybe; PermissionsAccessDisputePrompts?: InputMaybe; + PermissionsAccessKnowledgeSpace?: InputMaybe; PermissionsAccessOrchestrationObjects?: InputMaybe; PermissionsAccessPolicyAgent?: InputMaybe; PermissionsAccessServiceEinstein?: InputMaybe; @@ -8653,10 +12793,23 @@ export type Profile_OrderBy = { PermissionsAccessWealthAdvisorAgent?: InputMaybe; PermissionsAccountSwitcherUser?: InputMaybe; PermissionsActivateContract?: InputMaybe; + PermissionsActivateDeactivateNonSetupFlow?: InputMaybe; PermissionsActivateOrder?: InputMaybe; PermissionsActivateSystemModeFlows?: InputMaybe; PermissionsActivitiesAccess?: InputMaybe; + PermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + PermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; PermissionsAddDirectMessageMembers?: InputMaybe; + PermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + PermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + PermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + PermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddWaitToNonSetupFlow?: InputMaybe; PermissionsAdvancedCsvDataImportUser?: InputMaybe; PermissionsAgentforceServiceAgentUser?: InputMaybe; PermissionsAllowEmailIC?: InputMaybe; @@ -8683,7 +12836,9 @@ export type Profile_OrderBy = { PermissionsCanApproveUninstalledApps?: InputMaybe; PermissionsCanDoActAsUser?: InputMaybe; PermissionsCanEditPrompts?: InputMaybe; + PermissionsCanExitFlowViaAPI?: InputMaybe; PermissionsCanInsertFeedSystemFields?: InputMaybe; + PermissionsCanMarketingUserDebugFlow?: InputMaybe; PermissionsCanTranslateScrt2Conversation?: InputMaybe; PermissionsCanUpdateEmailMessage?: InputMaybe; PermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -8692,6 +12847,7 @@ export type Profile_OrderBy = { PermissionsCdcReportingCreateReports?: InputMaybe; PermissionsCdcReportingManageFolders?: InputMaybe; PermissionsCdcReportingViewReports?: InputMaybe; + PermissionsCdpConnectionManagementUser?: InputMaybe; PermissionsChangeDashboardColors?: InputMaybe; PermissionsChatterComposeUiCodesnippet?: InputMaybe; PermissionsChatterEditOwnPost?: InputMaybe; @@ -8702,20 +12858,30 @@ export type Profile_OrderBy = { PermissionsChatterOwnGroups?: InputMaybe; PermissionsClientSecretRotation?: InputMaybe; PermissionsCloseConversations?: InputMaybe; + PermissionsCodeBuilderUser?: InputMaybe; PermissionsConfigCustomRecs?: InputMaybe; PermissionsConfigureDataspaceScope?: InputMaybe; PermissionsConnectOrgToEnvironmentHub?: InputMaybe; PermissionsConsentApiUpdate?: InputMaybe; + PermissionsConsentBannerSettingsSetup?: InputMaybe; PermissionsContentAdministrator?: InputMaybe; PermissionsContentHubUser?: InputMaybe; PermissionsContentWorkspaces?: InputMaybe; PermissionsConvertLeads?: InputMaybe; + PermissionsCosellAuthSetupUser?: InputMaybe; + PermissionsCosellExportUser?: InputMaybe; PermissionsCreateCustomizeDashboards?: InputMaybe; PermissionsCreateCustomizeFilters?: InputMaybe; PermissionsCreateCustomizeReports?: InputMaybe; PermissionsCreateDashboardFolders?: InputMaybe; + PermissionsCreateEditNonSetupFlow?: InputMaybe; PermissionsCreateLtngTempFolder?: InputMaybe; PermissionsCreateLtngTempInPub?: InputMaybe; + PermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + PermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + PermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; PermissionsCreateMultiforce?: InputMaybe; PermissionsCreateReportFolders?: InputMaybe; PermissionsCreateReportInLightning?: InputMaybe; @@ -8727,9 +12893,11 @@ export type Profile_OrderBy = { PermissionsCustomSidebarOnAllPages?: InputMaybe; PermissionsCustomizeApplication?: InputMaybe; PermissionsDataExport?: InputMaybe; + PermissionsDelegatedPortalUserAdmin?: InputMaybe; PermissionsDelegatedTwoFactor?: InputMaybe; PermissionsDeleteActivatedContract?: InputMaybe; PermissionsDeleteCrMemoAndInvoice?: InputMaybe; + PermissionsDeleteNonSetupFlow?: InputMaybe; PermissionsDeleteSalesforceFiles?: InputMaybe; PermissionsDeleteTopics?: InputMaybe; PermissionsDigitalLendingAdminUser?: InputMaybe; @@ -8754,6 +12922,7 @@ export type Profile_OrderBy = { PermissionsEditReadonlyFields?: InputMaybe; PermissionsEditTask?: InputMaybe; PermissionsEditTopics?: InputMaybe; + PermissionsEinsteinMetadataUserAccess?: InputMaybe; PermissionsEmailAdministration?: InputMaybe; PermissionsEmailMass?: InputMaybe; PermissionsEmailSingle?: InputMaybe; @@ -8775,7 +12944,6 @@ export type Profile_OrderBy = { PermissionsFreezeUsers?: InputMaybe; PermissionsGiveRecognitionBadge?: InputMaybe; PermissionsGovernNetworks?: InputMaybe; - PermissionsGrantOutboundBundling?: InputMaybe; PermissionsHasUnlimitedNBAExecutions?: InputMaybe; PermissionsHeadlessCMSAccess?: InputMaybe; PermissionsHeadlessPublishNudges?: InputMaybe; @@ -8800,16 +12968,20 @@ export type Profile_OrderBy = { PermissionsListEmailSend?: InputMaybe; PermissionsLobbyManagementUserAccess?: InputMaybe; PermissionsLtngPromoReserved01UserPerm?: InputMaybe; + PermissionsMCGSetupUserPerm?: InputMaybe; PermissionsMCPMetadataApi?: InputMaybe; PermissionsManageAccessPolicies?: InputMaybe; PermissionsManageAgentforceServiceAgent?: InputMaybe; PermissionsManageAnalyticSnapshots?: InputMaybe; PermissionsManageApiNamedQueries?: InputMaybe; PermissionsManageAuthProviders?: InputMaybe; + PermissionsManageBriefs?: InputMaybe; PermissionsManageBusinessHourHolidays?: InputMaybe; + PermissionsManageBusinessUnit?: InputMaybe; PermissionsManageC360AConnections?: InputMaybe; PermissionsManageCMS?: InputMaybe; PermissionsManageCallCenters?: InputMaybe; + PermissionsManageCampaigns?: InputMaybe; PermissionsManageCases?: InputMaybe; PermissionsManageCategories?: InputMaybe; PermissionsManageCdpMlModels?: InputMaybe; @@ -8820,19 +12992,26 @@ export type Profile_OrderBy = { PermissionsManageContentProperties?: InputMaybe; PermissionsManageContentTaxonomy?: InputMaybe; PermissionsManageContentTypes?: InputMaybe; + PermissionsManageCssUsers?: InputMaybe; PermissionsManageCustomDomains?: InputMaybe; PermissionsManageCustomPermissions?: InputMaybe; PermissionsManageCustomReportTypes?: InputMaybe; + PermissionsManageCustomerDataOptOut?: InputMaybe; PermissionsManageDashbdsInPubFolders?: InputMaybe; + PermissionsManageDataAnalyticsGroups?: InputMaybe; PermissionsManageDataCategories?: InputMaybe; PermissionsManageDataIntegrations?: InputMaybe; PermissionsManageDataspaceScope?: InputMaybe; + PermissionsManageDevSandboxes?: InputMaybe; PermissionsManageDynamicDashboards?: InputMaybe; PermissionsManageEmailClientConfig?: InputMaybe; + PermissionsManageEmailContent?: InputMaybe; + PermissionsManageEmailMessagingSetup?: InputMaybe; PermissionsManageExchangeConfig?: InputMaybe; PermissionsManageExternalConnections?: InputMaybe; PermissionsManageFilesAndAttachments?: InputMaybe; PermissionsManageForecastingCustomData?: InputMaybe; + PermissionsManageGlobalPrivacyCenterVO?: InputMaybe; PermissionsManageHealthCheck?: InputMaybe; PermissionsManageHerokuAppLink?: InputMaybe; PermissionsManageHubConnections?: InputMaybe; @@ -8844,11 +13023,15 @@ export type Profile_OrderBy = { PermissionsManageLoginAccessPolicies?: InputMaybe; PermissionsManageMaliciousFiles?: InputMaybe; PermissionsManageMobile?: InputMaybe; + PermissionsManageMobileAppSecurity?: InputMaybe; + PermissionsManageMyExternalUsers?: InputMaybe; PermissionsManageNamedCredentials?: InputMaybe; PermissionsManageNetworks?: InputMaybe; PermissionsManageOrchInstsAndWorkItems?: InputMaybe; PermissionsManageOrchestrationRuns?: InputMaybe; + PermissionsManagePartners?: InputMaybe; PermissionsManagePasswordPolicies?: InputMaybe; + PermissionsManagePreferenceCenter?: InputMaybe; PermissionsManageProfilesPermissionsets?: InputMaybe; PermissionsManagePropositions?: InputMaybe; PermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -8858,10 +13041,11 @@ export type Profile_OrderBy = { PermissionsManageRemoteAccess?: InputMaybe; PermissionsManageReportsInPubFolders?: InputMaybe; PermissionsManageRoles?: InputMaybe; + PermissionsManageSMSDomainSetup?: InputMaybe; + PermissionsManageSMSMessagingSetup?: InputMaybe; + PermissionsManageSandboxes?: InputMaybe; PermissionsManageSessionPermissionSets?: InputMaybe; - PermissionsManageSharedListViews?: InputMaybe; PermissionsManageSharing?: InputMaybe; - PermissionsManageSocialPosting?: InputMaybe; PermissionsManageSolutions?: InputMaybe; PermissionsManageSubscriptions?: InputMaybe; PermissionsManageSurveys?: InputMaybe; @@ -8871,12 +13055,16 @@ export type Profile_OrderBy = { PermissionsManageUnlistedGroups?: InputMaybe; PermissionsManageUsers?: InputMaybe; PermissionsMassInlineEdit?: InputMaybe; - PermissionsMeetingEngagementUser?: InputMaybe; - PermissionsMemberSelfServiceAgentAccess?: InputMaybe; + PermissionsMcScoringRulesConfig?: InputMaybe; PermissionsMergeTopics?: InputMaybe; PermissionsMetadataStudioUser?: InputMaybe; + PermissionsMicrobatching?: InputMaybe; PermissionsMngBenVerfForAssistiveAgnt?: InputMaybe; + PermissionsMobileAppSecurity?: InputMaybe; PermissionsModerateChatter?: InputMaybe; + PermissionsModerateNetworkFeeds?: InputMaybe; + PermissionsModerateNetworkFiles?: InputMaybe; + PermissionsModerateNetworkMessages?: InputMaybe; PermissionsModerateNetworkUsers?: InputMaybe; PermissionsModifyAccessAllowPolicies?: InputMaybe; PermissionsModifyAccessDenyPolicies?: InputMaybe; @@ -8887,19 +13075,27 @@ export type Profile_OrderBy = { PermissionsMonitorLoginHistory?: InputMaybe; PermissionsNativeWebviewScrolling?: InputMaybe; PermissionsNewReportBuilder?: InputMaybe; + PermissionsOpportunityInfluence?: InputMaybe; + PermissionsOrgPerformanceAccess?: InputMaybe; PermissionsOutboundMigrationToolsUser?: InputMaybe; PermissionsOverrideForecasts?: InputMaybe; + PermissionsPRMChannelMgmtConsoleUser?: InputMaybe; PermissionsPackaging2?: InputMaybe; PermissionsPackaging2Delete?: InputMaybe; PermissionsPasswordNeverExpires?: InputMaybe; + PermissionsPerformanceAnalysisAccess?: InputMaybe; PermissionsPersonalizationDecisioningUser?: InputMaybe; PermissionsPersonalizationIntelUser?: InputMaybe; PermissionsPersonalizationPlatform?: InputMaybe; PermissionsPersonalizedFinanceUserAccess?: InputMaybe; + PermissionsPortalSuperUser?: InputMaybe; PermissionsPreventClassicExperience?: InputMaybe; + PermissionsPreviewTestSendEmail?: InputMaybe; + PermissionsPreviewTestSendSMS?: InputMaybe; PermissionsPrismBackofficeUser?: InputMaybe; PermissionsPrismPlaygroundUser?: InputMaybe; PermissionsPrivacyDataAccess?: InputMaybe; + PermissionsPrmEnhancedPortalUser?: InputMaybe; PermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; PermissionsPublishMultiforce?: InputMaybe; PermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -8908,6 +13104,7 @@ export type Profile_OrderBy = { PermissionsQuipMetricsAccess?: InputMaybe; PermissionsQuipUserEngagementMetrics?: InputMaybe; PermissionsReassignOrchestrationWorkItems?: InputMaybe; + PermissionsRecordVisibilityAPI?: InputMaybe; PermissionsRegrelloUser?: InputMaybe; PermissionsRemoveDirectMessageMembers?: InputMaybe; PermissionsResetPasswords?: InputMaybe; @@ -8921,7 +13118,10 @@ export type Profile_OrderBy = { PermissionsSelectFilesFromSalesforce?: InputMaybe; PermissionsSendAnnouncementEmails?: InputMaybe; PermissionsSendCustomNotifications?: InputMaybe; + PermissionsSendEmail?: InputMaybe; + PermissionsSendSMS?: InputMaybe; PermissionsSendSitRequests?: InputMaybe; + PermissionsShareFilesWithNetworks?: InputMaybe; PermissionsShowCompanyNameAsUserBadge?: InputMaybe; PermissionsSimpleCsvDataImportUser?: InputMaybe; PermissionsSkipIdentityConfirmation?: InputMaybe; @@ -8941,8 +13141,12 @@ export type Profile_OrderBy = { PermissionsTransferAnyEntity?: InputMaybe; PermissionsTransferAnyLead?: InputMaybe; PermissionsTwoFactorApi?: InputMaybe; + PermissionsUMAStandaloneUserPerm?: InputMaybe; + PermissionsUMAWebTrackingSetup?: InputMaybe; + PermissionsUmaEditConsentSettings?: InputMaybe; + PermissionsUmaQueryCMSEmailContent?: InputMaybe; + PermissionsUnifiedEHDViewer?: InputMaybe; PermissionsUpdateReportTypeReferences?: InputMaybe; - PermissionsUseAnyApiAuth?: InputMaybe; PermissionsUseAssistantDialog?: InputMaybe; PermissionsUseMySearch?: InputMaybe; PermissionsUseQuerySuggestions?: InputMaybe; @@ -8954,6 +13158,7 @@ export type Profile_OrderBy = { PermissionsUseTeamsForItSrvcs?: InputMaybe; PermissionsUseWebLink?: InputMaybe; PermissionsUserCanDeployStore?: InputMaybe; + PermissionsUserHasSendToListFilterAccess?: InputMaybe; PermissionsUserInteractionInsights?: InputMaybe; PermissionsViewAccessPolicies?: InputMaybe; PermissionsViewAllActivities?: InputMaybe; @@ -8962,22 +13167,30 @@ export type Profile_OrderBy = { PermissionsViewAllFieldsGlobal?: InputMaybe; PermissionsViewAllForecasts?: InputMaybe; PermissionsViewAllForeignKeyNames?: InputMaybe; + PermissionsViewAllNonSetupFlows?: InputMaybe; PermissionsViewAllPolicyCenterPolicies?: InputMaybe; PermissionsViewAllProfiles?: InputMaybe; PermissionsViewAllUsers?: InputMaybe; PermissionsViewApiNamedQueries?: InputMaybe; + PermissionsViewBusinessUnit?: InputMaybe; PermissionsViewClientSecret?: InputMaybe; PermissionsViewContent?: InputMaybe; PermissionsViewContentTaxonomy?: InputMaybe; + PermissionsViewCustomerSentiment?: InputMaybe; PermissionsViewDataAssessment?: InputMaybe; PermissionsViewDataCategories?: InputMaybe; PermissionsViewDeveloperName?: InputMaybe; + PermissionsViewEmailMessagingSetup?: InputMaybe; PermissionsViewEncryptedData?: InputMaybe; PermissionsViewEventLogFiles?: InputMaybe; + PermissionsViewGlobalHeader?: InputMaybe; PermissionsViewHealthCheck?: InputMaybe; PermissionsViewHelpLink?: InputMaybe; PermissionsViewLicenseUtilization?: InputMaybe; + PermissionsViewMLModels?: InputMaybe; PermissionsViewMyTeamsDashboards?: InputMaybe; + PermissionsViewNonSetupFlow?: InputMaybe; + PermissionsViewOnlyEmbeddedAppUser?: InputMaybe; PermissionsViewOrchestrationsInAutomApp?: InputMaybe; PermissionsViewPrivateStaticResources?: InputMaybe; PermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -8986,8 +13199,10 @@ export type Profile_OrderBy = { PermissionsViewRecommendations?: InputMaybe; PermissionsViewRestrictionAndScopingRules?: InputMaybe; PermissionsViewRoles?: InputMaybe; + PermissionsViewSMSMessagingSetup?: InputMaybe; PermissionsViewSetup?: InputMaybe; PermissionsViewTrustMeasures?: InputMaybe; + PermissionsViewUMACalendar?: InputMaybe; PermissionsViewUserPII?: InputMaybe; PermissionsYourAccountCDAPublishEvents?: InputMaybe; SharingType?: InputMaybe; @@ -9290,6 +13505,9 @@ export type Property__C_Filter = { Available_Date__c?: InputMaybe; Bathrooms__c?: InputMaybe; Bedrooms__c?: InputMaybe; + Coordinates__Latitude__s?: InputMaybe; + Coordinates__Longitude__s?: InputMaybe; + Coordinates__c?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -9329,6 +13547,9 @@ export type Property__C_OrderBy = { Available_Date__c?: InputMaybe; Bathrooms__c?: InputMaybe; Bedrooms__c?: InputMaybe; + Coordinates__Latitude__s?: InputMaybe; + Coordinates__Longitude__s?: InputMaybe; + Coordinates__c?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -9368,6 +13589,55 @@ export type Property__C_Owner_OrderBys = { User?: InputMaybe; }; +export type Prospect_Filter = { + AnnualRevenue?: InputMaybe; + City?: InputMaybe; + Company?: InputMaybe; + ConvertedAccount?: InputMaybe; + ConvertedAccountId?: InputMaybe; + ConvertedContact?: InputMaybe; + ConvertedContactId?: InputMaybe; + ConvertedDate?: InputMaybe; + ConvertedLead?: InputMaybe; + ConvertedLeadId?: InputMaybe; + ConvertedOpportunity?: InputMaybe; + ConvertedOpportunityId?: InputMaybe; + Country?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Email?: InputMaybe; + FirstName?: InputMaybe; + GenderIdentity?: InputMaybe; + GeocodeAccuracy?: InputMaybe; + Id?: InputMaybe; + Industry?: InputMaybe; + IsConverted?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastName?: InputMaybe; + Latitude?: InputMaybe; + LeadSource?: InputMaybe; + Longitude?: InputMaybe; + Name?: InputMaybe; + NumberOfEmployees?: InputMaybe; + Phone?: InputMaybe; + PostalCode?: InputMaybe; + ProspectRecordName?: InputMaybe; + ProspectStatus?: InputMaybe; + Salutation?: InputMaybe; + State?: InputMaybe; + Street?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type QuickTextHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -9438,6 +13708,8 @@ export type Recommendation_Filter = { LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; Name?: InputMaybe; + Network?: InputMaybe; + NetworkId?: InputMaybe; RecommendationKey?: InputMaybe; RejectionLabel?: InputMaybe; SystemModstamp?: InputMaybe; @@ -9557,29 +13829,6 @@ export type RecordType_OrderBy = { SystemModstamp?: InputMaybe; }; -export type ReportHierarchyObjectField_Filter = { - CreatedBy?: InputMaybe; - CreatedById?: InputMaybe; - CreatedDate?: InputMaybe; - HierarchyApiName?: InputMaybe; - HierarchyField?: InputMaybe; - HierarchyType?: InputMaybe; - Id?: InputMaybe; - IsDeleted?: InputMaybe; - LastModifiedBy?: InputMaybe; - LastModifiedById?: InputMaybe; - LastModifiedDate?: InputMaybe; - Name?: InputMaybe; - Object?: InputMaybe; - ObjectType?: InputMaybe; - Report?: InputMaybe; - ReportId?: InputMaybe; - SystemModstamp?: InputMaybe; - and?: InputMaybe>>; - not?: InputMaybe; - or?: InputMaybe>>; -}; - export type Report_Filter = { BlockReportId?: InputMaybe; BooleanFilter?: InputMaybe; @@ -9610,7 +13859,6 @@ export type Report_Filter = { OptionsFlagCurrentSnapshotDate?: InputMaybe; OptionsFlagHasStackedSummaries?: InputMaybe; OptionsFlagIsSmartTotalDisabled?: InputMaybe; - OptionsFlagShowCommonRowsOnly?: InputMaybe; OptionsFlagShowGrandTotal?: InputMaybe; OptionsFlagShowSubtotals?: InputMaybe; OptionsFlagSideBySide?: InputMaybe; @@ -9660,13 +13908,20 @@ export type ScorecardAssociation_Filter = { Scorecard?: InputMaybe; ScorecardId?: InputMaybe; SystemModstamp?: InputMaybe; - TargetEntity?: InputMaybe; + TargetEntity?: InputMaybe; TargetEntityId?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; or?: InputMaybe>>; }; +export type ScorecardAssociation_TargetEntity_Filters = { + Account?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + Name?: InputMaybe; +}; + export type ScorecardMetric_Filter = { Category?: InputMaybe; CreatedBy?: InputMaybe; @@ -9809,6 +14064,42 @@ export type Seller_Owner_Filters = { User?: InputMaybe; }; +export type SenderEmailAddress_Filter = { + AutoReplyMessage?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DisplayName?: InputMaybe; + EmailDomainKeyId?: InputMaybe; + FwdEmailAddress?: InputMaybe; + Id?: InputMaybe; + IncomingMessagingSettingCode?: InputMaybe; + IsAgentConversationalActive?: InputMaybe; + IsAutoReplyEnabled?: InputMaybe; + IsDeleted?: InputMaybe; + IsOutboundMessagingActive?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelId?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SendDefinitionKey?: InputMaybe; + SystemModstamp?: InputMaybe; + Username?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type SenderEmailAddress_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type SetupAssistantStep_Filter = { AssistantType?: InputMaybe; CreatedBy?: InputMaybe; @@ -10209,9 +14500,14 @@ export type Task_What_Filters = { AssetRelationship?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscriptionConsent?: InputMaybe; ContactRequest?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; Image?: InputMaybe; @@ -10223,6 +14519,10 @@ export type Task_What_Filters = { Name?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -10356,6 +14656,8 @@ export type TopicAssignment_Entity_Filters = { Asset?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; Contact?: InputMaybe; ContentDocument?: InputMaybe; Contract?: InputMaybe; @@ -10370,6 +14672,10 @@ export type TopicAssignment_Entity_Filters = { Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; Payment__c?: InputMaybe; Property_Cost__c?: InputMaybe; Property_Feature__c?: InputMaybe; @@ -10395,6 +14701,7 @@ export type TopicAssignment_Filter = { EntityType?: InputMaybe; Id?: InputMaybe; IsDeleted?: InputMaybe; + NetworkId?: InputMaybe; SystemModstamp?: InputMaybe; Topic?: InputMaybe; TopicId?: InputMaybe; @@ -10411,6 +14718,7 @@ export type Topic_Filter = { Id?: InputMaybe; ManagedTopicType?: InputMaybe; Name?: InputMaybe; + NetworkId?: InputMaybe; SystemModstamp?: InputMaybe; TalkingAbout?: InputMaybe; and?: InputMaybe>>; @@ -10453,6 +14761,11 @@ export enum UiBehavior { Required = "REQUIRED", } +export enum Unit { + Km = "KM", + Mi = "MI", +} + export type UnstructuredStorageSpace_Filter = { ApplicationName?: InputMaybe; Attribute1?: InputMaybe; @@ -10668,6 +14981,7 @@ export type UserRole_Filter = { ParentRoleId?: InputMaybe; PortalAccountId?: InputMaybe; PortalAccountOwnerId?: InputMaybe; + PortalRole?: InputMaybe; PortalType?: InputMaybe; RollupDescription?: InputMaybe; SystemModstamp?: InputMaybe; @@ -10692,6 +15006,7 @@ export type UserRole_OrderBy = { ParentRoleId?: InputMaybe; PortalAccountId?: InputMaybe; PortalAccountOwnerId?: InputMaybe; + PortalRole?: InputMaybe; PortalType?: InputMaybe; RollupDescription?: InputMaybe; SystemModstamp?: InputMaybe; @@ -10751,6 +15066,8 @@ export type User_Filter = { IndividualId?: InputMaybe; IsActive?: InputMaybe; IsExtIndicatorVisible?: InputMaybe; + IsPartner?: InputMaybe; + IsPortalEnabled?: InputMaybe; IsProfilePhotoActive?: InputMaybe; LanguageLocaleKey?: InputMaybe; LastLoginDate?: InputMaybe; @@ -10776,6 +15093,7 @@ export type User_Filter = { OutOfOfficeMessage?: InputMaybe; PasswordExpirationDate?: InputMaybe; Phone?: InputMaybe; + PortalRole?: InputMaybe; PostalCode?: InputMaybe; Profile?: InputMaybe; ProfileId?: InputMaybe; @@ -10852,6 +15170,7 @@ export type User_Filter = { UserPreferencesHideEndUserOnboardingAssistantModal?: InputMaybe; UserPreferencesHideEventCalendar?: InputMaybe; UserPreferencesHideFLSNotification?: InputMaybe; + UserPreferencesHideFlowTypeChangeConfirmationModal?: InputMaybe; UserPreferencesHideLearningPathModal?: InputMaybe; UserPreferencesHideLightningMigrationModal?: InputMaybe; UserPreferencesHideMailAppEAPUserGuidance?: InputMaybe; @@ -10859,6 +15178,7 @@ export type User_Filter = { UserPreferencesHideManagedEcaMobilePubModal?: InputMaybe; UserPreferencesHideOnlineSalesAppTabVisibilityRequirementsModal?: InputMaybe; UserPreferencesHideOnlineSalesAppWelcomeMat?: InputMaybe; + UserPreferencesHideRemoteConnectInstruction?: InputMaybe; UserPreferencesHideS1BrowserUI?: InputMaybe; UserPreferencesHideSecondChatterOnboardingSplash?: InputMaybe; UserPreferencesHideSfxWelcomeMat?: InputMaybe; @@ -10974,6 +15294,8 @@ export type User_OrderBy = { IndividualId?: InputMaybe; IsActive?: InputMaybe; IsExtIndicatorVisible?: InputMaybe; + IsPartner?: InputMaybe; + IsPortalEnabled?: InputMaybe; IsProfilePhotoActive?: InputMaybe; LanguageLocaleKey?: InputMaybe; LastLoginDate?: InputMaybe; @@ -10999,6 +15321,7 @@ export type User_OrderBy = { OutOfOfficeMessage?: InputMaybe; PasswordExpirationDate?: InputMaybe; Phone?: InputMaybe; + PortalRole?: InputMaybe; PostalCode?: InputMaybe; Profile?: InputMaybe; ProfileId?: InputMaybe; @@ -11075,6 +15398,7 @@ export type User_OrderBy = { UserPreferencesHideEndUserOnboardingAssistantModal?: InputMaybe; UserPreferencesHideEventCalendar?: InputMaybe; UserPreferencesHideFLSNotification?: InputMaybe; + UserPreferencesHideFlowTypeChangeConfirmationModal?: InputMaybe; UserPreferencesHideLearningPathModal?: InputMaybe; UserPreferencesHideLightningMigrationModal?: InputMaybe; UserPreferencesHideMailAppEAPUserGuidance?: InputMaybe; @@ -11082,6 +15406,7 @@ export type User_OrderBy = { UserPreferencesHideManagedEcaMobilePubModal?: InputMaybe; UserPreferencesHideOnlineSalesAppTabVisibilityRequirementsModal?: InputMaybe; UserPreferencesHideOnlineSalesAppWelcomeMat?: InputMaybe; + UserPreferencesHideRemoteConnectInstruction?: InputMaybe; UserPreferencesHideS1BrowserUI?: InputMaybe; UserPreferencesHideSecondChatterOnboardingSplash?: InputMaybe; UserPreferencesHideSfxWelcomeMat?: InputMaybe; @@ -11150,6 +15475,30 @@ export type User_OrderBy = { Username?: InputMaybe; }; +export type WaveAutoInstallRequest_Filter = { + Configuration?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + FailedReason?: InputMaybe; + FolderId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + RequestLog?: InputMaybe; + RequestStatus?: InputMaybe; + RequestType?: InputMaybe; + SystemModstamp?: InputMaybe; + TemplateApiName?: InputMaybe; + TemplateVersion?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type WorkBadgeDefinitionHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -11336,6 +15685,27 @@ export type WorkOrder_Owner_Filters = { User?: InputMaybe; }; +export type ApplicationForApprovalQueryVariables = Exact<{ + applicationId: Scalars["ID"]["input"]; +}>; + +export type ApplicationForApprovalQuery = { + uiapi: { + query: { + Application__c?: { + edges?: Array<{ + node?: { + Id: string; + User__c?: { value?: string | null } | null; + Property__c?: { value?: string | null } | null; + Start_Date__c?: { value?: string | null } | null; + } | null; + } | null> | null; + } | null; + }; + }; +}; + export type DistinctApplicationStatusQueryVariables = Exact<{ [key: string]: never }>; export type DistinctApplicationStatusQuery = { @@ -11358,6 +15728,17 @@ export type DistinctApplicationStatusQuery = { }; }; +export type ExistingTenantQueryVariables = Exact<{ + userId: Scalars["ID"]["input"]; + propertyId: Scalars["ID"]["input"]; +}>; + +export type ExistingTenantQuery = { + uiapi: { + query: { Tenant__c?: { edges?: Array<{ node?: { Id: string } | null } | null> | null } | null }; + }; +}; + export type GetApplicationsQueryVariables = Exact<{ [key: string]: never }>; export type GetApplicationsQuery = { @@ -11441,6 +15822,16 @@ export type UpdateApplicationStatusMutation = { }; }; +export type UserByContactQueryVariables = Exact<{ + contactId: Scalars["ID"]["input"]; +}>; + +export type UserByContactQuery = { + uiapi: { + query: { User?: { edges?: Array<{ node?: { Id: string } | null } | null> | null } | null }; + }; +}; + export type GetDashboardMetricsQueryVariables = Exact<{ [key: string]: never }>; export type GetDashboardMetricsQuery = { @@ -11751,9 +16142,7 @@ export type SearchMaintenanceWorkersQuery = { Rating__c?: { value?: number | null; displayValue?: string | null } | null; Hourly_Rate__c?: { value?: number | null; displayValue?: string | null } | null; CreatedDate?: { value?: string | null; displayValue?: string | null } | null; - Maintenance_Requests__r?: { - totalCount: number; - } | null; + Maintenance_Requests__r?: { totalCount: number } | null; } | null; } | null> | null; pageInfo: { diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/graphqlClient.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphqlClient.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/graphqlClient.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphqlClient.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequestSearchService.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequestSearchService.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequestSearchService.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequestSearchService.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequests.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequests.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequests.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequests.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestPriority.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestPriority.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestPriority.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestPriority.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestStatus.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestStatus.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestStatus.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestStatus.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestType.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestType.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestType.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestType.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/getAllMaintenanceRequests.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/getAllMaintenanceRequests.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/getAllMaintenanceRequests.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/getAllMaintenanceRequests.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/getMaintenanceRequests.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/getMaintenanceRequests.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/getMaintenanceRequests.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/getMaintenanceRequests.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/searchMaintenanceRequests.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/searchMaintenanceRequests.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/searchMaintenanceRequests.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/searchMaintenanceRequests.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/updateMaintenanceStatus.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/updateMaintenanceStatus.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceRequests/query/updateMaintenanceStatus.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/updateMaintenanceStatus.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceWorkers/maintenanceWorkerSearchService.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/maintenanceWorkerSearchService.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceWorkers/maintenanceWorkerSearchService.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/maintenanceWorkerSearchService.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceWorkers/query/distinctMaintenanceWorkerEmploymentType.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/query/distinctMaintenanceWorkerEmploymentType.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceWorkers/query/distinctMaintenanceWorkerEmploymentType.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/query/distinctMaintenanceWorkerEmploymentType.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceWorkers/query/searchMaintenanceWorkers.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/query/searchMaintenanceWorkers.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/maintenanceWorkers/query/searchMaintenanceWorkers.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/query/searchMaintenanceWorkers.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/properties.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/properties.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/properties.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/properties.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/propertySearchService.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/propertySearchService.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/propertySearchService.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/propertySearchService.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/distinctPropertyStatus.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/distinctPropertyStatus.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/distinctPropertyStatus.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/distinctPropertyStatus.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/distinctPropertyType.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/distinctPropertyType.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/distinctPropertyType.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/distinctPropertyType.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/getProperties.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/getProperties.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/getProperties.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/getProperties.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/searchProperties.graphql b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/searchProperties.graphql similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/properties/query/searchProperties.graphql rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/searchProperties.graphql diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/app.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/app.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/app.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/app.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/appLayout.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/appLayout.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/appLayout.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/appLayout.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/appliances.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/appliances.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/appliances.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/appliances.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/book.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/book.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/book.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/book.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/copy.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/copy.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/copy.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/copy.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/dashboard.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/dashboard.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/dashboard.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/dashboard.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/downgraph.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/downgraph.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/downgraph.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/downgraph.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/electrical.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/electrical.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/electrical.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/electrical.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/files.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/files.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/files.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/files.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/hvac.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/hvac.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/hvac.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/hvac.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/maintenance-worker.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/maintenance-worker.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/maintenance-worker.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/maintenance-worker.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/maintenance.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/maintenance.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/maintenance.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/maintenance.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/pest.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/pest.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/pest.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/pest.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/plumbing.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/plumbing.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/plumbing.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/plumbing.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/properties.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/properties.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/properties.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/properties.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/rocket.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/rocket.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/rocket.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/rocket.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/star.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/star.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/star.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/star.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/support.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/support.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/support.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/support.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/upgraph.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/upgraph.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/upgraph.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/upgraph.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/users.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/users.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/users.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/users.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/zen-logo.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/zen-logo.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/icons/zen-logo.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/zen-logo.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/codey-1.png b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-1.png similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/codey-1.png rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-1.png diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/codey-2.png b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-2.png similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/codey-2.png rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-2.png diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/codey-3.png b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-3.png similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/codey-3.png rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-3.png diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/vibe-codey.svg b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/vibe-codey.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/assets/images/vibe-codey.svg rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/vibe-codey.svg diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/AgentforceConversationClient.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/AgentforceConversationClient.tsx similarity index 93% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/AgentforceConversationClient.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/AgentforceConversationClient.tsx index 4fc6efd..927c164 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/AgentforceConversationClient.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/AgentforceConversationClient.tsx @@ -57,6 +57,7 @@ export function AgentforceConversationClient({ agentId, inline: inlineProp, headerEnabled, + showHeaderIcon, width, height, styleTokens, @@ -68,6 +69,8 @@ export function AgentforceConversationClient({ const renderingConfig: NonNullable = { mode: inlineProp ? "inline" : "floating", ...(headerEnabled !== undefined && { headerEnabled }), + ...(showHeaderIcon !== undefined && { showHeaderIcon }), + ...{ showAvatar: false }, ...(width !== undefined && { width }), ...(height !== undefined && { height }), }; @@ -77,7 +80,7 @@ export function AgentforceConversationClient({ ...(styleTokens !== undefined && { styleTokens }), renderingConfig, }; - }, [agentId, inlineProp, headerEnabled, width, height, styleTokens]); + }, [agentId, inlineProp, headerEnabled, showHeaderIcon, width, height, styleTokens]); const inline = normalizedAgentforceClientConfig?.renderingConfig?.mode === "inline"; @@ -85,7 +88,7 @@ export function AgentforceConversationClient({ if (!normalizedAgentforceClientConfig?.agentId) { throw new Error( "AgentforceConversationClient requires agentId. " + - "Pass flat props only (agentId, inline, headerEnabled, width, height, styleTokens).", + "Pass flat props only (agentId, inline, headerEnabled, showHeaderIcon, width, height, styleTokens).", ); } diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/alerts/status-alert.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/alerts/status-alert.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/alerts/status-alert.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/alerts/status-alert.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/applications/ApplicationDetailsModal.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/applications/ApplicationDetailsModal.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/applications/ApplicationDetailsModal.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/applications/ApplicationDetailsModal.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/GlobalSearchBar.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/GlobalSearchBar.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/GlobalSearchBar.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/GlobalSearchBar.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/IssuesDonutChart.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/IssuesDonutChart.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/IssuesDonutChart.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/IssuesDonutChart.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/MaintenanceTable.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/MaintenanceTable.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/MaintenanceTable.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/MaintenanceTable.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/StatCard.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/StatCard.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/dashboard/StatCard.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/StatCard.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/layout/FilterRow.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/FilterRow.tsx similarity index 93% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/layout/FilterRow.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/FilterRow.tsx index 5ccfdcf..305a775 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/components/layout/FilterRow.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/FilterRow.tsx @@ -12,7 +12,7 @@ export function FilterRow({ }: FilterRowProps) { return (
[] = [ @@ -152,7 +152,7 @@ export default function AccountSearch() {
- + - - - + + + diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/__examples__/pages/Home.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/pages/Home.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/__examples__/pages/Home.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/pages/Home.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/api/objectSearchService.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/api/objectSearchService.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/api/objectSearchService.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/api/objectSearchService.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/ActiveFilters.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/ActiveFilters.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/ActiveFilters.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/ActiveFilters.tsx diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/FilterContext.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/FilterContext.tsx similarity index 87% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/FilterContext.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/FilterContext.tsx index 27720df..e8b151c 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/FilterContext.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/FilterContext.tsx @@ -27,7 +27,14 @@ export function FilterProvider({ children, }: FilterProviderProps) { return ( - + {children} ); @@ -57,10 +64,13 @@ export function useFilterField(field: string) { export function useFilterPanel() { const { filters, onReset } = useFilterContext(); - return { hasActiveFilters: filters.length > 0, resetAll: onReset }; + return { + hasActiveFilters: filters.length > 0, + resetAll: onReset, + }; } -interface FilterResetButtonProps extends Omit, "onClick"> {} +type FilterResetButtonProps = Omit, "onClick">; export function FilterResetButton({ children, ...props }: FilterResetButtonProps) { const { hasActiveFilters, resetAll } = useFilterPanel(); diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/ObjectBreadcrumb.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/ObjectBreadcrumb.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/ObjectBreadcrumb.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/ObjectBreadcrumb.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/PaginationControls.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/PaginationControls.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/PaginationControls.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/PaginationControls.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/SearchBar.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/SearchBar.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/SearchBar.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/SearchBar.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/SortControl.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/SortControl.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/SortControl.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/SortControl.tsx diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/filters/BooleanFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/BooleanFilter.tsx similarity index 87% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/filters/BooleanFilter.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/BooleanFilter.tsx index a7d4ed1..18e7a1b 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/filters/BooleanFilter.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/BooleanFilter.tsx @@ -5,9 +5,9 @@ import { SelectTrigger, SelectValue, } from "../../../../components/ui/select"; -import { Label } from "../../../../components/ui/label"; import { cn } from "../../../../lib/utils"; import { useFilterField } from "../FilterContext"; +import { FilterFieldWrapper } from "./FilterFieldWrapper"; import type { ActiveFilterValue } from "../../utils/filterUtils"; const ALL_VALUE = "__all__"; @@ -21,11 +21,15 @@ interface BooleanFilterProps extends Omit, "onChange export function BooleanFilter({ field, label, helpText, className, ...props }: BooleanFilterProps) { const { value, onChange } = useFilterField(field); return ( -
- + - {helpText &&

{helpText}

} -
+ ); } diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx similarity index 86% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx index 7985ffd..2c839c8 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx @@ -1,14 +1,15 @@ import { useState } from "react"; import { parseISO } from "date-fns"; -import { Label } from "../../../../components/ui/label"; import { DatePicker, DatePickerTrigger, DatePickerContent, DatePickerCalendar, } from "../../../../components/ui/datePicker"; -import { cn } from "../../../../lib/utils"; + import { useFilterField } from "../FilterContext"; +import { FilterFieldWrapper } from "./FilterFieldWrapper"; +import type { FilterFieldType } from "../../utils/filterUtils"; import { Select, SelectContent, @@ -32,9 +33,17 @@ interface DateFilterProps extends Omit, "onChange"> field: string; label: string; helpText?: string; + filterType?: FilterFieldType; } -export function DateFilter({ field, label, helpText, className, ...props }: DateFilterProps) { +export function DateFilter({ + field, + label, + helpText, + filterType = "date", + className, + ...props +}: DateFilterProps) { const { value, onChange } = useFilterField(field); const initialOp: DateOperator = value?.min ? "gt" : "lt"; @@ -63,7 +72,7 @@ export function DateFilter({ field, label, helpText, className, ...props }: Date onChange({ field, label, - type: "date", + type: filterType, value: op, min: f === "min" ? dateStr : undefined, max: f === "max" ? dateStr : undefined, @@ -71,8 +80,7 @@ export function DateFilter({ field, label, helpText, className, ...props }: Date } return ( -
- +
{ + const v = e.target.value; + setLocalMin(v); + debouncedOnChange(v, localMax); + }} + aria-label={`${label} minimum`} + aria-invalid={hasError || undefined} + /> + { + const v = e.target.value; + setLocalMax(v); + debouncedOnChange(localMin, v); + }} + aria-label={`${label} maximum`} + aria-invalid={hasError || undefined} + /> +
+
+ ); +} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx new file mode 100644 index 0000000..f37e3bf --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx @@ -0,0 +1,50 @@ +import { useEffect, useState } from "react"; + +import { SearchBar } from "../SearchBar"; +import { useFilterField } from "../FilterContext"; +import { FilterFieldWrapper } from "./FilterFieldWrapper"; +import { useDebouncedCallback } from "../../hooks/useDebouncedCallback"; + +interface SearchFilterProps extends Omit, "onChange"> { + field: string; + label: string; + placeholder?: string; +} + +export function SearchFilter({ + field, + label, + placeholder, + className, + ...props +}: SearchFilterProps) { + const { value, onChange } = useFilterField(field); + const [localValue, setLocalValue] = useState(value?.value ?? ""); + + const externalValue = value?.value ?? ""; + useEffect(() => { + setLocalValue(externalValue); + }, [externalValue]); + + const debouncedOnChange = useDebouncedCallback((v: string) => { + if (v) { + onChange({ field, label, type: "search", value: v }); + } else { + onChange(undefined); + } + }); + + return ( + + { + setLocalValue(v); + debouncedOnChange(v); + }} + placeholder={placeholder} + inputProps={{ id: `filter-${field}` }} + /> + + ); +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/filters/SelectFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SelectFilter.tsx similarity index 88% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/filters/SelectFilter.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SelectFilter.tsx index 08801cb..03649ac 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/components/filters/SelectFilter.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SelectFilter.tsx @@ -5,9 +5,9 @@ import { SelectTrigger, SelectValue, } from "../../../../components/ui/select"; -import { Label } from "../../../../components/ui/label"; import { cn } from "../../../../lib/utils"; import { useFilterField } from "../FilterContext"; +import { FilterFieldWrapper } from "./FilterFieldWrapper"; import type { ActiveFilterValue } from "../../utils/filterUtils"; const ALL_VALUE = "__all__"; @@ -29,8 +29,13 @@ export function SelectFilter({ }: SelectFilterProps) { const { value, onChange } = useFilterField(field); return ( -
- + - {helpText &&

{helpText}

} -
+ ); } diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx similarity index 61% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx index 396abfd..5a27b20 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx @@ -1,7 +1,9 @@ +import { useEffect, useState } from "react"; import { Input } from "../../../../components/ui/input"; -import { Label } from "../../../../components/ui/label"; import { cn } from "../../../../lib/utils"; import { useFilterField } from "../FilterContext"; +import { FilterFieldWrapper } from "./FilterFieldWrapper"; +import { useDebouncedCallback } from "../../hooks/useDebouncedCallback"; import type { ActiveFilterValue } from "../../utils/filterUtils"; interface TextFilterProps extends Omit, "onChange"> { @@ -21,8 +23,13 @@ export function TextFilter({ }: TextFilterProps) { const { value, onChange } = useFilterField(field); return ( -
- + - {helpText &&

{helpText}

} -
+ ); } @@ -53,19 +59,30 @@ export function TextFilterInput({ className, ...props }: TextFilterInputProps) { + const [localValue, setLocalValue] = useState(value?.value ?? ""); + + const externalValue = value?.value ?? ""; + useEffect(() => { + setLocalValue(externalValue); + }, [externalValue]); + + const debouncedOnChange = useDebouncedCallback((v: string) => { + if (v) { + onChange({ field, label, type: "text", value: v }); + } else { + onChange(undefined); + } + }); + return ( { - const v = e.target.value; - if (v) { - onChange({ field, label, type: "text", value: v }); - } else { - onChange(undefined); - } + setLocalValue(e.target.value); + debouncedOnChange(e.target.value); }} className={cn(className)} {...props} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useAsyncData.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useAsyncData.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useAsyncData.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useAsyncData.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useCachedAsyncData.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useCachedAsyncData.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useCachedAsyncData.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useCachedAsyncData.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useDebouncedCallback.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useDebouncedCallback.ts new file mode 100644 index 0000000..5c1036a --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useDebouncedCallback.ts @@ -0,0 +1,34 @@ +import { useCallback, useEffect, useRef } from "react"; +import { debounce, FILTER_DEBOUNCE_MS } from "../utils/debounce"; + +/** + * Returns a stable debounced wrapper around the provided callback. + * + * The wrapper always invokes the *latest* version of `fn` (via a ref), + * so the debounce timer is never reset when `fn` changes — only when + * the caller invokes the returned function again. + * + * @param fn - The callback to debounce. + * @param delay - Debounce delay in ms. Defaults to `FILTER_DEBOUNCE_MS`. + */ +export function useDebouncedCallback void>( + fn: T, + delay: number = FILTER_DEBOUNCE_MS, +): (...args: Parameters) => void { + const fnRef = useRef(fn); + const debouncedRef = useRef<((...args: any[]) => void) | null>(null); + + useEffect(() => { + fnRef.current = fn; + }); + + useEffect(() => { + debouncedRef.current = debounce((...args: any[]) => { + fnRef.current(...(args as Parameters)); + }, delay); + }, [delay]); + + return useCallback((...args: Parameters) => { + debouncedRef.current?.(...args); + }, []); +} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts similarity index 95% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts index 7eff96e..144bc19 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts @@ -61,7 +61,10 @@ export function useObjectSearchParams( paginationConfig?: PaginationConfig, ) { const defaultPageSize = paginationConfig?.defaultPageSize ?? 10; - const validPageSizes = paginationConfig?.validPageSizes ?? [defaultPageSize]; + const validPageSizes = useMemo( + () => paginationConfig?.validPageSizes ?? [defaultPageSize], + [paginationConfig?.validPageSizes, defaultPageSize], + ); const [searchParams, setSearchParams] = useSearchParams(); // Seed local state from URL on initial load @@ -76,8 +79,10 @@ export function useObjectSearchParams( const [sort, setLocalSort] = useState(initial.sort); // Pagination — cursor-based with a stack to support "previous page" navigation. - const getValidPageSize = (size: number) => - validPageSizes.includes(size) ? size : defaultPageSize; + const getValidPageSize = useCallback( + (size: number) => (validPageSizes.includes(size) ? size : defaultPageSize), + [validPageSizes, defaultPageSize], + ); const [pageSize, setPageSizeState] = useState( getValidPageSize(initial.pageSize ?? defaultPageSize), @@ -166,7 +171,7 @@ export function useObjectSearchParams( resetPagination(); syncToUrl([], null, defaultPageSize, 0); setPageSizeState(defaultPageSize); - }, [syncToUrl, resetPagination]); + }, [syncToUrl, resetPagination, defaultPageSize]); // -- Pagination callbacks --------------------------------------------------- // Uses a cursor stack to track visited pages. "Next" pushes the current @@ -204,7 +209,7 @@ export function useObjectSearchParams( resetPagination(); debouncedSyncRef.current(f, s, validated); }, - [resetPagination], + [resetPagination, getValidPageSize], ); // -- Derived query objects --------------------------------------------------- diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/utils/debounce.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/debounce.ts similarity index 79% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/utils/debounce.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/debounce.ts index 4fc1fe5..e18b0d2 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/features/object-search/utils/debounce.ts +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/debounce.ts @@ -1,3 +1,6 @@ +/** Default debounce delay for keystroke-driven filter inputs (search, text, numeric). */ +export const FILTER_DEBOUNCE_MS = 300; + /** * Creates a debounced version of the provided function. * @@ -10,7 +13,7 @@ * @param ms - The debounce delay in milliseconds. * @returns A new function with the same signature that delays execution. */ -export function debounce void>( +export function debounce void>( fn: T, ms: number, ): (...args: Parameters) => void { diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/fieldUtils.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/fieldUtils.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/fieldUtils.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/fieldUtils.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/filterUtils.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/filterUtils.ts similarity index 95% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/filterUtils.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/filterUtils.ts index db8459a..8806001 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/filterUtils.ts +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/filterUtils.ts @@ -25,6 +25,8 @@ export type FilterFieldType = | "boolean" | "date" | "daterange" + | "datetime" + | "datetimerange" | "multipicklist" | "search"; @@ -337,13 +339,34 @@ function buildSingleFilter( return { [field]: { in: values } } as TFilter; } case "date": { + if (!min && !max) return null; + const op = value ?? (min ? "gte" : "lte"); + const dateStr = min ?? max; + return { [field]: { [op]: { value: dateStr } } } as TFilter; + } + case "daterange": { + if (!min && !max) return null; + const clauses: TFilter[] = []; + if (min) { + clauses.push({ + [field]: { gte: { value: min } }, + } as TFilter); + } + if (max) { + clauses.push({ + [field]: { lte: { value: max } }, + } as TFilter); + } + return clauses.length === 1 ? clauses[0] : ({ and: clauses } as TFilter); + } + case "datetime": { if (!min && !max) return null; const op = value ?? (min ? "gte" : "lte"); const dateStr = min ?? max; const isoStr = op === "gte" || op === "gt" ? toStartOfDay(dateStr!) : toEndOfDay(dateStr!); return { [field]: { [op]: { value: isoStr } } } as TFilter; } - case "daterange": { + case "datetimerange": { if (!min && !max) return null; const clauses: TFilter[] = []; if (min) { diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/sortUtils.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/sortUtils.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/utils/sortUtils.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/sortUtils.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/index.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/index.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/index.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/index.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/lib/constants.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/constants.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/lib/constants.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/constants.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/filterUtils.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/filterUtils.ts new file mode 100644 index 0000000..dbd1ba0 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/filterUtils.ts @@ -0,0 +1,11 @@ +import type { ComponentProps } from "react"; + +export const nonNegativeNumberInputProps: ComponentProps<"input"> = { + min: 0, + onKeyDown: (event) => { + if (event.key === "-" || event.key === "Minus") event.preventDefault(); + }, + onPaste: (event) => { + if (event.clipboardData.getData("text").includes("-")) event.preventDefault(); + }, +}; diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/lib/routeConfig.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/routeConfig.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/lib/routeConfig.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/routeConfig.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/lib/utils.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/utils.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/lib/utils.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/lib/utils.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/navigationMenu.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/navigationMenu.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/navigationMenu.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/navigationMenu.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/ApplicationSearch.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/ApplicationSearch.tsx similarity index 93% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/ApplicationSearch.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/ApplicationSearch.tsx index 6f553bf..0a7c17b 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/ApplicationSearch.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/ApplicationSearch.tsx @@ -21,7 +21,7 @@ import { } from "../features/object-search/components/FilterContext"; import { FilterRow } from "../components/layout/FilterRow"; import { SearchFilter } from "../features/object-search/components/filters/SearchFilter"; -import { SelectFilter } from "../features/object-search/components/filters/SelectFilter"; +import { MultiSelectFilter } from "../features/object-search/components/filters/MultiSelectFilter"; import { DateFilter } from "../features/object-search/components/filters/DateFilter"; import { ObjectSearchErrorState } from "../components/shared/ObjectSearchErrorState"; import PaginationControls from "../features/object-search/components/PaginationControls"; @@ -40,6 +40,7 @@ import type { Application__C_Filter, Application__C_OrderBy, } from "../api/graphql-operations-types"; +import { ResultOrder } from "../api/graphql-operations-types"; import { Badge } from "../components/ui/badge"; import { PAGINATION_CONFIG } from "../lib/constants"; import { cn } from "../lib/utils"; @@ -54,7 +55,7 @@ const FILTER_CONFIGS: FilterFieldConfig[] = [ }, { field: "Status__c", label: "Status", type: "picklist" }, { field: "Start_Date__c", label: "Start Date", type: "date" }, - { field: "CreatedDate", label: "Created Date", type: "date" }, + { field: "CreatedDate", label: "Created Date", type: "datetime" }, ]; const SORT_CONFIGS: SortFieldConfig[] = [ @@ -78,17 +79,20 @@ export default function ApplicationSearch() { Application__C_Filter, Application__C_OrderBy >(FILTER_CONFIGS, SORT_CONFIGS, PAGINATION_CONFIG); - - const searchKey = `applications:${JSON.stringify({ where: query.where, orderBy: query.orderBy, first: pagination.pageSize, after: pagination.afterCursor })}`; + const effectiveOrderBy = useMemo( + () => query.orderBy ?? { CreatedDate: { order: ResultOrder.Desc } }, + [query.orderBy], + ); + const searchKey = `applications:${JSON.stringify({ where: query.where, orderBy: effectiveOrderBy, first: pagination.pageSize, after: pagination.afterCursor })}`; const { data, loading, error } = useCachedAsyncData( () => searchApplications({ where: query.where, - orderBy: query.orderBy, + orderBy: effectiveOrderBy, first: pagination.pageSize, after: pagination.afterCursor, }), - [query.where, query.orderBy, pagination.pageSize, pagination.afterCursor], + [query.where, effectiveOrderBy, pagination.pageSize, pagination.afterCursor], { key: searchKey }, ); @@ -209,14 +213,19 @@ function ApplicationSearchFilters({ placeholder="Search by name..." className="w-full sm:w-50" /> - - + diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/Home.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/Home.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/Home.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/Home.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx similarity index 94% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx index 3eda7a9..02be5ae 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx @@ -23,7 +23,7 @@ import { } from "../features/object-search/components/FilterContext"; import { FilterRow } from "../components/layout/FilterRow"; import { SearchFilter } from "../features/object-search/components/filters/SearchFilter"; -import { SelectFilter } from "../features/object-search/components/filters/SelectFilter"; +import { MultiSelectFilter } from "../features/object-search/components/filters/MultiSelectFilter"; import { DateFilter } from "../features/object-search/components/filters/DateFilter"; import { ObjectSearchErrorState } from "../components/shared/ObjectSearchErrorState"; import PaginationControls from "../features/object-search/components/PaginationControls"; @@ -51,6 +51,7 @@ import type { Maintenance_Request__C_Filter, Maintenance_Request__C_OrderBy, } from "../api/graphql-operations-types"; +import { ResultOrder } from "../api/graphql-operations-types"; import { cn } from "../lib/utils"; const issueIcons: Record = { @@ -72,7 +73,7 @@ const FILTER_CONFIGS: FilterFieldConfig[] = [ { field: "Status__c", label: "Status", type: "picklist" }, { field: "Type__c", label: "Type", type: "picklist" }, { field: "Priority__c", label: "Priority", type: "picklist" }, - { field: "Scheduled__c", label: "Scheduled", type: "date" }, + { field: "Scheduled__c", label: "Scheduled", type: "datetime" }, ]; const SORT_CONFIGS: SortFieldConfig[] = [ @@ -104,17 +105,20 @@ export default function MaintenanceRequestSearch() { Maintenance_Request__C_Filter, Maintenance_Request__C_OrderBy >(FILTER_CONFIGS, SORT_CONFIGS, PAGINATION_CONFIG); - - const searchKey = `maintenance-requests:${JSON.stringify({ where: query.where, orderBy: query.orderBy, first: pagination.pageSize, after: pagination.afterCursor })}`; + const effectiveOrderBy = useMemo( + () => query.orderBy ?? { CreatedDate: { order: ResultOrder.Desc } }, + [query.orderBy], + ); + const searchKey = `maintenance-requests:${JSON.stringify({ where: query.where, orderBy: effectiveOrderBy, first: pagination.pageSize, after: pagination.afterCursor })}`; const { data, loading, error } = useCachedAsyncData( () => searchMaintenanceRequests({ where: query.where, - orderBy: query.orderBy, + orderBy: effectiveOrderBy, first: pagination.pageSize, after: pagination.afterCursor, }), - [query.where, query.orderBy, pagination.pageSize, pagination.afterCursor], + [query.where, effectiveOrderBy, pagination.pageSize, pagination.afterCursor], { key: searchKey }, ); @@ -248,25 +252,30 @@ function MaintenanceRequestSearchFilters({ placeholder="Search by name..." className="w-full sm:w-50" /> - - - - + diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx similarity index 95% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx index c9b615a..96a21c9 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx @@ -20,7 +20,7 @@ import { } from "../features/object-search/components/FilterContext"; import { FilterRow } from "../components/layout/FilterRow"; import { SearchFilter } from "../features/object-search/components/filters/SearchFilter"; -import { SelectFilter } from "../features/object-search/components/filters/SelectFilter"; +import { MultiSelectFilter } from "../features/object-search/components/filters/MultiSelectFilter"; import { TextFilter } from "../features/object-search/components/filters/TextFilter"; import { NumericRangeFilter } from "../features/object-search/components/filters/NumericRangeFilter"; import { DateFilter } from "../features/object-search/components/filters/DateFilter"; @@ -53,7 +53,7 @@ const FILTER_CONFIGS: FilterFieldConfig[] = [ { field: "Employment_Type__c", label: "Employment Type", type: "picklist" }, { field: "Location__c", label: "Location", type: "text", placeholder: "Location" }, { field: "Hourly_Rate__c", label: "Hourly Rate", type: "numeric" }, - { field: "CreatedDate", label: "Created Date", type: "date" }, + { field: "CreatedDate", label: "Created Date", type: "datetime" }, ]; const SORT_CONFIGS: SortFieldConfig[] = [ @@ -187,7 +187,7 @@ function MaintenanceWorkerSearchFilters({ placeholder="By name, or phone..." className="w-full sm:w-50" /> - - - + + diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/NotFound.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/NotFound.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/NotFound.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/NotFound.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/PropertySearch.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/PropertySearch.tsx similarity index 96% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/PropertySearch.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/PropertySearch.tsx index c6a8a65..011efaa 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/PropertySearch.tsx +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/PropertySearch.tsx @@ -22,7 +22,7 @@ import { } from "../features/object-search/components/FilterContext"; import { FilterRow } from "../components/layout/FilterRow"; import { SearchFilter } from "../features/object-search/components/filters/SearchFilter"; -import { SelectFilter } from "../features/object-search/components/filters/SelectFilter"; +import { MultiSelectFilter } from "../features/object-search/components/filters/MultiSelectFilter"; import { NumericRangeFilter } from "../features/object-search/components/filters/NumericRangeFilter"; import { ObjectSearchErrorState } from "../components/shared/ObjectSearchErrorState"; import PaginationControls from "../features/object-search/components/PaginationControls"; @@ -171,13 +171,13 @@ function PropertySearchFilters({ placeholder="Search by name or address..." className="w-full sm:w-50" /> - - + - diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/TestAccPage.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/TestAccPage.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/pages/TestAccPage.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/pages/TestAccPage.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/router-utils.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/router-utils.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/router-utils.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/router-utils.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/routes.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/routes.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/routes.tsx rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/routes.tsx diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/styles/global.css b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/styles/global.css similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/styles/global.css rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/styles/global.css diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/types/conversation.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/types/conversation.ts similarity index 93% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/types/conversation.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/types/conversation.ts index da16df7..27209e4 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/types/conversation.ts +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/src/types/conversation.ts @@ -18,6 +18,8 @@ export interface AgentforceConversationClientProps { inline?: boolean; /** Show/hide chat header. Defaults to true for floating; can only be set for inline mode. */ headerEnabled?: boolean; + /** Show/hide agent icon in the header. */ + showHeaderIcon?: boolean; /** Inline width. */ width?: string | number; /** Inline height. */ diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/tsconfig.json b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.json similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/tsconfig.json rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.json diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/tsconfig.node.json b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.node.json similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/tsconfig.node.json rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.node.json diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/webapplication.json b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/ui-bundle.json similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/webapplication.json rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/ui-bundle.json diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vite-env.d.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vite-env.d.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vite-env.d.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vite-env.d.ts diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/vite.config.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vite.config.ts similarity index 97% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/vite.config.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vite.config.ts index 5efd81c..fcc0de8 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/vite.config.ts +++ b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vite.config.ts @@ -4,7 +4,7 @@ import react from '@vitejs/plugin-react'; import path from 'path'; import { resolve } from 'path'; import tailwindcss from '@tailwindcss/vite'; -import salesforce from '@salesforce/vite-plugin-webapp-experimental'; +import salesforce from '@salesforce/vite-plugin-ui-bundle'; import codegen from 'vite-plugin-graphql-codegen'; const schemaPath = resolve(__dirname, '../../../../../schema.graphql'); diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vitest-env.d.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vitest-env.d.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vitest-env.d.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vitest-env.d.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vitest.config.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vitest.config.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vitest.config.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vitest.config.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vitest.setup.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vitest.setup.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/vitest.setup.ts rename to samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/uiBundles/propertymanagementapp/vitest.setup.ts diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/applications.ts b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/applications.ts deleted file mode 100644 index 9e58a5f..0000000 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/api/applications/applications.ts +++ /dev/null @@ -1,55 +0,0 @@ -import GET_APPLICATIONS from "./query/getApplications.graphql?raw"; -import UPDATE_APPLICATION_STATUS from "./query/updateApplicationStatus.graphql?raw"; -import type { - GetApplicationsQuery, - UpdateApplicationStatusMutationVariables, - UpdateApplicationStatusMutation, - GetApplicationsQueryVariables, -} from "../graphql-operations-types.js"; -import { executeGraphQL } from "../graphqlClient.js"; - -export type ApplicationNode = NonNullable< - NonNullable< - NonNullable["edges"] - >[number] ->["node"]; - -export async function getApplications(): Promise[]> { - try { - const data = await executeGraphQL( - GET_APPLICATIONS, - {}, - ); - const edges = data?.uiapi?.query?.Application__c?.edges || []; - return edges - .map((edge) => edge?.node) - .filter((node): node is NonNullable => node != null); - } catch (error) { - console.error("Error fetching applications:", error); - return []; - } -} - -export async function updateApplicationStatus( - applicationId: string, - status: string, -): Promise { - const variables: UpdateApplicationStatusMutationVariables = { - input: { - Id: applicationId, - Application__c: { - Status__c: status, - }, - }, - }; - try { - const data = await executeGraphQL< - UpdateApplicationStatusMutation, - UpdateApplicationStatusMutationVariables - >(UPDATE_APPLICATION_STATUS, variables); - return !!data?.uiapi?.Application__cUpdate?.success; - } catch (error) { - console.error("Error updating application status:", error); - return false; - } -} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/NumericRangeFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/NumericRangeFilter.tsx deleted file mode 100644 index 9554bdd..0000000 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/NumericRangeFilter.tsx +++ /dev/null @@ -1,85 +0,0 @@ -import { Input } from "../../../../components/ui/input"; -import { Label } from "../../../../components/ui/label"; -import { cn } from "../../../../lib/utils"; -import { useFilterField } from "../FilterContext"; -import type { ActiveFilterValue } from "../../utils/filterUtils"; - -interface NumericRangeFilterProps extends Omit, "onChange"> { - field: string; - label: string; - helpText?: string; -} - -export function NumericRangeFilter({ - field, - label, - helpText, - className, - ...props -}: NumericRangeFilterProps) { - const { value, onChange } = useFilterField(field); - return ( -
- - - {helpText &&

{helpText}

} -
- ); -} - -interface NumericRangeFilterInputsProps extends Omit, "onChange"> { - field: string; - label: string; - value: ActiveFilterValue | undefined; - onChange: (value: ActiveFilterValue | undefined) => void; - minInputProps?: React.ComponentProps; - maxInputProps?: React.ComponentProps; -} - -export function NumericRangeFilterInputs({ - field, - label, - value, - onChange, - className, - minInputProps, - maxInputProps, - ...props -}: NumericRangeFilterInputsProps) { - const handleChange = (bound: "min" | "max", v: string) => { - const next = { - field, - label, - type: "numeric" as const, - min: value?.min ?? "", - max: value?.max ?? "", - [bound]: v, - }; - if (!next.min && !next.max) { - onChange(undefined); - } else { - onChange(next); - } - }; - - return ( -
- handleChange("min", e.target.value)} - aria-label={`${label} minimum`} - {...minInputProps} - /> - handleChange("max", e.target.value)} - aria-label={`${label} maximum`} - {...maxInputProps} - /> -
- ); -} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx b/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx deleted file mode 100644 index c0ba308..0000000 --- a/samples/webapp-template-app-react-sample-b2e-experimental/force-app/main/default/webapplications/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { Label } from "../../../../components/ui/label"; -import { cn } from "../../../../lib/utils"; -import { SearchBar } from "../SearchBar"; -import { useFilterField } from "../FilterContext"; - -interface SearchFilterProps extends Omit, "onChange"> { - field: string; - label: string; - placeholder?: string; -} - -export function SearchFilter({ - field, - label, - placeholder, - className, - ...props -}: SearchFilterProps) { - const { value, onChange } = useFilterField(field); - return ( -
- - { - if (v) { - onChange({ field, label, type: "search", value: v }); - } else { - onChange(undefined); - } - }} - placeholder={placeholder} - inputProps={{ id: `filter-${field}` }} - /> -
- ); -} diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/package-lock.json b/samples/webapp-template-app-react-sample-b2e-experimental/package-lock.json index 326182b..ccb3123 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/package-lock.json +++ b/samples/webapp-template-app-react-sample-b2e-experimental/package-lock.json @@ -1,12 +1,12 @@ { "name": "@salesforce/webapp-template-base-sfdx-project-experimental", - "version": "1.116.6", + "version": "1.117.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@salesforce/webapp-template-base-sfdx-project-experimental", - "version": "1.116.6", + "version": "1.117.3", "license": "SEE LICENSE IN LICENSE.txt", "devDependencies": { "@lwc/eslint-plugin-lwc": "^3.3.0", diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/package.json b/samples/webapp-template-app-react-sample-b2e-experimental/package.json index 9d48005..b7249e5 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/package.json +++ b/samples/webapp-template-app-react-sample-b2e-experimental/package.json @@ -1,6 +1,6 @@ { - "name": "@salesforce/webapp-template-base-sfdx-project-experimental", - "version": "1.116.6", + "name": "@salesforce/ui-bundle-template-base-sfdx-project", + "version": "1.117.3", "description": "Base SFDX project template", "license": "SEE LICENSE IN LICENSE.txt", "publishConfig": { diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/scripts/graphql-search.sh b/samples/webapp-template-app-react-sample-b2e-experimental/scripts/graphql-search.sh index e11f41e..cd683b5 100755 --- a/samples/webapp-template-app-react-sample-b2e-experimental/scripts/graphql-search.sh +++ b/samples/webapp-template-app-react-sample-b2e-experimental/scripts/graphql-search.sh @@ -60,8 +60,8 @@ if [ ! -f "$SCHEMA" ]; then echo "ERROR: schema.graphql not found at $SCHEMA" echo " Make sure you are running from the SFDX project root, or pass the path explicitly:" echo " bash $0 --schema " - echo " If the file is missing entirely, generate it from the webapp dir:" - echo " cd force-app/main/default/webapplications/ && npm run graphql:schema" + echo " If the file is missing entirely, generate it from the ui-bundle dir:" + echo " cd force-app/main/default/uiBundles/ && npm run graphql:schema" exit 1 fi @@ -73,8 +73,8 @@ fi if [ ! -s "$SCHEMA" ]; then echo "ERROR: schema.graphql is empty at $SCHEMA" - echo " Regenerate it from the webapp dir:" - echo " cd force-app/main/default/webapplications/ && npm run graphql:schema" + echo " Regenerate it from the ui-bundle dir:" + echo " cd force-app/main/default/uiBundles/ && npm run graphql:schema" exit 1 fi diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/scripts/setup-cli.mjs b/samples/webapp-template-app-react-sample-b2e-experimental/scripts/setup-cli.mjs index 3613943..0c1fb2e 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/scripts/setup-cli.mjs +++ b/samples/webapp-template-app-react-sample-b2e-experimental/scripts/setup-cli.mjs @@ -1,23 +1,23 @@ #!/usr/bin/env node /** - * One-command setup: login, deploy, optional permset/data, GraphQL schema/codegen, web app build. + * One-command setup: login, deploy, optional permset/data, GraphQL schema/codegen, UI bundle build. * Use this script to make setup easier for each app generated from this template. * * Usage: * node scripts/setup-cli.mjs --target-org # interactive step picker (all selected) * node scripts/setup-cli.mjs --target-org --yes # skip picker, run all steps * node scripts/setup-cli.mjs --target-org afv5 --skip-login - * node scripts/setup-cli.mjs --target-org afv5 --skip-data --skip-webapp-build - * node scripts/setup-cli.mjs --target-org myorg --webapp-name my-app + * node scripts/setup-cli.mjs --target-org afv5 --skip-data --skip-ui-bundle-build + * node scripts/setup-cli.mjs --target-org myorg --ui-bundle-name my-app * * Steps (in order): * 1. login — sf org login web only if org not already connected (skip with --skip-login) - * 2. webapp — (all web apps) npm install && npm run build so dist exists for deploy (skip with --skip-webapp-build) + * 2. uiBundle — (all UI bundles) npm install && npm run build so dist exists for deploy (skip with --skip-ui-bundle-build) * 3. deploy — sf project deploy start --target-org (requires dist for entity deployment) * 4. permset — sf org assign permset for each *.permissionset-meta.xml (skip with --skip-permset; override via --permset-name) * 5. data — prepare unique fields + sf data import tree (skipped if no data dir/plan) - * 6. graphql — (in webapp) npm run graphql:schema then npm run graphql:codegen - * 7. dev — (in webapp) npm run dev — launch dev server (skip with --skip-dev) + * 6. graphql — (in UI bundle) npm run graphql:schema then npm run graphql:codegen + * 7. dev — (in UI bundle) npm run dev — launch dev server (skip with --skip-dev) */ import { spawnSync } from 'node:child_process'; @@ -44,14 +44,14 @@ function resolveSfdxSource() { } const SFDX_SOURCE = resolveSfdxSource(); -const WEBAPPLICATIONS_DIR = resolve(SFDX_SOURCE, 'webapplications'); +const UIBUNDLES_DIR = resolve(SFDX_SOURCE, 'uiBundles'); const DATA_DIR = resolve(SFDX_SOURCE, 'data'); const DATA_PLAN = resolve(SFDX_SOURCE, 'data/data-plan.json'); function parseArgs() { const args = process.argv.slice(2); let targetOrg = null; - let webappName = null; + let uiBundleName = null; /** If non-empty, only these names are assigned; otherwise all discovered from the project. */ const permsetNamesExplicit = []; let yes = false; @@ -61,14 +61,14 @@ function parseArgs() { skipPermset: false, skipData: false, skipGraphql: false, - skipWebappBuild: false, + skipUIBundleBuild: false, skipDev: false, }; for (let i = 0; i < args.length; i++) { if (args[i] === '--target-org' && args[i + 1]) { targetOrg = args[++i]; - } else if (args[i] === '--webapp-name' && args[i + 1]) { - webappName = args[++i]; + } else if (args[i] === '--ui-bundle-name' && args[i + 1]) { + uiBundleName = args[++i]; } else if (args[i] === '--permset-name' && args[i + 1]) { permsetNamesExplicit.push(args[++i]); } else if (args[i] === '--skip-login') flags.skipLogin = true; @@ -76,7 +76,7 @@ function parseArgs() { else if (args[i] === '--skip-permset') flags.skipPermset = true; else if (args[i] === '--skip-data') flags.skipData = true; else if (args[i] === '--skip-graphql') flags.skipGraphql = true; - else if (args[i] === '--skip-webapp-build') flags.skipWebappBuild = true; + else if (args[i] === '--skip-ui-bundle-build') flags.skipUIBundleBuild = true; else if (args[i] === '--skip-dev') flags.skipDev = true; else if (args[i] === '--yes' || args[i] === '-y') yes = true; else if (args[i] === '--help' || args[i] === '-h') { @@ -90,14 +90,14 @@ Required: --target-org Target Salesforce org alias (e.g. myorg) Options: - --webapp-name Web app folder name under webapplications/ (default: auto-detect) + --ui-bundle-name UI bundle folder name under uiBundles/ (default: auto-detect) --permset-name Assign only this permission set (repeatable). Default: all sets under permissionsets/ --skip-login Skip login step (login is auto-skipped if org is already connected) --skip-deploy Do not deploy metadata --skip-permset Do not assign permission set --skip-data Do not prepare data or run data import --skip-graphql Do not fetch schema or run GraphQL codegen - --skip-webapp-build Do not npm install / build the web application + --skip-ui-bundle-build Do not npm install / build the UI bundle --skip-dev Do not launch the dev server at the end -y, --yes Skip interactive step picker; run all enabled steps immediately -h, --help Show this help @@ -109,35 +109,35 @@ Options: console.error('Error: --target-org is required.'); process.exit(1); } - return { targetOrg, webappName, permsetNamesExplicit, yes, ...flags }; + return { targetOrg, uiBundleName, permsetNamesExplicit, yes, ...flags }; } -function discoverAllWebappDirs(webappName) { - if (!existsSync(WEBAPPLICATIONS_DIR)) { - console.error(`Error: webapplications directory not found: ${WEBAPPLICATIONS_DIR}`); +function discoverAllUIBundleDirs(uiBundleName) { + if (!existsSync(UIBUNDLES_DIR)) { + console.error(`Error: uiBundles directory not found: ${UIBUNDLES_DIR}`); process.exit(1); } - const entries = readdirSync(WEBAPPLICATIONS_DIR, { withFileTypes: true }); + const entries = readdirSync(UIBUNDLES_DIR, { withFileTypes: true }); const dirs = entries.filter((e) => e.isDirectory() && !e.name.startsWith('.')); if (dirs.length === 0) { - console.error(`Error: No web app folder found under ${WEBAPPLICATIONS_DIR}`); + console.error(`Error: No UI bundle folder found under ${UIBUNDLES_DIR}`); process.exit(1); } - if (webappName) { - const requested = dirs.find((d) => d.name === webappName); + if (uiBundleName) { + const requested = dirs.find((d) => d.name === uiBundleName); if (!requested) { - console.error(`Error: Web app directory not found: ${webappName}`); + console.error(`Error: UI bundle directory not found: ${uiBundleName}`); process.exit(1); } - return [resolve(WEBAPPLICATIONS_DIR, requested.name)]; + return [resolve(UIBUNDLES_DIR, requested.name)]; } - return dirs.map((d) => resolve(WEBAPPLICATIONS_DIR, d.name)); + return dirs.map((d) => resolve(UIBUNDLES_DIR, d.name)); } -function discoverWebappDir(webappName) { - const all = discoverAllWebappDirs(webappName); - if (all.length > 1 && !webappName) { - console.log(`Multiple web apps found; using first: ${all[0].split(/[/\\]/).pop()}`); +function discoverUIBundleDir(uiBundleName) { + const all = discoverAllUIBundleDirs(uiBundleName); + if (all.length > 1 && !uiBundleName) { + console.log(`Multiple UI bundles found; using first: ${all[0].split(/[/\\]/).pop()}`); } return all[0]; } @@ -294,7 +294,7 @@ function run(name, cmd, args, opts = {}) { async function main() { const { targetOrg, - webappName, + uiBundleName, permsetNamesExplicit, yes, skipLogin: argSkipLogin, @@ -302,7 +302,7 @@ async function main() { skipPermset: argSkipPermset, skipData: argSkipData, skipGraphql: argSkipGraphql, - skipWebappBuild: argSkipWebappBuild, + skipUIBundleBuild: argSkipUIBundleBuild, skipDev: argSkipDev, } = parseArgs(); @@ -319,7 +319,7 @@ async function main() { const stepDefs = [ { key: 'login', label: 'Login — org authentication', enabled: !argSkipLogin, available: true }, - { key: 'webappBuild', label: 'Webapp Build — npm install + build (pre-deploy)', enabled: !argSkipWebappBuild, available: true }, + { key: 'uiBundleBuild', label: 'UI Bundle Build — npm install + build (pre-deploy)', enabled: !argSkipUIBundleBuild, available: true }, { key: 'deploy', label: 'Deploy — sf project deploy start', enabled: !argSkipDeploy, available: true }, { key: 'permset', label: permsetStepLabel, enabled: !argSkipPermset, available: true }, { key: 'data', label: 'Data — delete + import records via Apex', enabled: !argSkipData && hasDataPlan, available: hasDataPlan }, @@ -334,26 +334,26 @@ async function main() { }); const skipLogin = !on.login; - const skipWebappBuild = !on.webappBuild; + const skipUIBundleBuild = !on.uiBundleBuild; const skipDeploy = !on.deploy; const skipPermset = !on.permset; const skipData = !on.data; const skipGraphql = !on.graphql; const skipDev = !on.dev; - const needsWebapp = !skipWebappBuild || !skipGraphql || !skipDev; - const webappDir = needsWebapp ? discoverWebappDir(webappName) : null; + const needsUIBundle = !skipUIBundleBuild || !skipGraphql || !skipDev; + const uiBundleDir = needsUIBundle ? discoverUIBundleDir(uiBundleName) : null; const doData = !skipData; - console.log('Setup — target org:', targetOrg, '| web app:', webappDir ?? '(none)'); + console.log('Setup — target org:', targetOrg, '| UI bundle:', uiBundleDir ?? '(none)'); console.log( - 'Steps: login=%s deploy=%s permset=%s data=%s graphql=%s webapp=%s dev=%s', + 'Steps: login=%s deploy=%s permset=%s data=%s graphql=%s uiBundle=%s dev=%s', !skipLogin, !skipDeploy, !skipPermset, doData, !skipGraphql, - !skipWebappBuild, + !skipUIBundleBuild, !skipDev ); @@ -366,13 +366,13 @@ async function main() { } } - // Build all web apps before deploy so dist exists for entity deployment - if (!skipDeploy && !skipWebappBuild) { - const allWebappDirs = discoverAllWebappDirs(webappName); - for (const dir of allWebappDirs) { + // Build all UI Bundles before deploy so dist exists for entity deployment + if (!skipDeploy && !skipUIBundleBuild) { + const allUIBundleDirs = discoverAllUIBundleDirs(uiBundleName); + for (const dir of allUIBundleDirs) { const name = dir.split(/[/\\]/).pop(); - run(`Web app install (${name})`, 'npm', ['install'], { cwd: dir }); - run(`Web app build (${name})`, 'npm', ['run', 'build'], { cwd: dir }); + run(`UI Bundle install (${name})`, 'npm', ['install'], { cwd: dir }); + run(`UI Bundle build (${name})`, 'npm', ['run', 'build'], { cwd: dir }); } } @@ -535,25 +535,25 @@ async function main() { if (existsSync(tmpApex)) unlinkSync(tmpApex); } - if (!skipGraphql || !skipWebappBuild) { - run('Web app npm install', 'npm', ['install'], { cwd: webappDir }); + if (!skipGraphql || !skipUIBundleBuild) { + run('UI Bundle npm install', 'npm', ['install'], { cwd: uiBundleDir }); } if (!skipGraphql) { run('Set default org for schema', 'sf', ['config', 'set', 'target-org', targetOrg, '--global']); - run('GraphQL schema (introspect)', 'npm', ['run', 'graphql:schema'], { cwd: webappDir }); - run('GraphQL codegen', 'npm', ['run', 'graphql:codegen'], { cwd: webappDir }); + run('GraphQL schema (introspect)', 'npm', ['run', 'graphql:schema'], { cwd: uiBundleDir }); + run('GraphQL codegen', 'npm', ['run', 'graphql:codegen'], { cwd: uiBundleDir }); } - if (!skipWebappBuild) { - run('Web app build', 'npm', ['run', 'build'], { cwd: webappDir }); + if (!skipUIBundleBuild) { + run('UI Bundle build', 'npm', ['run', 'build'], { cwd: uiBundleDir }); } console.log('\n--- Setup complete ---'); if (!skipDev) { console.log('\n--- Launching dev server (Ctrl+C to stop) ---\n'); - run('Dev server', 'npm', ['run', 'dev'], { cwd: webappDir }); + run('Dev server', 'npm', ['run', 'dev'], { cwd: uiBundleDir }); } } diff --git a/samples/webapp-template-app-react-sample-b2e-experimental/scripts/sf-project-setup.mjs b/samples/webapp-template-app-react-sample-b2e-experimental/scripts/sf-project-setup.mjs index 95dcbba..ad5b699 100644 --- a/samples/webapp-template-app-react-sample-b2e-experimental/scripts/sf-project-setup.mjs +++ b/samples/webapp-template-app-react-sample-b2e-experimental/scripts/sf-project-setup.mjs @@ -1,7 +1,7 @@ #!/usr/bin/env node /** * Run from SFDX project root: install dependencies, build, and launch the dev server - * for the web app in force-app/main/default/webapplications/. + * for the UI bundle in force-app/main/default/uiBundles/. * * Usage: npm run sf-project-setup * (from the directory that contains force-app/ and sfdx-project.json) @@ -15,7 +15,7 @@ import { readdirSync, existsSync, readFileSync } from 'node:fs'; const __dirname = dirname(fileURLToPath(import.meta.url)); const ROOT = resolve(__dirname, '..'); -function resolveWebapplicationsDir() { +function resolveUIBundlesDir() { const sfdxPath = resolve(ROOT, 'sfdx-project.json'); if (!existsSync(sfdxPath)) { console.error('Error: sfdx-project.json not found at project root.'); @@ -27,25 +27,25 @@ function resolveWebapplicationsDir() { console.error('Error: No packageDirectories[].path found in sfdx-project.json.'); process.exit(1); } - return resolve(ROOT, pkgDir, 'main', 'default', 'webapplications'); + return resolve(ROOT, pkgDir, 'main', 'default', 'uiBundles'); } -function discoverWebappDir() { - const webapplicationsDir = resolveWebapplicationsDir(); - if (!existsSync(webapplicationsDir)) { - console.error(`Error: webapplications directory not found: ${webapplicationsDir}`); +function discoverUIBundleDir() { + const uiBundlesDir = resolveUIBundlesDir(); + if (!existsSync(uiBundlesDir)) { + console.error(`Error: uiBundles directory not found: ${uiBundlesDir}`); process.exit(1); } - const entries = readdirSync(webapplicationsDir, { withFileTypes: true }); + const entries = readdirSync(uiBundlesDir, { withFileTypes: true }); const dirs = entries.filter((e) => e.isDirectory() && !e.name.startsWith('.')); if (dirs.length === 0) { - console.error(`Error: No web app folder found under ${webapplicationsDir}`); + console.error(`Error: No UI bundle folder found under ${uiBundlesDir}`); process.exit(1); } if (dirs.length > 1) { - console.log(`Multiple web apps found; using first: ${dirs[0].name}`); + console.log(`Multiple UI bundles found; using first: ${dirs[0].name}`); } - return resolve(webapplicationsDir, dirs[0].name); + return resolve(uiBundlesDir, dirs[0].name); } function run(label, cmd, args, opts) { @@ -56,11 +56,11 @@ function run(label, cmd, args, opts) { } } -const webappDir = discoverWebappDir(); +const uiBundleDir = discoverUIBundleDir(); console.log('SFDX project root:', ROOT); -console.log('Web app directory:', webappDir); +console.log('UI bundle directory:', uiBundleDir); -run('npm install', 'npm', ['install', '--registry', 'https://registry.npmjs.org/'], { cwd: webappDir }); -run('npm run build', 'npm', ['run', 'build'], { cwd: webappDir }); +run('npm install', 'npm', ['install', '--registry', 'https://registry.npmjs.org/'], { cwd: uiBundleDir }); +run('npm run build', 'npm', ['run', 'build'], { cwd: uiBundleDir }); console.log('\n--- Launching dev server (Ctrl+C to stop) ---\n'); -run('npm run dev', 'npm', ['run', 'dev'], { cwd: webappDir }); +run('npm run dev', 'npm', ['run', 'dev'], { cwd: uiBundleDir }); diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/.version b/samples/webapp-template-app-react-sample-b2x-experimental/.version index f31f902..ff4d6d3 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/.version +++ b/samples/webapp-template-app-react-sample-b2x-experimental/.version @@ -1 +1 @@ -1.116.6 +1.117.3 diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/AGENT.md b/samples/webapp-template-app-react-sample-b2x-experimental/AGENT.md index bcb171e..26f6fcc 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/AGENT.md +++ b/samples/webapp-template-app-react-sample-b2x-experimental/AGENT.md @@ -1,87 +1,193 @@ -# Agent guide: SFDX project with React web app +# Agent guide: Salesforce UI Bundle development -This project is a **Salesforce DX (SFDX) project** containing a **React web application**. The SFDX source path is defined in `sfdx-project.json` (`packageDirectories[].path`); the web app lives under `/webapplications//`. Use this file when working in this directory. +This project is a **Salesforce DX (SFDX) project** containing a **React UI Bundle**. The UI Bundle is a standalone Vite + React SPA that runs inside the Salesforce platform. Use this file when working in this project. -## SFDX Source Path +## Resolving paths -The source path prefix is **not** always `force-app`. Read `sfdx-project.json` at the project root, take the first `packageDirectories[].path` value, and append `/main/default` to get ``. All paths below use this placeholder. +Read `sfdx-project.json` at the project root. Take the first `packageDirectories[].path` value and append `/main/default` to get ``. The UI Bundle directory is: + +``` +/uiBundles// +``` + +Replace `` with the actual folder name found under `uiBundles/`. The source path is **not** always `force-app` — always resolve it from `sfdx-project.json`. ## Project layout -- **Project root**: this directory — SFDX project root. Contains `sfdx-project.json`, the SFDX source directory, and (optionally) LWC/Aura. -- **React web app**: `/webapplications//` - - Replace `` with the actual app folder name (e.g. `base-react-app`, or the name chosen when the app was generated). - - Entry: `src/App.tsx` - - Routes: `src/routes.tsx` - - API/GraphQL: `src/api/` (e.g. `graphql.ts`, `graphql-operations-types.ts`, `utils/`) +``` +/ +├── sfdx-project.json +├── package.json # SFDX root scripts +├── scripts/ +│ ├── setup-cli.mjs # One-command setup (deploy, schema, build) +│ └── graphql-search.sh # Schema entity lookup +├── config/ +│ └── project-scratch-def.json +│ +└── / + ├── uiBundles/ + │ └── / # ← React UI Bundle (primary workspace) + │ ├── .uibundle-meta.xml + │ ├── ui-bundle.json + │ ├── index.html + │ ├── package.json + │ ├── vite.config.ts / tsconfig.json + │ ├── vitest.config.ts / playwright.config.ts + │ ├── codegen.yml / .graphqlrc.yml + │ └── src/ # All application code lives here + │ + ├── classes/ # Apex classes (optional) + ├── objects/ # Custom objects and fields (optional) + ├── permissionsets/ # Permission sets (optional) + ├── cspTrustedSites/ # CSP trusted site definitions (optional) + ├── layouts/ # Object layouts (optional) + ├── triggers/ # Apex triggers (optional) + └── data/ # Sample data for import (optional) +``` -Path convention: **webapplications** (lowercase). +## Web application source structure + +All application code lives inside the UI Bundle's `src/` directory: + +``` +src/ +├── app.tsx # Entry point — creates the browser router +├── appLayout.tsx # Shell layout (header, navigation, Outlet, footer) +├── routes.tsx # Single route registry for the entire app +├── navigationMenu.tsx # Navigation component +├── router-utils.tsx # Router helpers +├── lib/utils.ts # Utility functions (cn, etc.) +├── styles/global.css # Tailwind global styles +├── api/ # GraphQL operations, clients, data services +├── assets/ # Static SVGs, images +├── components/ +│ ├── ui/ # Shared primitives (shadcn-style: button, card, input, etc.) +│ ├── layout/ # Layout components (header, footer, sidebar) +│ └── / # Feature-specific components +├── features/ # Feature modules (auth, search, etc.) +├── hooks/ # Custom React hooks +├── pages/ # Page components (one per route) +├── public/ # Static assets served as-is +└── utils/ # Shared utilities +``` + +### Key files + +| File | Role | +|------|------| +| `app.tsx` | Creates `BrowserRouter`; do not add UI here | +| `appLayout.tsx` | Source of truth for navigation, header, footer, and page shell | +| `routes.tsx` | Single route registry; all pages are children of the layout route | +| `.uibundle-meta.xml` | Salesforce deploy descriptor (`masterLabel`, `version`, `isActive`) | +| `ui-bundle.json` | Runtime config (`outputDir`, routing) | ## Two package.json contexts -### 1. Project root (this directory) +### 1. Project root -Used for SFDX metadata (LWC, Aura, etc.). Scripts here are for the base SFDX template: +Used for SFDX metadata tooling. Scripts here target LWC/Aura, not the React app. | Command | Purpose | |---------|---------| -| `npm run lint` | ESLint for `aura/` and `lwc/` | | `npm run test` | LWC Jest (passWithNoTests) | -| `npm run prettier` | Format supported metadata files | +| `npm run prettier` | Format metadata files | | `npm run prettier:verify` | Check Prettier | -**One-command setup:** From project root run `node scripts/setup-cli.mjs --target-org ` to run login (if needed), deploy, optional permset/data import, GraphQL schema/codegen, web app build, and optionally the dev server. Use `node scripts/setup-cli.mjs --help` for options (e.g. `--skip-login`, `--skip-data`, `--webapp-name`). +**One-command setup:** `node scripts/setup-cli.mjs --target-org ` runs login, deploy, permset assignment, data import, GraphQL schema/codegen, UI Bundle build, and optionally the dev server. Use `--help` for all flags. -Root **does not** run the React app. The root `npm run build` is a no-op for the base SFDX project. +### 2. Web app directory (primary workspace) -### 2. React web app (where you do most work) - -**Always `cd` into the web app directory for dev/build/lint/test:** - -```bash -cd /webapplications/ -``` +**Always `cd` into the UI Bundle directory for dev/build/lint/test:** | Command | Purpose | |---------|---------| | `npm run dev` | Start Vite dev server | -| `npm run build` | TypeScript (`tsc -b`) + Vite build | +| `npm run build` | TypeScript check + Vite production build | | `npm run lint` | ESLint for the React app | -| `npm run test` | Vitest | +| `npm run test` | Vitest unit tests | | `npm run preview` | Preview production build | -| `npm run graphql:codegen` | Generate GraphQL types | -| `npm run graphql:schema` | Fetch GraphQL schema | +| `npm run graphql:codegen` | Generate GraphQL types from schema | +| `npm run graphql:schema` | Fetch GraphQL schema from org | -**Before finishing changes:** run `npm run build` and `npm run lint` from the web app directory; both must succeed. +**Before completing any change:** run `npm run build` and `npm run lint` from the UI Bundle directory. Both must pass with zero errors. -## Agent rules (.a4drules/) +## Development conventions -Markdown rules at the project root under **.a4drules/** define platform constraints: +### UI -- **`.a4drules/webapp-ui.md`** — Salesforce Web Application UI (scaffold with `sf webapp generate`, no LWC/Aura for new UI). -- **`.a4drules/webapp-data.md`** — Salesforce data access (Data SDK only, supported APIs, GraphQL workflow, `scripts/graphql-search.sh` for schema lookup). +- **Component library:** shadcn/ui primitives in `src/components/ui/`. Always use these over raw HTML equivalents. +- **Styling:** Tailwind CSS only. No inline `style={{}}`. Use `cn()` from `@/lib/utils` for conditional classes. +- **Icons:** Lucide React. +- **Path alias:** `@/*` maps to `src/*`. Use it for all imports. +- **TypeScript:** No `any`. Use proper types, generics, or `unknown`. +- **Components:** Accept `className?: string` prop. Extract shared state to custom hooks in `src/hooks/`. +- **React apps must not** import Salesforce platform modules (`lightning/*`, `@wire`, LWC APIs). -When rules refer to "web app directory" or `/webapplications//`, resolve `` from `sfdx-project.json` and use the **actual app folder name** for this project. +### Routing + +- React Router with `createBrowserRouter`. Route definitions live exclusively in `routes.tsx`. +- All page routes are children of the layout route (which renders `appLayout.tsx`). +- Default-export one component per page file. +- The catch-all `path: '*'` route must always be last. +- Navigation uses absolute paths (`/dashboard`). Non-router imports use dot-relative paths (`./utils`). +- Navigation visibility is driven by `handle.showInNavigation` on route definitions. + +### Layout and navigation + +- `appLayout.tsx` owns the header, navigation menu, footer, and ``. +- To modify header or footer, edit `appLayout.tsx` and create components in `src/components/layout/`. +- To add a page, add a route in `routes.tsx` and create the page component — do not modify `appLayout.tsx` or `app.tsx` for page additions. + +### Data access (Salesforce) + +- **All data access uses the Data SDK** (`@salesforce/sdk-data`) via `createDataSDK()`. +- **Never** use `fetch()` or `axios` directly for Salesforce data. +- **GraphQL is preferred** for record operations (`sdk.graphql`). Use `sdk.fetch` only when GraphQL cannot cover the case (UI API REST, Apex REST, Connect REST, Einstein LLM). +- Use optional chaining: `sdk.graphql?.()`, `sdk.fetch?.()`. +- Apply the `@optional` directive to all record fields for field-level security resilience. +- Verify field and object names via `scripts/graphql-search.sh` before writing queries. +- Use `__SF_API_VERSION__` global for API version in REST calls. +- **Blocked APIs:** Enterprise REST query endpoint (`/query` with SOQL), `@AuraEnabled` Apex, Chatter API. + +### CSP trusted sites + +Any external domain the app calls (APIs, CDNs, fonts) must have a `.cspTrustedSite-meta.xml` file under `/cspTrustedSites/`. Unregistered domains are blocked at runtime. Each subdomain needs its own entry. URLs must be HTTPS with no trailing slash, no path, and no wildcards. ## Deploying -**Deployment order:** Metadata (objects, permission sets) must be deployed before GraphQL schema fetch. After any metadata deployment, re-run `npm run graphql:schema` and `npm run graphql:codegen` from the webapp dir. **One-command setup:** `node scripts/setup-cli.mjs --target-org ` runs deploy → permset → schema → codegen in the correct order. +**Deployment order matters.** Metadata (objects, permission sets) must be deployed before fetching the GraphQL schema. After any metadata deployment that changes objects, fields, or permissions, re-run schema fetch and codegen. -From **this project root** (resolve the actual SFDX source path from `sfdx-project.json`): +**Recommended sequence:** + +1. Authenticate to the target org +2. Build the UI Bundle (`npm run build` in the UI Bundle directory) +3. Deploy metadata (`sf project deploy start --source-dir --target-org `) +4. Assign permission sets +5. Import data (only with user confirmation) +6. Fetch GraphQL schema + run codegen (`npm run graphql:schema && npm run graphql:codegen`) +7. Rebuild the UI Bundle (schema changes may affect generated types) + +**Or use the one-command setup:** `node scripts/setup-cli.mjs --target-org ` ```bash -# Build the React app first (replace and with actual values) -cd /webapplications/ && npm i && npm run build && cd - +# Deploy UI Bundle only +sf project deploy start --source-dir /ui-bundles --target-org -# Deploy web app only (replace with actual path, e.g. force-app/main/default) -sf project deploy start --source-dir /webapplications --target-org - -# Deploy all metadata (use the top-level package directory, e.g. force-app) +# Deploy all metadata sf project deploy start --source-dir --target-org ``` -## Conventions (quick reference) +## Skills -- **UI**: shadcn/ui + Tailwind. Import from `@/components/ui/...`. -- **Entry**: Keep `App.tsx` and routes in `src/`; add features as new routes or sections, don't replace the app shell but you may modify it to match the requested design. -- **Data (Salesforce)**: Follow `.a4drules/webapp-data.md` for all Salesforce data access. Use the Data SDK (`createDataSDK()` + `sdk.graphql` or `sdk.fetch`) — never use `fetch` or `axios` directly. GraphQL is preferred; use `sdk.fetch` when GraphQL is not sufficient. +Check for available skills before implementing any of the following: + +| Area | When to consult | +|------|----------------| +| UI generation | Building pages, components, modifying header/footer/layout | +| Salesforce data access | Reading/writing records, GraphQL queries, REST calls | +| Metadata and deployment | Scaffolding apps, configuring CSP, deployment sequencing | +| Feature installation | Before building something from scratch — check if a pre-built feature exists | +| File upload | Adding file upload with Salesforce ContentVersion | +| Agentforce conversation | Adding or modifying the Agentforce chat widget | + +Skills are the authoritative source for detailed patterns, constraints, and code examples in each area. This file provides project-level orientation; skills provide implementation depth. diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/CHANGELOG.md b/samples/webapp-template-app-react-sample-b2x-experimental/CHANGELOG.md index 1c3dfdd..cbee788 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/CHANGELOG.md +++ b/samples/webapp-template-app-react-sample-b2x-experimental/CHANGELOG.md @@ -3,7 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.116.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.5...v1.116.6) (2026-03-26) +## [1.117.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.2...v1.117.3) (2026-03-29) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.117.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.1...v1.117.2) (2026-03-29) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.117.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.0...v1.117.1) (2026-03-28) **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental @@ -11,9 +27,84 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline +# [1.117.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.13...v1.117.0) (2026-03-27) + +**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental + + + + + +## [1.116.13](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.12...v1.116.13) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.12](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.11...v1.116.12) (2026-03-27) + + +### Bug Fixes + +* updating AGENT.md to focus on UI Bundle development ([#366](https://github.com/salesforce-experience-platform-emu/webapps/issues/366)) ([59b94d7](https://github.com/salesforce-experience-platform-emu/webapps/commit/59b94d7b995042051e1622c78f8cd562b6f99244)) + + + + + +## [1.116.11](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.10...v1.116.11) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.10](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.9...v1.116.10) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.9](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.8...v1.116.9) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.7...v1.116.8) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.6...v1.116.7) (2026-03-27) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + +## [1.116.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.5...v1.116.6) (2026-03-26) + +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project + + + + + ## [1.116.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.4...v1.116.5) (2026-03-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -21,7 +112,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.116.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.3...v1.116.4) (2026-03-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -29,7 +120,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.116.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.2...v1.116.3) (2026-03-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -48,7 +139,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.116.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.0...v1.116.1) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -56,7 +147,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.116.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.115.0...v1.116.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -64,7 +155,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.115.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.114.0...v1.115.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -72,7 +163,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.114.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.113.0...v1.114.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -80,7 +171,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.113.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.10...v1.113.0) (2026-03-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -88,7 +179,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.10](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.9...v1.112.10) (2026-03-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -107,7 +198,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.7...v1.112.8) (2026-03-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -115,7 +206,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.6...v1.112.7) (2026-03-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -123,7 +214,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.5...v1.112.6) (2026-03-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -131,7 +222,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.4...v1.112.5) (2026-03-21) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -161,7 +252,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.1...v1.112.2) (2026-03-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -169,7 +260,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.112.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.112.0...v1.112.1) (2026-03-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -188,7 +279,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.111.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.110.1...v1.111.0) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -207,7 +298,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.110.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.9...v1.110.0) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -215,7 +306,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.9](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.8...v1.109.9) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -223,7 +314,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.7...v1.109.8) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -231,7 +322,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.6...v1.109.7) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -239,7 +330,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.5...v1.109.6) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -247,7 +338,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.4...v1.109.5) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -255,7 +346,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.3...v1.109.4) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -263,7 +354,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.2...v1.109.3) (2026-03-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -271,7 +362,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.1...v1.109.2) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -279,7 +370,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.109.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.0...v1.109.1) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -287,7 +378,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.109.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.108.1...v1.109.0) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -295,7 +386,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.108.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.108.0...v1.108.1) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -303,7 +394,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.108.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.6...v1.108.0) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -322,7 +413,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.4...v1.107.5) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -330,7 +421,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.3...v1.107.4) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -349,7 +440,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.1...v1.107.2) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -357,7 +448,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.107.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.107.0...v1.107.1) (2026-03-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -409,7 +500,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.105.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.105.0...v1.105.1) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -417,7 +508,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.105.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.104.1...v1.105.0) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -425,7 +516,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.104.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.104.0...v1.104.1) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -433,7 +524,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.104.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.6...v1.104.0) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -441,7 +532,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.5...v1.103.6) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -449,7 +540,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.4...v1.103.5) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -457,7 +548,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.3...v1.103.4) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -465,7 +556,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.2...v1.103.3) (2026-03-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -484,7 +575,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.103.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.103.0...v1.103.1) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -492,7 +583,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.103.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.102.1...v1.103.0) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -500,7 +591,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.102.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.102.0...v1.102.1) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -508,7 +599,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.102.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.5...v1.102.0) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -516,7 +607,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.4...v1.101.5) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -524,7 +615,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.3...v1.101.4) (2026-03-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -532,7 +623,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.2...v1.101.3) (2026-03-14) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -540,7 +631,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.1...v1.101.2) (2026-03-14) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -548,7 +639,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.101.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.0...v1.101.1) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -556,7 +647,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.101.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.100.2...v1.101.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -564,7 +655,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.100.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.100.1...v1.100.2) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -572,7 +663,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.100.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.100.0...v1.100.1) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -580,7 +671,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.100.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.99.0...v1.100.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -588,7 +679,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.99.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.98.0...v1.99.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -596,7 +687,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.98.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.97.2...v1.98.0) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -604,7 +695,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.97.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.97.1...v1.97.2) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -612,7 +703,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.97.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.97.0...v1.97.1) (2026-03-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -620,7 +711,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.97.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.96.0...v1.97.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -628,7 +719,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.96.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.95.0...v1.96.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -636,7 +727,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.95.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.94.1...v1.95.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -655,7 +746,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.94.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.93.1...v1.94.0) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -663,7 +754,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.93.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.93.0...v1.93.1) (2026-03-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -671,7 +762,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.93.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.92.1...v1.93.0) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -690,7 +781,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.92.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.91.0...v1.92.0) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -698,7 +789,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.91.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.4...v1.91.0) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -706,7 +797,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.3...v1.90.4) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -714,7 +805,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.2...v1.90.3) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -722,7 +813,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.1...v1.90.2) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -730,7 +821,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.90.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.0...v1.90.1) (2026-03-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -749,7 +840,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.89.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.88.1...v1.89.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -757,7 +848,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.88.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.88.0...v1.88.1) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -765,7 +856,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.88.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.87.0...v1.88.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -776,7 +867,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* new webapp specific rules ([#246](https://github.com/salesforce-experience-platform-emu/webapps/issues/246)) ([cff4738](https://github.com/salesforce-experience-platform-emu/webapps/commit/cff4738ed407828c844e1cd412c962e2a64d869d)) +* new UI Bundle specific rules ([#246](https://github.com/salesforce-experience-platform-emu/webapps/issues/246)) ([cff4738](https://github.com/salesforce-experience-platform-emu/webapps/commit/cff4738ed407828c844e1cd412c962e2a64d869d)) @@ -784,7 +875,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.86.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.85.0...v1.86.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -792,7 +883,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.85.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.84.1...v1.85.0) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -800,7 +891,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.84.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.84.0...v1.84.1) (2026-03-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -822,7 +913,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* dedupe with feature skills, rename to webapp-react-* where relevant @W-21338965@ ([#233](https://github.com/salesforce-experience-platform-emu/webapps/issues/233)) ([9e4e4d8](https://github.com/salesforce-experience-platform-emu/webapps/commit/9e4e4d80f4a33575412e1940a8cbfaae6c035a12)) +* dedupe with feature skills, rename to ui-bundle-react-* where relevant @W-21338965@ ([#233](https://github.com/salesforce-experience-platform-emu/webapps/issues/233)) ([9e4e4d8](https://github.com/salesforce-experience-platform-emu/webapps/commit/9e4e4d80f4a33575412e1940a8cbfaae6c035a12)) @@ -830,7 +921,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.82.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.81.0...v1.82.0) (2026-03-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -838,7 +929,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.81.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.80.1...v1.81.0) (2026-03-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -846,7 +937,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.80.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.80.0...v1.80.1) (2026-03-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -854,7 +945,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.80.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.79.2...v1.80.0) (2026-03-07) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -862,7 +953,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.79.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.79.1...v1.79.2) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -870,7 +961,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.79.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.79.0...v1.79.1) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -878,7 +969,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.79.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.78.0...v1.79.0) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -886,7 +977,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.78.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.77.0...v1.78.0) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -894,7 +985,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.77.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.76.1...v1.77.0) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -902,7 +993,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.76.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.76.0...v1.76.1) (2026-03-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -921,7 +1012,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.75.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.75.0...v1.75.1) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -929,7 +1020,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.75.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.74.0...v1.75.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -937,7 +1028,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.74.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.1...v1.74.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -945,7 +1036,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.73.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.0...v1.73.1) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -953,7 +1044,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.73.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.72.0...v1.73.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -961,7 +1052,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.72.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.3...v1.72.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -969,7 +1060,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.71.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.2...v1.71.3) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -977,7 +1068,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.71.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.1...v1.71.2) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -985,7 +1076,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.71.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.0...v1.71.1) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -993,7 +1084,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.71.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.70.0...v1.71.0) (2026-03-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1001,7 +1092,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.70.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.69.0...v1.70.0) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1009,7 +1100,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.69.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.68.1...v1.69.0) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1017,7 +1108,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.68.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.68.0...v1.68.1) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1025,7 +1116,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.68.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.67.1...v1.68.0) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1033,7 +1124,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.67.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.67.0...v1.67.1) (2026-03-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1041,7 +1132,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.67.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.66.0...v1.67.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1049,7 +1140,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.66.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.65.0...v1.66.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1057,7 +1148,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.65.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.64.0...v1.65.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1065,7 +1156,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.64.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.63.0...v1.64.0) (2026-03-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1084,7 +1175,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.62.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.62.1...v1.62.2) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1092,7 +1183,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.62.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.62.0...v1.62.1) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1100,7 +1191,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.62.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.4...v1.62.0) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1108,7 +1199,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.3...v1.61.4) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1116,7 +1207,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.2...v1.61.3) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1124,7 +1215,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.1...v1.61.2) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1132,7 +1223,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.61.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.61.0...v1.61.1) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1140,7 +1231,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.61.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.2...v1.61.0) (2026-03-02) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1148,7 +1239,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.60.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.1...v1.60.2) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1156,7 +1247,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.60.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.60.0...v1.60.1) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1164,7 +1255,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.60.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.59.2...v1.60.0) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1172,7 +1263,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.59.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.59.1...v1.59.2) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1180,7 +1271,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.59.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.59.0...v1.59.1) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1188,7 +1279,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.59.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.58.2...v1.59.0) (2026-02-27) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1207,7 +1298,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.58.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.58.0...v1.58.1) (2026-02-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1215,7 +1306,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.58.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.57.0...v1.58.0) (2026-02-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1223,7 +1314,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.57.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.56.1...v1.57.0) (2026-02-26) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1231,7 +1322,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.56.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.56.0...v1.56.1) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1239,7 +1330,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.56.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.55.0...v1.56.0) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1247,7 +1338,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.55.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.1...v1.55.0) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1255,7 +1346,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.54.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.54.0...v1.54.1) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1263,7 +1354,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.54.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.2...v1.54.0) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1282,7 +1373,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.53.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.0...v1.53.1) (2026-02-25) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1290,7 +1381,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.53.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.52.1...v1.53.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1298,7 +1389,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.52.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.52.0...v1.52.1) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1306,7 +1397,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.52.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.51.0...v1.52.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1314,7 +1405,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.51.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.50.1...v1.51.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1322,7 +1413,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.50.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.50.0...v1.50.1) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1330,7 +1421,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.50.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.49.0...v1.50.0) (2026-02-24) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1338,7 +1429,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.49.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.3...v1.49.0) (2026-02-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1346,7 +1437,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.48.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.2...v1.48.3) (2026-02-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1354,7 +1445,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.48.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.1...v1.48.2) (2026-02-23) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1362,7 +1453,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.48.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.0...v1.48.1) (2026-02-21) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1370,7 +1461,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.48.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.47.0...v1.48.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1378,7 +1469,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.47.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.2...v1.47.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1386,7 +1477,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.46.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.1...v1.46.2) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1394,7 +1485,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.46.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.0...v1.46.1) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1402,7 +1493,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.46.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.45.1...v1.46.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1410,7 +1501,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.45.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.45.0...v1.45.1) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1418,7 +1509,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.45.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.44.0...v1.45.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1426,7 +1517,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.44.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.43.1...v1.44.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1445,7 +1536,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.43.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.42.0...v1.43.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1453,7 +1544,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.42.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.41.0...v1.42.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1461,7 +1552,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.41.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.40.0...v1.41.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1469,7 +1560,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.40.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.39.0...v1.40.0) (2026-02-20) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1477,7 +1568,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.39.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.1...v1.39.0) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1485,7 +1576,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.38.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.0...v1.38.1) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1493,7 +1584,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.38.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.37.0...v1.38.0) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1501,7 +1592,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.37.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.4...v1.37.0) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1509,7 +1600,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.3...v1.36.4) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1517,7 +1608,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.2...v1.36.3) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1525,7 +1616,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.1...v1.36.2) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1533,7 +1624,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.36.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.0...v1.36.1) (2026-02-19) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1563,7 +1654,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.35.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.0...v1.35.1) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1571,7 +1662,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.35.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.34.0...v1.35.0) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1579,7 +1670,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.34.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.6...v1.34.0) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1587,7 +1678,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.5...v1.33.6) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1595,7 +1686,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.4...v1.33.5) (2026-02-18) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1603,7 +1694,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.3...v1.33.4) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1611,7 +1702,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.2...v1.33.3) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1619,7 +1710,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.1...v1.33.2) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1627,7 +1718,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.33.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.0...v1.33.1) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1635,7 +1726,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.33.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.32.0...v1.33.0) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1643,7 +1734,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.32.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.31.0...v1.32.0) (2026-02-17) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1651,7 +1742,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.31.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.30.1...v1.31.0) (2026-02-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1659,7 +1750,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.30.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.30.0...v1.30.1) (2026-02-16) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1678,7 +1769,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.29.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.29.0...v1.29.1) (2026-02-13) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1686,7 +1777,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.29.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.2...v1.29.0) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1694,7 +1785,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.28.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.1...v1.28.2) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1702,7 +1793,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.28.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.0...v1.28.1) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1710,7 +1801,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.28.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.27.1...v1.28.0) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1718,7 +1809,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.27.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.27.0...v1.27.1) (2026-02-12) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1737,7 +1828,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.26.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.2...v1.26.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1745,7 +1836,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.25.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.1...v1.25.2) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1753,7 +1844,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.25.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.0...v1.25.1) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1761,7 +1852,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.25.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.24.0...v1.25.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1769,7 +1860,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.24.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.23.0...v1.24.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1777,7 +1868,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.23.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.22.1...v1.23.0) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1785,7 +1876,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.22.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.22.0...v1.22.1) (2026-02-11) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1804,7 +1895,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.21.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.20.0...v1.21.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1812,7 +1903,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.20.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.19.1...v1.20.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1820,7 +1911,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.19.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.19.0...v1.19.1) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1828,7 +1919,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.19.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.18.0...v1.19.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1836,7 +1927,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.18.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.17.1...v1.18.0) (2026-02-10) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1844,7 +1935,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.17.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.17.0...v1.17.1) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1852,7 +1943,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.17.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.16.1...v1.17.0) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1860,7 +1951,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.16.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.16.0...v1.16.1) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1868,7 +1959,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.16.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.15.0...v1.16.0) (2026-02-09) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1876,7 +1967,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.15.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.14.0...v1.15.0) (2026-02-07) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1884,7 +1975,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.14.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.13.0...v1.14.0) (2026-02-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1903,7 +1994,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.12.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.2...v1.12.0) (2026-02-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1911,7 +2002,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.11.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.1...v1.11.2) (2026-02-06) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1919,7 +2010,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.11.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.0...v1.11.1) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1927,7 +2018,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.11.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.10.0...v1.11.0) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1935,7 +2026,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.10.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.9.0...v1.10.0) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1943,7 +2034,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.9.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.8.1...v1.9.0) (2026-02-05) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1951,7 +2042,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.8.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.8.0...v1.8.1) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1959,7 +2050,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.8.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.7.0...v1.8.0) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1967,7 +2058,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.7.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.2...v1.7.0) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1975,7 +2066,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.6.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.1...v1.6.2) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1983,7 +2074,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.6.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.0...v1.6.1) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1991,7 +2082,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.6.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.5.1...v1.6.0) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -1999,7 +2090,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.5.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.5.0...v1.5.1) (2026-02-04) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2007,7 +2098,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.5.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.4.0...v1.5.0) (2026-02-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2015,7 +2106,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [1.4.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.5...v1.4.0) (2026-02-03) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2023,7 +2114,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.3.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.4...v1.3.5) (2026-01-31) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project @@ -2031,7 +2122,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.3.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.3...v1.3.4) (2026-01-31) -**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental +**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/README.md b/samples/webapp-template-app-react-sample-b2x-experimental/README.md index e3dd3fb..3d12366 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/README.md +++ b/samples/webapp-template-app-react-sample-b2x-experimental/README.md @@ -1,49 +1,49 @@ # Property Rental App -A property rental sample React web app for Salesforce Experience Cloud. Demonstrates property listings, maintenance requests, and a dashboard with an app shell designed for external-facing deployment. Built with React, Vite, TypeScript, and Tailwind/shadcn. +A property rental sample React UI Bundle for Salesforce Experience Cloud. Demonstrates property listings, maintenance requests, and a dashboard with an app shell designed for external-facing deployment. Built with React, Vite, TypeScript, and Tailwind/shadcn. ## What's included -| Path | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `force-app/main/default/webapplications/propertyrentalapp/` | React web app (source, config, tests) | -| `force-app/main/default/objects/` | 17 custom objects — Agent\_\_c, Application\_\_c, KPI_Snapshot\_\_c, Lease\_\_c, Maintenance_Request\_\_c, Maintenance_Worker\_\_c, Notification\_\_c, Payment\_\_c, Property\_\_c, Property_Cost\_\_c, Property_Feature\_\_c, Property_Image\_\_c, Property_Listing\_\_c, Property_Management_Company\_\_c, Property_Owner\_\_c, Property_Sale\_\_c, Tenant\_\_c | -| `force-app/main/default/layouts/` | Page layouts for each custom object | -| `force-app/main/default/permissionsets/` | `Property_Management_Access` permission set | -| `force-app/main/default/classes/` | Apex classes — `MaintenanceRequestListAction`, `MaintenanceRequestUpdatePriorityAction` | -| `force-app/main/default/cspTrustedSites/` | CSP trusted sites for external resources (Google Fonts, Pexels, Unsplash, GitHub Avatars) | -| `force-app/main/default/data/` | Sample data (JSON) for all objects, importable via `sf data import tree` | -| `force-app/main/default/digitalExperienceConfigs/` | Experience Cloud site configuration | -| `force-app/main/default/digitalExperiences/` | Experience Cloud site definition | -| `force-app/main/default/networks/` | Experience Cloud network | -| `force-app/main/default/sites/` | Salesforce site | +| Path | Description | +| ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `force-app/main/default/uiBundles/propertyrentalapp/` | React UI Bundle (source, config, tests) | +| `force-app/main/default/objects/` | 17 custom objects — Agent\_\_c, Application\_\_c, KPI_Snapshot\_\_c, Lease\_\_c, Maintenance_Request\_\_c, Maintenance_Worker\_\_c, Notification\_\_c, Payment\_\_c, Property\_\_c, Property_Cost\_\_c, Property_Feature\_\_c, Property_Image\_\_c, Property_Listing\_\_c, Property_Management_Company\_\_c, Property_Owner\_\_c, Property_Sale\_\_c, Tenant\_\_c | +| `force-app/main/default/layouts/` | Page layouts for each custom object | +| `force-app/main/default/permissionsets/` | `Property_Management_Access` permission set | +| `force-app/main/default/classes/` | Apex classes — `MaintenanceRequestListAction`, `MaintenanceRequestUpdatePriorityAction` | +| `force-app/main/default/cspTrustedSites/` | CSP trusted sites for external resources (Google Fonts, Pexels, Unsplash, GitHub Avatars) | +| `force-app/main/default/data/` | Sample data (JSON) for all objects, importable via `sf data import tree` | +| `force-app/main/default/digitalExperienceConfigs/` | Experience Cloud site configuration | +| `force-app/main/default/digitalExperiences/` | Experience Cloud site definition | +| `force-app/main/default/networks/` | Experience Cloud network | +| `force-app/main/default/sites/` | Salesforce site | ## Getting started -Navigate to the web app and install dependencies: +Navigate to the UI Bundle and install dependencies: ```bash -cd force-app/main/default/webapplications/propertyrentalapp +cd force-app/main/default/uiBundles/propertyrentalapp npm install npm run dev ``` -Opens at http://localhost:5173 by default. For build and test instructions, see the [web app README](force-app/main/default/webapplications/propertyrentalapp/README.md). +Opens at http://localhost:5173 by default. For build and test instructions, see the [UI Bundle README](force-app/main/default/uiBundles/propertyrentalapp/README.md). ## Deploy -### Deploy everything (metadata + Experience Cloud site + web app) +### Deploy everything (metadata + Experience Cloud site + UI Bundle) ```bash -cd force-app/main/default/webapplications/propertyrentalapp && npm install && npm run build && cd - +cd force-app/main/default/uiBundles/propertyrentalapp && npm install && npm run build && cd - sf project deploy start --source-dir force-app --target-org ``` -### Deploy the web app only +### Deploy the UI Bundle only ```bash -cd force-app/main/default/webapplications/propertyrentalapp && npm install && npm run build && cd - -sf project deploy start --source-dir force-app/main/default/webapplications --target-org +cd force-app/main/default/uiBundles/propertyrentalapp && npm install && npm run build && cd - +sf project deploy start --source-dir force-app/main/default/ui-bundles --target-org ``` ### Deploy metadata only (objects, layouts, permission sets, Apex classes) @@ -78,7 +78,7 @@ sf data import tree --plan force-app/main/default/data/data-plan.json --target-o ## Using setup-cli.mjs -When this app is built (e.g. from the monorepo or from a published package), a `setup-cli.mjs` script is included at the project root. It runs the full setup in one go: login (if needed), deploy metadata, assign the `Property_Management_Access` permission set, prepare and import sample data, fetch GraphQL schema and run codegen, build the web app, and optionally start the dev server. +When this app is built (e.g. from the monorepo or from a published package), a `setup-cli.mjs` script is included at the project root. It runs the full setup in one go: login (if needed), deploy metadata, assign the `Property_Management_Access` permission set, prepare and import sample data, fetch GraphQL schema and run codegen, build the UI Bundle, and optionally start the dev server. Run from the **project root** (the directory that contains `force-app/`, `sfdx-project.json`, and `setup-cli.mjs`): @@ -88,15 +88,15 @@ node setup-cli.mjs --target-org Common options: -| Option | Description | -| --------------------- | ---------------------------------------------------------------- | -| `--skip-login` | Skip browser login (org already authenticated) | -| `--skip-data` | Skip data preparation and import | -| `--skip-graphql` | Skip GraphQL schema fetch and codegen | -| `--skip-webapp-build` | Skip `npm install` and web app build | -| `--skip-dev` | Do not start the dev server at the end | -| `--permset ` | Permission set to assign (default: `Property_Management_Access`) | -| `--app ` | Web app folder name when multiple exist | +| Option | Description | +| ------------------------ | ---------------------------------------------------------------- | +| `--skip-login` | Skip browser login (org already authenticated) | +| `--skip-data` | Skip data preparation and import | +| `--skip-graphql` | Skip GraphQL schema fetch and codegen | +| `--skip-ui-bundle-build` | Skip `npm install` and UI Bundle build | +| `--skip-dev` | Do not start the dev server at the end | +| `--permset ` | Permission set to assign (default: `Property_Management_Access`) | +| `--app ` | Web app folder name when multiple exist | For all options: `node setup-cli.mjs --help`. diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls index b84c7bf..e3fe932 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls @@ -1,4 +1,4 @@ -public with sharing class MaintenanceRequestTriggerHandler { +public without sharing class MaintenanceRequestTriggerHandler { /** * Handles before insert logic for Maintenance Request records @@ -7,11 +7,14 @@ public with sharing class MaintenanceRequestTriggerHandler { public static void handleBeforeInsert(List newRequests) { // Map to store request type to worker type mappings Map requestTypeToWorkerType = new Map{ - 'Plumbing' => 'Plumbing', - 'Electrical' => 'Electrical', - 'HVAC' => 'HVAC (Heating & Cooling)', - 'Appliance' => 'Appliance Repair', - 'Pest' => 'Pest Control' + 'Plumbing' => 'Plumbing', + 'Electrical' => 'Electrical', + 'HVAC' => 'HVAC (Heating & Cooling)', + 'Appliance' => 'Appliance Repair', + 'Carpentry' => 'General Carpentry', + 'Landscaping' => 'Landscaping / Grounds', + 'Cleaning' => 'Janitorial / Cleaning', + 'Pest' => 'Pest Control' }; // Collect unique worker types needed diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler.cls index 0cb1b70..5cb48c8 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler.cls @@ -29,7 +29,15 @@ public with sharing class TenantTriggerHandler { if (userIds.isEmpty()) { return; } + assignTenantMaintenanceAccessAsync(new List(userIds)); + } + @future + private static void assignTenantMaintenanceAccessAsync(List userIdsList) { + Set userIds = new Set(userIdsList); + if (userIds.isEmpty()) { + return; + } List permSets = [ SELECT Id FROM PermissionSet diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls index 49c6b1a..d2b953c 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/TenantTriggerHandler_Test.cls @@ -73,7 +73,9 @@ private class TenantTriggerHandler_Test { static void testNoDuplicateAssign() { Id runAsUserId = UserInfo.getUserId(); Tenant__c tenant = new Tenant__c(User__c = runAsUserId); + Test.startTest(); insert tenant; + Test.stopTest(); Integer countBefore = [ SELECT COUNT() @@ -82,8 +84,10 @@ private class TenantTriggerHandler_Test { AND PermissionSet.Name = 'Tenant_Maintenance_Access' ]; + Test.startTest(); tenant.Status__c = 'Active'; update tenant; + Test.stopTest(); Integer countAfter = [ SELECT COUNT() diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppAuthUtils.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleAuthUtils.cls similarity index 98% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppAuthUtils.cls rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleAuthUtils.cls index 66518c8..c25aae5 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppAuthUtils.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleAuthUtils.cls @@ -1,7 +1,7 @@ /** * Utility class for Web Application authentication REST endpoints. */ -public without sharing class WebAppAuthUtils { +public without sharing class UIBundleAuthUtils { /** * Exception for authentication errors with HTTP status code support. diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppAuthUtils.cls-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleAuthUtils.cls-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppAuthUtils.cls-meta.xml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleAuthUtils.cls-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppChangePassword.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleChangePassword.cls similarity index 96% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppChangePassword.cls rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleChangePassword.cls index 1ac996e..92307ee 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppChangePassword.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleChangePassword.cls @@ -10,7 +10,7 @@ * can change their own password. */ @RestResource(urlMapping='/auth/change-password') -global with sharing class WebAppChangePassword { +global with sharing class UIBundleChangePassword { /** * Changes the password for the currently authenticated user. @@ -36,7 +36,7 @@ global with sharing class WebAppChangePassword { } // Logs are only captured if a Trace Flag is active for the user - WebAppAuthUtils.debugLog(ex, LoggingLevel.ERROR); + UIBundleAuthUtils.debugLog(ex, LoggingLevel.ERROR); RestContext.response.statusCode = 500; return new ErrorPasswordChangeResponse('Password change failed'); diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppChangePassword.cls-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleChangePassword.cls-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppChangePassword.cls-meta.xml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleChangePassword.cls-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppForgotPassword.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleForgotPassword.cls similarity index 95% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppForgotPassword.cls rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleForgotPassword.cls index e7f9e70..48c696b 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppForgotPassword.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleForgotPassword.cls @@ -6,7 +6,7 @@ * Sends a password reset email to the user's registered email address. */ @RestResource(urlMapping='/auth/forgot-password') -global with sharing class WebAppForgotPassword { +global with sharing class UIBundleForgotPassword { /** * Initiates the forgot password process by sending a reset email. @@ -30,7 +30,7 @@ global with sharing class WebAppForgotPassword { return new SuccessForgotPasswordResponse(); } catch (Exception ex) { // Logs are only captured if a Trace Flag is active for the user - WebAppAuthUtils.debugLog(ex, LoggingLevel.ERROR); + UIBundleAuthUtils.debugLog(ex, LoggingLevel.ERROR); RestContext.response.statusCode = 500; return new ErrorForgotPasswordResponse('Could not send password reset link.'); diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppForgotPassword.cls-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleForgotPassword.cls-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppForgotPassword.cls-meta.xml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleForgotPassword.cls-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppLogin.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleLogin.cls similarity index 88% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppLogin.cls rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleLogin.cls index 4adad33..b040543 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppLogin.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleLogin.cls @@ -8,7 +8,7 @@ * @see https://developer.salesforce.com/docs/atlas.en-us.apexref.meta/apexref/apex_classes_sites.htm#apex_System_Site_login */ @RestResource(urlMapping='/auth/login') -global with sharing class WebAppLogin { +global with sharing class UIBundleLogin { /** * Authenticates a user and returns a redirect URL. @@ -23,7 +23,7 @@ global with sharing class WebAppLogin { validateInput(email, password); String username = email.trim().toLowerCase(); - String sanitizedStartUrl = WebAppAuthUtils.getSanitizedStartUrl(startUrl, Site.getPathPrefix()); + String sanitizedStartUrl = UIBundleAuthUtils.getSanitizedStartUrl(startUrl, Site.getPathPrefix()); PageReference loginResult; try { @@ -41,11 +41,11 @@ global with sharing class WebAppLogin { 'Your login attempt has failed. Make sure the username and password are correct.' ); } - } catch (WebAppAuthUtils.AuthException ex) { + } catch (UIBundleAuthUtils.AuthException ex) { RestContext.response.statusCode = ex.statusCode; return new ErrorLoginResponse(ex.messages); } catch (Exception ex) { - WebAppAuthUtils.debugLog(ex, LoggingLevel.ERROR); + UIBundleAuthUtils.debugLog(ex, LoggingLevel.ERROR); RestContext.response.statusCode = 500; return new ErrorLoginResponse('An unexpected error occurred. Please contact your administrator.'); } @@ -55,7 +55,7 @@ global with sharing class WebAppLogin { * Validates login input fields. * @param email The email to validate. * @param password The password to validate. - * @throws WebAppAuthUtils.AuthException if validation fails. + * @throws UIBundleAuthUtils.AuthException if validation fails. */ private static void validateInput(String email, String password) { List errors = new List(); @@ -66,7 +66,7 @@ global with sharing class WebAppLogin { errors.add('Password is required.'); } if (!errors.isEmpty()) { - throw new WebAppAuthUtils.AuthException(400, errors); + throw new UIBundleAuthUtils.AuthException(400, errors); } } diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppLogin.cls-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleLogin.cls-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppLogin.cls-meta.xml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleLogin.cls-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppRegistration.cls b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleRegistration.cls similarity index 86% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppRegistration.cls rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleRegistration.cls index d314bcd..4f909c5 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppRegistration.cls +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleRegistration.cls @@ -9,7 +9,7 @@ * Security: Uses 'without sharing' to allow guest users to check for duplicate usernames. */ @RestResource(urlMapping='/auth/register') -global without sharing class WebAppRegistration { +global without sharing class UIBundleRegistration { /** * Registers a new external user and logs them in. @@ -35,11 +35,11 @@ global without sharing class WebAppRegistration { validatePassword(u, request.password); createUser(u, request.password); - String startUrl = WebAppAuthUtils.getSanitizedStartUrl(request.startUrl, Site.getPathPrefix()); + String startUrl = UIBundleAuthUtils.getSanitizedStartUrl(request.startUrl, Site.getPathPrefix()); PageReference pageRef = Site.login(request.email, request.password, startUrl); return new SuccessRegistrationResponse(pageRef?.getUrl()); - } catch (WebAppAuthUtils.AuthException ex) { + } catch (UIBundleAuthUtils.AuthException ex) { Database.rollback(sp); RestContext.response.statusCode = ex.statusCode; return new ErrorRegistrationResponse(ex.messages); @@ -95,7 +95,7 @@ global without sharing class WebAppRegistration { /** * Trims fields and validates required fields and business rules. - * @throws WebAppAuthUtils.AuthException if validation fails. + * @throws UIBundleAuthUtils.AuthException if validation fails. */ public void validate() { email = email?.trim()?.toLowerCase(); @@ -112,7 +112,7 @@ global without sharing class WebAppRegistration { errors.add('A user with this email already exists.'); } if (!errors.isEmpty()) { - throw new WebAppAuthUtils.AuthException(400, errors); + throw new UIBundleAuthUtils.AuthException(400, errors); } } } @@ -121,13 +121,13 @@ global without sharing class WebAppRegistration { * Validates password against org password policy. * @param user The user record. * @param password The password to validate. - * @throws WebAppAuthUtils.AuthException if password does not meet requirements. + * @throws UIBundleAuthUtils.AuthException if password does not meet requirements. */ private static void validatePassword(User user, String password) { try { Site.validatePassword(user, password, password); } catch (System.SecurityException ex) { - throw new WebAppAuthUtils.AuthException(400, ex.getMessage()); + throw new UIBundleAuthUtils.AuthException(400, ex.getMessage()); } } @@ -136,17 +136,17 @@ global without sharing class WebAppRegistration { * @param u The user record. * @param password The password for the new user. * @return The new user's ID. - * @throws WebAppAuthUtils.AuthException if user creation fails. + * @throws UIBundleAuthUtils.AuthException if user creation fails. */ private static String createUser(User u, String password) { String userId; try { userId = Site.createExternalUser(u, null, password); } catch (Site.ExternalUserCreateException ex) { - throw new WebAppAuthUtils.AuthException(500, ex.getDisplayMessages()); + throw new UIBundleAuthUtils.AuthException(500, ex.getDisplayMessages()); } if (userId == null) { - throw new WebAppAuthUtils.AuthException(500, 'Could not register new user.'); + throw new UIBundleAuthUtils.AuthException(500, 'Could not register new user.'); } return userId; } diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppRegistration.cls-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleRegistration.cls-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/WebAppRegistration.cls-meta.xml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/classes/UIBundleRegistration.cls-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/digitalExperienceConfigs/propertyrentalapp1.digitalExperienceConfig b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/digitalExperienceConfigs/propertyrentalapp1.digitalExperienceConfig-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/digitalExperienceConfigs/propertyrentalapp1.digitalExperienceConfig rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/digitalExperienceConfigs/propertyrentalapp1.digitalExperienceConfig-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/networks/propertyrentalapp.network b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/networks/propertyrentalapp.network-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/networks/propertyrentalapp.network rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/networks/propertyrentalapp.network-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml index 1612d0e..b904f6d 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml @@ -32,11 +32,31 @@ false + + Carpentry + false + + + + Landscaping + false + + + + Cleaning + false + + Pest false + + Other + false + + diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/sites/propertyrentalapp.site b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/sites/propertyrentalapp.site-meta.xml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/sites/propertyrentalapp.site rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/sites/propertyrentalapp.site-meta.xml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.forceignore b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.forceignore similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.forceignore rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.forceignore diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.graphqlrc.yml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.graphqlrc.yml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.graphqlrc.yml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.graphqlrc.yml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.prettierignore b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.prettierignore similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.prettierignore rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.prettierignore diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.prettierrc b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.prettierrc similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/.prettierrc rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/.prettierrc diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/CHANGELOG.md b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/CHANGELOG.md similarity index 50% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/CHANGELOG.md rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/CHANGELOG.md index aa218bb..cfc9c85 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/CHANGELOG.md +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/CHANGELOG.md @@ -7,4 +7,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -- auto bump base react app versions and fix issue with base webapplication json ([#175](https://github.com/salesforce-experience-platform-emu/webapps/issues/175)) ([048b5a8](https://github.com/salesforce-experience-platform-emu/webapps/commit/048b5a8449c899fc923aeebc3c76bc5bf1c5e0d4)) +- auto bump base react app versions and fix issue with base ui-bundle json ([#175](https://github.com/salesforce-experience-platform-emu/webapps/issues/175)) ([048b5a8](https://github.com/salesforce-experience-platform-emu/webapps/commit/048b5a8449c899fc923aeebc3c76bc5bf1c5e0d4)) diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/README.md b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/README.md similarity index 58% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/README.md rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/README.md index a528138..ff4cc21 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/README.md +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/README.md @@ -1,6 +1,6 @@ # Property Rental App -A property rental sample React web app with an app shell for Salesforce Experience Cloud. Includes property listings, maintenance requests, and a dashboard. Built with React, Vite, TypeScript, and Tailwind/shadcn. +A property rental sample React UI Bundle with an app shell for Salesforce Experience Cloud. Includes property listings, maintenance requests, and a dashboard. Built with React, Vite, TypeScript, and Tailwind/shadcn. For project-level details (metadata, deploy, sample data), see the [project README](../../../../../../README.md). @@ -24,7 +24,7 @@ Starts the Vite dev server (default: http://localhost:5173). npm run build ``` -Writes the production bundle to `dist/` inside the web app folder. +Writes the production bundle to `dist/` inside the UI Bundle folder. ## Test diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/codegen.yml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/codegen.yml similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/codegen.yml rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/codegen.yml diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/components.json b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/components.json similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/components.json rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/components.json diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/e2e/app.spec.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/e2e/app.spec.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/e2e/app.spec.ts rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/e2e/app.spec.ts diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/eslint.config.js b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/eslint.config.js similarity index 92% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/eslint.config.js rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/eslint.config.js index 0bf9b43..cd400d4 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/eslint.config.js +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/eslint.config.js @@ -18,7 +18,12 @@ const schemaExists = existsSync(schemaPath); const config = [ // Global ignores { - ignores: ['build/**/*', 'dist/**/*', 'coverage/**/*'], + ignores: [ + 'build/**/*', + 'dist/**/*', + 'coverage/**/*', + 'src/api/graphql-operations-types.ts', + ], }, // Config files and build tools (first to avoid inheritance) { @@ -89,11 +94,17 @@ const config = [ 'react/no-unescaped-entities': 'off', '@typescript-eslint/no-unused-vars': [ 'error', - { argsIgnorePattern: '^_' }, + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + caughtErrorsIgnorePattern: '^_', + ignoreRestSiblings: true, + }, ], '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'off', + 'react-hooks/set-state-in-effect': 'warn', }, settings: { react: { diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/index.html b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/index.html similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/index.html rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/index.html diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/package.json b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/package.json similarity index 89% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/package.json rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/package.json index 082dee4..4d75d57 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/package.json +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/package.json @@ -15,8 +15,8 @@ "graphql:schema": "node scripts/get-graphql-schema.mjs" }, "dependencies": { - "@salesforce/sdk-data": "^1.116.6", - "@salesforce/webapp-experimental": "^1.116.6", + "@salesforce/sdk-data": "file:../../../../../../../../../sdk/sdk-data", + "@salesforce/ui-bundle": "file:../../../../../../../../../ui-bundle", "@tailwindcss/vite": "^4.1.17", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", @@ -47,7 +47,7 @@ "@graphql-eslint/eslint-plugin": "^4.1.0", "@graphql-tools/utils": "^11.0.0", "@playwright/test": "^1.49.0", - "@salesforce/vite-plugin-webapp-experimental": "^1.116.6", + "@salesforce/vite-plugin-ui-bundle": "file:../../../../../../../../../vite-plugin-ui-bundle", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.1.0", "@testing-library/user-event": "^14.5.2", diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/playwright.config.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/playwright.config.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/playwright.config.ts rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/playwright.config.ts diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/propertyrentalapp.uibundle-meta.xml b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/propertyrentalapp.uibundle-meta.xml new file mode 100644 index 0000000..c66495a --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/propertyrentalapp.uibundle-meta.xml @@ -0,0 +1,8 @@ + + + propertyrentalapp + A Salesforce UI Bundle. + true + 1 + Experience + diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/scripts/get-graphql-schema.mjs b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/scripts/get-graphql-schema.mjs similarity index 96% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/scripts/get-graphql-schema.mjs rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/scripts/get-graphql-schema.mjs index 50fe06d..7603005 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/scripts/get-graphql-schema.mjs +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/scripts/get-graphql-schema.mjs @@ -10,7 +10,7 @@ */ import { writeFileSync } from 'node:fs'; import { resolve } from 'node:path'; -import { getOrgInfo } from '@salesforce/webapp-experimental/app'; +import { getOrgInfo } from '@salesforce/ui-bundle/app'; import { buildClientSchema, getIntrospectionQuery, printSchema } from 'graphql'; import { pruneSchema } from '@graphql-tools/utils'; diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/scripts/rewrite-e2e-assets.mjs b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/scripts/rewrite-e2e-assets.mjs similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/scripts/rewrite-e2e-assets.mjs rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/scripts/rewrite-e2e-assets.mjs diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/applications/applicationApi.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/applications/applicationApi.ts similarity index 95% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/applications/applicationApi.ts rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/applications/applicationApi.ts index a5bf369..ad18a27 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/applications/applicationApi.ts +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/applications/applicationApi.ts @@ -2,7 +2,7 @@ * Create Application__c (property application) record via Salesforce UI API. * Uses User__c to link the application to the authenticated user. */ -import { createRecord } from "@salesforce/webapp-experimental/api"; +import { createRecord } from "@salesforce/ui-bundle/api"; const OBJECT_API_NAME = "Application__c"; diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/graphql-operations-types.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/graphql-operations-types.ts similarity index 72% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/graphql-operations-types.ts rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/graphql-operations-types.ts index 43c1823..041bc23 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/graphql-operations-types.ts +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/graphql-operations-types.ts @@ -39,6 +39,159 @@ export type Scalars = { Url: { input: string; output: string }; }; +export type AbnExperimentCohort_Filter = { + AbnExperiment?: InputMaybe; + AbnExperimentId?: InputMaybe; + AllocationWeight?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsControl?: InputMaybe; + IsDeleted?: InputMaybe; + IsFallThrough?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Personalizer?: InputMaybe; + PersonalizerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AbnExperimentEngmtSgnlMtrc_Filter = { + AbnExperiment?: InputMaybe; + AbnExperimentId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsHigherBetter?: InputMaybe; + IsPrimary?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Metric?: InputMaybe; + MetricId?: InputMaybe; + OverallScoreWeight?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AbnExperimentEngmtSgnlMtrc_Metric_Filters = { + EngagementSignalCmpndMetric?: InputMaybe; + EngagementSignalMetric?: InputMaybe; + Name?: InputMaybe; +}; + +export type AbnExperiment_Filter = { + ChanceToWinThreshold?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastAnalyzed?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + MaximumDurationInMinutes?: InputMaybe; + MinimumDurationInMinutes?: InputMaybe; + MinimumRequiredParticipants?: InputMaybe; + Name?: InputMaybe; + PersonalizationSchema?: InputMaybe; + PersonalizationSchemaEnum?: InputMaybe; + PersonalizationSchemaId?: InputMaybe; + PrimaryMetric?: InputMaybe; + PrimaryMetricId?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + ScheduleFrequencyInMinutes?: InputMaybe; + Source?: InputMaybe; + SourceRecord?: InputMaybe; + SourceRecordId?: InputMaybe; + StartedDate?: InputMaybe; + State?: InputMaybe; + Status?: InputMaybe; + StoppedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + WinnerSelectionMode?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AbnExperiment_PrimaryMetric_Filters = { + EngagementSignalCmpndMetric?: InputMaybe; + EngagementSignalMetric?: InputMaybe; + Name?: InputMaybe; +}; + +export type AbnExperiment_SourceRecord_Filters = { + FlowRecordElement?: InputMaybe; + ManagedContent?: InputMaybe; + Name?: InputMaybe; +}; + +export type AccountBrand_Filter = { + Account?: InputMaybe; + AccountId?: InputMaybe; + City?: InputMaybe; + CompanyName?: InputMaybe; + Country?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Email?: InputMaybe; + GeocodeAccuracy?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Latitude?: InputMaybe; + LogoId?: InputMaybe; + LogoUrl?: InputMaybe; + Longitude?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Phone?: InputMaybe; + PostalCode?: InputMaybe; + State?: InputMaybe; + Street?: InputMaybe; + SystemModstamp?: InputMaybe; + Website?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AccountBrand_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type AccountHistory_Filter = { Account?: InputMaybe; AccountId?: InputMaybe; @@ -93,6 +246,8 @@ export type Account_Filter = { BillingPostalCode?: InputMaybe; BillingState?: InputMaybe; BillingStreet?: InputMaybe; + ChannelProgramLevelName?: InputMaybe; + ChannelProgramName?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -100,7 +255,9 @@ export type Account_Filter = { Fax?: InputMaybe; Id?: InputMaybe; Industry?: InputMaybe; + IsCustomerPortal?: InputMaybe; IsDeleted?: InputMaybe; + IsPartner?: InputMaybe; Jigsaw?: InputMaybe; JigsawCompanyId?: InputMaybe; LastActivityDate?: InputMaybe; @@ -147,6 +304,8 @@ export type Account_OrderBy = { BillingPostalCode?: InputMaybe; BillingState?: InputMaybe; BillingStreet?: InputMaybe; + ChannelProgramLevelName?: InputMaybe; + ChannelProgramName?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -154,7 +313,9 @@ export type Account_OrderBy = { Fax?: InputMaybe; Id?: InputMaybe; Industry?: InputMaybe; + IsCustomerPortal?: InputMaybe; IsDeleted?: InputMaybe; + IsPartner?: InputMaybe; Jigsaw?: InputMaybe; JigsawCompanyId?: InputMaybe; LastActivityDate?: InputMaybe; @@ -187,6 +348,165 @@ export type Account_OrderBy = { Website?: InputMaybe; }; +export type ActivationTargetHistory_Filter = { + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTargetPlatformHistory_Filter = { + ActivationTargetPlatformId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTargetSecureFtp_Filter = { + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + ChildDirectory?: InputMaybe; + Compression?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CustomFileName?: InputMaybe; + Delimiter?: InputMaybe; + FileDateTimeSuffix?: InputMaybe; + FileNameType?: InputMaybe; + Id?: InputMaybe; + IsCreateFolderWithInChildDir?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MaxFileSizeInBytes?: InputMaybe; + MaxRecordsPerFile?: InputMaybe; + Name?: InputMaybe; + PreDeterminedFileName?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTarget_DataConConfiguration_Filters = { + DataConnectorS3?: InputMaybe; + Name?: InputMaybe; +}; + +export type ActivationTarget_Filter = { + AudienceHistoryDmoId?: InputMaybe; + AudienceHistoryDmoName?: InputMaybe; + AudienceLatestDmoId?: InputMaybe; + AudienceLatestDmoName?: InputMaybe; + AuditDmoId?: InputMaybe; + AuditDmoName?: InputMaybe; + ConnectionType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataConConfiguration?: InputMaybe; + DataConConfigurationId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + ExportToDirectory?: InputMaybe; + ExportToEndpoint?: InputMaybe; + Id?: InputMaybe; + IsCommunicationCappingEnabled?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastPublishStatusDate?: InputMaybe; + LastPublishStatusErrorMessage?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastTargetStatusDateTime?: InputMaybe; + LastTargetStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + MasterLabel?: InputMaybe; + OutputFormat?: InputMaybe; + OwnedByOrg?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + PlatformName?: InputMaybe; + PlatformPrivacyType?: InputMaybe; + RunStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetStatus?: InputMaybe; + TargetType?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActivationTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ActivationTrgtIntOrgAccessHistory_Filter = { + ActivationTrgtIntOrgAccessId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ActvTgtPlatformFieldValueHistory_Filter = { + ActvTgtPlatformFieldValueId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type Agent__History_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -275,14 +595,12 @@ export type AggregateOrderByStringClause = { order?: InputMaybe; }; -export const AggregateOrderByStringFunction = { - Count: "COUNT", - CountDistinct: "COUNT_DISTINCT", - Max: "MAX", - Min: "MIN", -} as const; -export type AggregateOrderByStringFunction = - (typeof AggregateOrderByStringFunction)[keyof typeof AggregateOrderByStringFunction]; +export enum AggregateOrderByStringFunction { + Count = "COUNT", + CountDistinct = "COUNT_DISTINCT", + Max = "MAX", + Min = "MIN", +} export type AnalyticsUserAttrFuncTkn_Filter = { CreatedBy?: InputMaybe; @@ -484,8 +802,6 @@ export type ApprovalSubmissionDetail_Filter = { LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - LastReferencedDate?: InputMaybe; - LastViewedDate?: InputMaybe; Name?: InputMaybe; SystemModstamp?: InputMaybe; and?: InputMaybe>>; @@ -524,8 +840,6 @@ export type ApprovalSubmission_Filter = { LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - LastReferencedDate?: InputMaybe; - LastViewedDate?: InputMaybe; Name?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; @@ -549,6 +863,7 @@ export type ApprovalSubmission_Owner_Filters = { export type ApprovalSubmission_RelatedRecord_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -558,14 +873,19 @@ export type ApprovalSubmission_RelatedRecord_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; CaseComment?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -581,17 +901,37 @@ export type ApprovalSubmission_RelatedRecord_Filters = { ContentVersion?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -602,6 +942,11 @@ export type ApprovalSubmission_RelatedRecord_Filters = { Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; @@ -610,6 +955,10 @@ export type ApprovalSubmission_RelatedRecord_Filters = { OrderItem?: InputMaybe; OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -625,11 +974,12 @@ export type ApprovalSubmission_RelatedRecord_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPersona?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; @@ -684,11 +1034,7 @@ export type ApprovalWorkItem_Filter = { LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - LastReferencedDate?: InputMaybe; - LastViewedDate?: InputMaybe; Name?: InputMaybe; - ParentWorkItem?: InputMaybe; - ParentWorkItemId?: InputMaybe; RelatedRecord?: InputMaybe; RelatedRecordId?: InputMaybe; RelatedRecordObjectName?: InputMaybe; @@ -704,6 +1050,7 @@ export type ApprovalWorkItem_Filter = { export type ApprovalWorkItem_RelatedRecord_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -713,14 +1060,19 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; CaseComment?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -736,17 +1088,37 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { ContentVersion?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -757,6 +1129,11 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; @@ -765,6 +1142,10 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { OrderItem?: InputMaybe; OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -780,11 +1161,12 @@ export type ApprovalWorkItem_RelatedRecord_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPersona?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; @@ -960,84 +1342,150 @@ export type AssociatedLocation_Filter = { or?: InputMaybe>>; }; -export type Attachment_Filter = { - BodyLength?: InputMaybe; - ContentType?: InputMaybe; +export type AsyncOperationTracker_Filter = { + AsyncOperationNumber?: InputMaybe; + CorrelationIdentifier?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; - Description?: InputMaybe; + ExpiresAt?: InputMaybe; + FailedJobItems?: InputMaybe; + FinishedAt?: InputMaybe; Id?: InputMaybe; IsDeleted?: InputMaybe; - IsPrivate?: InputMaybe; + JobType?: InputMaybe; LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; - Name?: InputMaybe; - Owner?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; OwnerId?: InputMaybe; - Parent?: InputMaybe; - ParentId?: InputMaybe; + ParentOperation?: InputMaybe; + ParentOperationId?: InputMaybe; + ReferenceEntity?: InputMaybe; + ReferenceEntityId?: InputMaybe; + Request?: InputMaybe; + Response?: InputMaybe; + SequenceNumber?: InputMaybe; + StartedAt?: InputMaybe; + Status?: InputMaybe; + StepName?: InputMaybe; + SubmittedAt?: InputMaybe; + SuccessfulJobItems?: InputMaybe; SystemModstamp?: InputMaybe; - and?: InputMaybe>>; - not?: InputMaybe; - or?: InputMaybe>>; + TotalJobItems?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; }; -export type Attachment_Owner_Filters = { +export type AsyncOperationTracker_Owner_Filters = { + Group?: InputMaybe; Name?: InputMaybe; User?: InputMaybe; }; -export type Attachment_Parent_Filters = { - Account?: InputMaybe; - Agent__c?: InputMaybe; - Application__c?: InputMaybe; - ApprovalSubmission?: InputMaybe; - ApprovalSubmissionDetail?: InputMaybe; - ApprovalWorkItem?: InputMaybe; - Asset?: InputMaybe; - Campaign?: InputMaybe; - Case?: InputMaybe; - CommSubscription?: InputMaybe; - CommSubscriptionChannelType?: InputMaybe; - CommSubscriptionConsent?: InputMaybe; - CommSubscriptionTiming?: InputMaybe; - Contact?: InputMaybe; - Contract?: InputMaybe; - DelegatedAccount?: InputMaybe; - DevopsEnvironment?: InputMaybe; - DevopsRequestInfo?: InputMaybe; - EmailMessage?: InputMaybe; - EmailTemplate?: InputMaybe; - EngagementChannelType?: InputMaybe; - Event?: InputMaybe; - Image?: InputMaybe; - KPI_Snapshot__c?: InputMaybe; - Lead?: InputMaybe; - Lease__c?: InputMaybe; - Location?: InputMaybe; - Maintenance_Request__c?: InputMaybe; - Maintenance_Worker__c?: InputMaybe; +export type AsyncOperationTracker_ReferenceEntity_Filters = { Name?: InputMaybe; - Notification__c?: InputMaybe; - Opportunity?: InputMaybe; Order?: InputMaybe; - Payment__c?: InputMaybe; Product2?: InputMaybe; - Property_Cost__c?: InputMaybe; - Property_Feature__c?: InputMaybe; - Property_Image__c?: InputMaybe; - Property_Listing__c?: InputMaybe; - Property_Management_Company__c?: InputMaybe; - Property_Owner__c?: InputMaybe; - Property_Sale__c?: InputMaybe; - Property__c?: InputMaybe; - SocialPost?: InputMaybe; - Task?: InputMaybe; - Tenant__c?: InputMaybe; - WorkOrder?: InputMaybe; - WorkOrderLineItem?: InputMaybe; +}; + +export type AttribModelStageMetric_Filter = { + AggregateFunction?: InputMaybe; + Alias?: InputMaybe; + AttribModelStage?: InputMaybe; + AttribModelStageId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignalMetric?: InputMaybe; + EngagementSignalMetricId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AttribModelStage_Filter = { + AttribModel?: InputMaybe; + AttribModelId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalEnum?: InputMaybe; + EngagementSignalId?: InputMaybe; + EngagementSignalType?: InputMaybe; + Id?: InputMaybe; + IsContentMatchRequired?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Sequence?: InputMaybe; + StageUnionGroupName?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type AttribModel_Filter = { + AttribModelStatus?: InputMaybe; + AttribRecordOutputObjectApiName?: InputMaybe; + AttribRecordOutputObjectId?: InputMaybe; + AttributionModelType?: InputMaybe; + AttributionType?: InputMaybe; + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DailyContentOutputObjectId?: InputMaybe; + DailyOutputObjectId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + ErrorCode?: InputMaybe; + GlobalAttributionWindowDays?: InputMaybe; + Id?: InputMaybe; + IdentityResolutionMode?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + IsZeroDayLoadRequired?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefresh?: InputMaybe; + LastSuccessfulRefresh?: InputMaybe; + LastViewedDate?: InputMaybe; + LatestRefreshedStatus?: InputMaybe; + ModelContext?: InputMaybe; + ModelRevision?: InputMaybe; + ModelVersion?: InputMaybe; + Name?: InputMaybe; + Partner?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + ProfileLinkObjectId?: InputMaybe; + ScheduledFrequencyMins?: InputMaybe; + SyncStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + Tags?: InputMaybe; + UnifiedProfileObjectId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; }; export type AuthorizationFormConsentHistory_Filter = { @@ -1292,6 +1740,62 @@ export type BooleanOperators = { ne?: InputMaybe; }; +export type BriefPlanStep_Filter = { + Brief?: InputMaybe; + BriefId?: InputMaybe; + Channel?: InputMaybe; + Content?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + StepNumber?: InputMaybe; + StepType?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetingRule?: InputMaybe; + WaitNumber?: InputMaybe; + WaitUnit?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type Brief_Filter = { + AdditionalNotes?: InputMaybe; + AgentGuardrails?: InputMaybe; + Brand?: InputMaybe; + BrandId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsConversational?: InputMaybe; + IsDeleted?: InputMaybe; + KeyMessage?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PlanName?: InputMaybe; + PrimaryCtas?: InputMaybe; + PrimaryGoal?: InputMaybe; + PrimaryKpi?: InputMaybe; + Priority?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetAudience?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type BusinessBrand_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -1354,6 +1858,80 @@ export type BusinessHours_Filter = { or?: InputMaybe>>; }; +export type CalcAffinityEngmtSgnl_Filter = { + CalculatedAffinity?: InputMaybe; + CalculatedAffinityId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalId?: InputMaybe; + EngagementSignalImpact?: InputMaybe; + EngagementSignalStrength?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type CalculatedAffinityField_Filter = { + CalculatedAffinity?: InputMaybe; + CalculatedAffinityId?: InputMaybe; + CalculatedInsight?: InputMaybe; + CalculatedInsightId?: InputMaybe; + ContentObjectFieldId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type CalculatedAffinity_Filter = { + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDecay?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + LookBackWindow?: InputMaybe; + Name?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + ScoringModel?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type CampaignHistory_Filter = { Campaign?: InputMaybe; CampaignId?: InputMaybe; @@ -1451,7 +2029,10 @@ export type Campaign_Filter = { ActualCost?: InputMaybe; AmountAllOpportunities?: InputMaybe; AmountWonOpportunities?: InputMaybe; + Brief?: InputMaybe; + BriefId?: InputMaybe; BudgetedCost?: InputMaybe; + CampaignImageId?: InputMaybe; CampaignMemberRecordType?: InputMaybe; CampaignMemberRecordTypeId?: InputMaybe; CreatedBy?: InputMaybe; @@ -1604,6 +2185,154 @@ export type Case_Owner_Filters = { User?: InputMaybe; }; +export type ChannelProgramHistory_Filter = { + ChannelProgram?: InputMaybe; + ChannelProgramId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramLevelHistory_Filter = { + ChannelProgramLevel?: InputMaybe; + ChannelProgramLevelId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramLevel_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Program?: InputMaybe; + ProgramId?: InputMaybe; + Rank?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramLevel_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ChannelProgramMemberHistory_Filter = { + ChannelProgramMember?: InputMaybe; + ChannelProgramMemberId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramMember_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Level?: InputMaybe; + LevelId?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Partner?: InputMaybe; + PartnerId?: InputMaybe; + Program?: InputMaybe; + ProgramId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgramMember_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ChannelProgram_Filter = { + Category?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsActive?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ChannelProgram_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type CommSubscriptionChannelTypeHistory_Filter = { CommSubscriptionChannelType?: InputMaybe; CommSubscriptionChannelTypeId?: InputMaybe; @@ -1640,6 +2369,10 @@ export type CommSubscriptionChannelType_Filter = { LastModifiedDate?: InputMaybe; LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelId?: InputMaybe; + MessagingChannelUsage?: InputMaybe; + MessagingChannelUsageId?: InputMaybe; Name?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; @@ -1802,6 +2535,7 @@ export type CommSubscriptionTiming_Filter = { }; export type CommSubscription_Filter = { + BusinessUnitId?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; @@ -2447,6 +3181,8 @@ export type ContentDocumentLink_Filter = { export type ContentDocumentLink_LinkedEntity_Filters = { Account?: InputMaybe; + AccountBrand?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; ApprovalSubmission?: InputMaybe; @@ -2455,8 +3191,12 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AuthorizationFormText?: InputMaybe; + Brief?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -2464,14 +3204,34 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Contact?: InputMaybe; ContentWorkspace?: InputMaybe; Contract?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSpace?: InputMaybe; + DataStream?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; + EmailContent?: InputMaybe; EmailMessage?: InputMaybe; EmailTemplate?: InputMaybe; EngagementChannelType?: InputMaybe; + EngagementSignal?: InputMaybe; EnhancedLetterhead?: InputMaybe; Event?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -2480,6 +3240,11 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Location?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Network?: InputMaybe; Notification__c?: InputMaybe; @@ -2487,6 +3252,10 @@ export type ContentDocumentLink_LinkedEntity_Filters = { Order?: InputMaybe; OrderItem?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; @@ -2760,6 +3529,8 @@ export type ContentVersion_Filter = { export type ContentVersion_FirstPublishLocation_Filters = { Account?: InputMaybe; + AccountBrand?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; ApprovalSubmission?: InputMaybe; @@ -2768,8 +3539,12 @@ export type ContentVersion_FirstPublishLocation_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AuthorizationFormText?: InputMaybe; + Brief?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -2777,14 +3552,34 @@ export type ContentVersion_FirstPublishLocation_Filters = { Contact?: InputMaybe; ContentWorkspace?: InputMaybe; Contract?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSpace?: InputMaybe; + DataStream?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; + EmailContent?: InputMaybe; EmailMessage?: InputMaybe; EmailTemplate?: InputMaybe; EngagementChannelType?: InputMaybe; + EngagementSignal?: InputMaybe; EnhancedLetterhead?: InputMaybe; Event?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -2793,6 +3588,11 @@ export type ContentVersion_FirstPublishLocation_Filters = { Location?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Network?: InputMaybe; Notification__c?: InputMaybe; @@ -2800,6 +3600,10 @@ export type ContentVersion_FirstPublishLocation_Filters = { Order?: InputMaybe; OrderItem?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; @@ -3044,35 +3848,1041 @@ export type Customer_Owner_Filters = { User?: InputMaybe; }; -export const DataType = { - Address: "ADDRESS", - Anytype: "ANYTYPE", - Base64: "BASE64", - Boolean: "BOOLEAN", - Combobox: "COMBOBOX", - Complexvalue: "COMPLEXVALUE", - Currency: "CURRENCY", - Date: "DATE", - Datetime: "DATETIME", - Double: "DOUBLE", - Email: "EMAIL", - Encryptedstring: "ENCRYPTEDSTRING", - Int: "INT", - Json: "JSON", - Junctionidlist: "JUNCTIONIDLIST", - Location: "LOCATION", - Long: "LONG", - Multipicklist: "MULTIPICKLIST", - Percent: "PERCENT", - Phone: "PHONE", - Picklist: "PICKLIST", - Reference: "REFERENCE", - String: "STRING", - Textarea: "TEXTAREA", - Time: "TIME", - Url: "URL", -} as const; -export type DataType = (typeof DataType)[keyof typeof DataType]; +export type DataActionHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataAction?: InputMaybe; + DataActionId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionJobSummaryHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionJobSummaryId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionJobSummary_DataActionDefinition_Filters = { + DataAction?: InputMaybe; + Name?: InputMaybe; +}; + +export type DataActionJobSummary_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataActionDefinition?: InputMaybe; + DataActionDefinitionId?: InputMaybe; + EndExecutionTime?: InputMaybe; + ExecutionDetails?: InputMaybe; + ExternalRequestName?: InputMaybe; + FailedRecordCount?: InputMaybe; + FailedRecords?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + JobStatus?: InputMaybe; + JobType?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + ProcessName?: InputMaybe; + ProcessedRecordCount?: InputMaybe; + PublishDateTime?: InputMaybe; + SkippedRecords?: InputMaybe; + StartExecutionTime?: InputMaybe; + SystemModstamp?: InputMaybe; + UpdatedRecordCount?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionJobSummary_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataActionTargetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataActionTarget?: InputMaybe; + DataActionTargetId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionTarget_Filter = { + ApiContract?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastSigningKeyDateTime?: InputMaybe; + LastTargetStatusDateTime?: InputMaybe; + LastTargetStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedBy?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetApiName?: InputMaybe; + TargetDefinitionId?: InputMaybe; + TargetEndpoint?: InputMaybe; + TargetStatus?: InputMaybe; + TargetType?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataActionTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataAction_Filter = { + ActionApiName?: InputMaybe; + ActionDefinitionId?: InputMaybe; + ActionStatus?: InputMaybe; + AffiliationDmoDeveloperName?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastActionStatusDateTime?: InputMaybe; + LastActionStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedBy?: InputMaybe; + Name?: InputMaybe; + ShouldProcessDayZero?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommCapActvTargetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommCapActvTargetId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommCapActvTarget_Filter = { + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommCapDimId?: InputMaybe; + DataCommCapDimValueId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommCapActvTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataCommunicationCapHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataCommunicationCapId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommunicationCap_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCommunicationCapDefId?: InputMaybe; + DataCommunicationCapStatus?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastStatusDateTime?: InputMaybe; + LastStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataCommunicationCap_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataConnectorS3_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Delimiter?: InputMaybe; + DeveloperName?: InputMaybe; + FileNameWildcard?: InputMaybe; + FileType?: InputMaybe; + Id?: InputMaybe; + ImportFromDirectory?: InputMaybe; + IsDeleted?: InputMaybe; + Language?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MasterLabel?: InputMaybe; + NamespacePrefix?: InputMaybe; + S3BucketName?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataContentLensSourceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataContentLensSourceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataContentLensSource_Filter = { + ContentVersion?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DocumentVersion?: InputMaybe; + FileKey?: InputMaybe; + FileName?: InputMaybe; + FullyQualifiedFilePath?: InputMaybe; + Id?: InputMaybe; + IdentifierField?: InputMaybe; + IndexStatus?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MimeType?: InputMaybe; + Name?: InputMaybe; + RecordIds?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataGraph_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DaoDefinitionId?: InputMaybe; + DaoFieldsCount?: InputMaybe; + DataGraphApiName?: InputMaybe; + DataGraphType?: InputMaybe; + DataSourceObjCount?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + FullRefreshConfig?: InputMaybe; + Id?: InputMaybe; + IncrementalRefreshConfig?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastViewedDate?: InputMaybe; + Levels?: InputMaybe; + Name?: InputMaybe; + OwnedBy?: InputMaybe; + PrimaryDmo?: InputMaybe; + RecordCount?: InputMaybe; + RolloutVersion?: InputMaybe; + Schedule?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + Version?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataHarmonizedModelObjRef_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataCloudContentIdentifier?: InputMaybe; + FileType?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + ObjectDeveloperName?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKitDeploymentLog_Filter = { + BundleName?: InputMaybe; + ComponentName?: InputMaybe; + ComponentTemplateId?: InputMaybe; + ComponentType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataKitName?: InputMaybe; + DataPackageKitDefinition?: InputMaybe; + DataSpaceName?: InputMaybe; + DeployJob?: InputMaybe; + DeploymentAction?: InputMaybe; + DeploymentError?: InputMaybe; + DeploymentStatus?: InputMaybe; + FileBasedComponentTemplate?: InputMaybe; + FlowInterviewIdentifier?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + JobIdentifier?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + PublisherOrgComponent?: InputMaybe; + PublisherOrgComponentId?: InputMaybe; + SubscriberOrgComponent?: InputMaybe; + SubscriberOrgComponentId?: InputMaybe; + SystemModstamp?: InputMaybe; + TemplateVersion?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKitDeploymentLog_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataKitDeploymentLog_PublisherOrgComponent_Filters = { + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + Name?: InputMaybe; +}; + +export type DataKitDeploymentLog_SubscriberOrgComponent_Filters = { + ActivationTarget?: InputMaybe; + DataAction?: InputMaybe; + DataActionTarget?: InputMaybe; + DataGraph?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataStream?: InputMaybe; + EngagementSignal?: InputMaybe; + ExtDataShare?: InputMaybe; + IdentityResolution?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + Name?: InputMaybe; + PersnlBatchDecision?: InputMaybe; + PersonalizationObjective?: InputMaybe; + PersonalizationPoint?: InputMaybe; + PersonalizationRecommender?: InputMaybe; + PersonalizationSchema?: InputMaybe; +}; + +export type DataKnowledgeSpaceSession_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastActiveTime?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + SessionKey?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSpace_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSpace_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataKnowledgeSpcJobRun_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + ErrorMessage?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + JobIdentifier?: InputMaybe; + JobStatus?: InputMaybe; + JobType?: InputMaybe; + KnowledgeSpcObjRef?: InputMaybe; + KnowledgeSpcObjRefId?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSpcJobRun_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataKnowledgeSrcFileRef_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataKnowledgeLibraryId?: InputMaybe; + DataKnowledgeSourceId?: InputMaybe; + FileName?: InputMaybe; + FilePath?: InputMaybe; + FileType?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SourceFileStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataKnowledgeSrcFileRef_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataLakeObjectInstanceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLakeObjectInstanceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLakeObjectInstance_Filter = { + AccelerationEnabled?: InputMaybe; + AccelerationSchedule?: InputMaybe; + Billable?: InputMaybe; + Category?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLakeObjectNamespacePrefix?: InputMaybe; + DataLakeObjectRef?: InputMaybe; + DataLakeObjectStatus?: InputMaybe; + DeletionRecordsDataLakeObject?: InputMaybe; + Description?: InputMaybe; + ExternalName?: InputMaybe; + ExternalObjectErrorCode?: InputMaybe; + ExternalObjectErrorStatus?: InputMaybe; + HydrationStatus?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastSyncedFingerprint?: InputMaybe; + LastViewedDate?: InputMaybe; + MktDataLakeObjectDeveloperName?: InputMaybe; + MktDataLakeObjectId?: InputMaybe; + MktDataLakeObjectLabel?: InputMaybe; + Name?: InputMaybe; + ProblemRecordsDataLakeObject?: InputMaybe; + Storage?: InputMaybe; + SyncStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + TotalNumberOfFields?: InputMaybe; + TotalRecords?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLineageNodeDefSyncLogHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataLineageNodeDefSyncLogId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLineageNodeDefSyncLog_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DevName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastFailureReason?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + ObjectType?: InputMaybe; + OperationTime?: InputMaybe; + OperationType?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Payload?: InputMaybe; + RecordIdentifier?: InputMaybe; + RetryCount?: InputMaybe; + SyncStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataLineageNodeDefSyncLog_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataObjSecondaryIndexHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataObjSecondaryIndexId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataObjSecondaryIndex_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IndexedFields?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshTime?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + RuntimeStatus?: InputMaybe; + SecondaryIndexDeveloperName?: InputMaybe; + SourceObjectName?: InputMaybe; + SourceObjectType?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspaceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspaceTab_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Entity?: InputMaybe; + EntityType?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Query?: InputMaybe; + QueryWorkspace?: InputMaybe; + QueryWorkspaceId?: InputMaybe; + SystemModstamp?: InputMaybe; + TabOption?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspace_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LandingTab?: InputMaybe; + LandingTabId?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQueryWorkspace_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type DataQuickAttributeHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataQuickAttributeId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataQuickAttribute_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataQuickAttributeType?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + OwnedBy?: InputMaybe; + PathSignature?: InputMaybe; + PrimaryObjectId?: InputMaybe; + SystemModstamp?: InputMaybe; + Tags?: InputMaybe; + TargetFieldApiName?: InputMaybe; + TargetFieldId?: InputMaybe; + TargetObjectApiName?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSemanticSearchHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSemanticSearchId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSemanticSearch_Filter = { + AttachmentDmo?: InputMaybe; + ChunkDmo?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CreationType?: InputMaybe; + DataSemanticSearchDefId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Id?: InputMaybe; + IndexRefreshedOn?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PrimaryDmo?: InputMaybe; + RuntimeStatus?: InputMaybe; + SearchType?: InputMaybe; + SemanticSearchApiName?: InputMaybe; + SharingStatus?: InputMaybe; + SystemModstamp?: InputMaybe; + VectorDmo?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSpaceHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataSpace_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpaceApiName?: InputMaybe; + DataSpaceDefinitionId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataStreamHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataStream?: InputMaybe; + DataStreamId?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DataStream_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataStreamDefinitionId?: InputMaybe; + DataStreamStatus?: InputMaybe; + DeletionRecordsDataLakeObject?: InputMaybe; + Description?: InputMaybe; + ExternalRecordIdentifier?: InputMaybe; + ExternalStreamErrorCode?: InputMaybe; + ExtractionTime?: InputMaybe; + FullRefreshIntervalDays?: InputMaybe; + Id?: InputMaybe; + ImportRunStatus?: InputMaybe; + IsDeleted?: InputMaybe; + IsNewFieldsAvailable?: InputMaybe; + IsRefreshDeliveryHourAutomatic?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastNumberOfRowsAddedCount?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + ProblemRecordsDataLakeObject?: InputMaybe; + RefreshDayOfMonth?: InputMaybe; + RefreshDayOfWeek?: InputMaybe; + RefreshFrequency?: InputMaybe; + RefreshHours?: InputMaybe; + RefreshMode?: InputMaybe; + StreamType?: InputMaybe; + SystemModstamp?: InputMaybe; + TotalNumberOfRowsAdded?: InputMaybe; + TotalRowsProcessed?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export enum DataType { + Address = "ADDRESS", + Anytype = "ANYTYPE", + Base64 = "BASE64", + Boolean = "BOOLEAN", + Combobox = "COMBOBOX", + Complexvalue = "COMPLEXVALUE", + Currency = "CURRENCY", + Date = "DATE", + Datetime = "DATETIME", + Double = "DOUBLE", + Email = "EMAIL", + Encryptedstring = "ENCRYPTEDSTRING", + Int = "INT", + Json = "JSON", + Junctionidlist = "JUNCTIONIDLIST", + Location = "LOCATION", + Long = "LONG", + Multipicklist = "MULTIPICKLIST", + Percent = "PERCENT", + Phone = "PHONE", + Picklist = "PICKLIST", + Reference = "REFERENCE", + String = "STRING", + Textarea = "TEXTAREA", + Time = "TIME", + Url = "URL", +} export type DataUseLegalBasisHistory_Filter = { CreatedBy?: InputMaybe; @@ -3181,32 +4991,31 @@ export type DateInput = { value?: InputMaybe; }; -export const DateLiteral = { - Last_90Days: "LAST_90_DAYS", - LastFiscalQuarter: "LAST_FISCAL_QUARTER", - LastFiscalYear: "LAST_FISCAL_YEAR", - LastMonth: "LAST_MONTH", - LastQuarter: "LAST_QUARTER", - LastWeek: "LAST_WEEK", - LastYear: "LAST_YEAR", - Next_90Days: "NEXT_90_DAYS", - NextFiscalQuarter: "NEXT_FISCAL_QUARTER", - NextFiscalYear: "NEXT_FISCAL_YEAR", - NextMonth: "NEXT_MONTH", - NextQuarter: "NEXT_QUARTER", - NextWeek: "NEXT_WEEK", - NextYear: "NEXT_YEAR", - ThisFiscalQuarter: "THIS_FISCAL_QUARTER", - ThisFiscalYear: "THIS_FISCAL_YEAR", - ThisMonth: "THIS_MONTH", - ThisQuarter: "THIS_QUARTER", - ThisWeek: "THIS_WEEK", - ThisYear: "THIS_YEAR", - Today: "TODAY", - Tomorrow: "TOMORROW", - Yesterday: "YESTERDAY", -} as const; -export type DateLiteral = (typeof DateLiteral)[keyof typeof DateLiteral]; +export enum DateLiteral { + Last_90Days = "LAST_90_DAYS", + LastFiscalQuarter = "LAST_FISCAL_QUARTER", + LastFiscalYear = "LAST_FISCAL_YEAR", + LastMonth = "LAST_MONTH", + LastQuarter = "LAST_QUARTER", + LastWeek = "LAST_WEEK", + LastYear = "LAST_YEAR", + Next_90Days = "NEXT_90_DAYS", + NextFiscalQuarter = "NEXT_FISCAL_QUARTER", + NextFiscalYear = "NEXT_FISCAL_YEAR", + NextMonth = "NEXT_MONTH", + NextQuarter = "NEXT_QUARTER", + NextWeek = "NEXT_WEEK", + NextYear = "NEXT_YEAR", + ThisFiscalQuarter = "THIS_FISCAL_QUARTER", + ThisFiscalYear = "THIS_FISCAL_YEAR", + ThisMonth = "THIS_MONTH", + ThisQuarter = "THIS_QUARTER", + ThisWeek = "THIS_WEEK", + ThisYear = "THIS_YEAR", + Today = "TODAY", + Tomorrow = "TOMORROW", + Yesterday = "YESTERDAY", +} export type DateOperators = { CALENDAR_MONTH?: InputMaybe; @@ -3366,6 +5175,63 @@ export type DeleteEvent_Filter = { or?: InputMaybe>>; }; +export type DevopsActivityLogHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + DevopsActivityLog?: InputMaybe; + DevopsActivityLogId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DevopsActivityLog_Filter = { + Activity?: InputMaybe; + ActivityDate?: InputMaybe; + ActivityType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + DevopsRequestInfo?: InputMaybe; + DevopsRequestInfoId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + ParentActivity?: InputMaybe; + ParentActivityId?: InputMaybe; + PerformedBy?: InputMaybe; + PerformedById?: InputMaybe; + RequestInfoErrorDetails?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type DevopsActivityLog_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type DevopsEnvironmentHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -3463,8 +5329,6 @@ export type DevopsRequestInfo_Filter = { OperationType?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; - ParentRequestInfo?: InputMaybe; - ParentRequestInfoId?: InputMaybe; RequestCompletionDate?: InputMaybe; RequestToken?: InputMaybe; Status?: InputMaybe; @@ -3520,7 +5384,6 @@ export type DuplicateRecordItem_Record_Filters = { Account?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; - Case?: InputMaybe; Contact?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -3562,6 +5425,50 @@ export type DuplicateRecordSet_Filter = { or?: InputMaybe>>; }; +export type EmailContent_Filter = { + ClickThroughRate?: InputMaybe; + ClickToOpenRatio?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DeliveryRate?: InputMaybe; + Description?: InputMaybe; + HtmlBody?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + ManagedContent?: InputMaybe; + ManagedContentId?: InputMaybe; + Name?: InputMaybe; + OpenRate?: InputMaybe; + OptOutRate?: InputMaybe; + PageId?: InputMaybe; + SpamComplaintRate?: InputMaybe; + Subject?: InputMaybe; + SystemModstamp?: InputMaybe; + Template?: InputMaybe; + TemplateId?: InputMaybe; + TextBody?: InputMaybe; + TotalDelivered?: InputMaybe; + TotalHardBounced?: InputMaybe; + TotalOpens?: InputMaybe; + TotalSent?: InputMaybe; + TotalSoftBounced?: InputMaybe; + TotalSpamComplaints?: InputMaybe; + TotalTrackedLinkClicks?: InputMaybe; + UniqueClickThroughRate?: InputMaybe; + UniqueOpens?: InputMaybe; + UniqueOptOuts?: InputMaybe; + UniqueTrackedLinkClicks?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type EmailMessageRelation_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -3652,10 +5559,14 @@ export type EmailMessage_RelatedTo_Filters = { AssetRelationship?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscriptionConsent?: InputMaybe; ContactRequest?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; Image?: InputMaybe; @@ -3667,6 +5578,10 @@ export type EmailMessage_RelatedTo_Filters = { Name?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -3709,6 +5624,7 @@ export type EmailTemplate_Filter = { Folder?: InputMaybe; FolderId?: InputMaybe; FolderName?: InputMaybe; + HasSalesforceFiles?: InputMaybe; HtmlValue?: InputMaybe; Id?: InputMaybe; IsActive?: InputMaybe; @@ -3787,6 +5703,110 @@ export type EngagementChannelType_Owner_Filters = { User?: InputMaybe; }; +export type EngagementSignalCmpndMetric_Filter = { + CompoundMetricFormula?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DenomEngmtSignalMetric?: InputMaybe; + DenomEngmtSignalMetricId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + NumerEngmtSignalMetric?: InputMaybe; + NumerEngmtSignalMetricId?: InputMaybe; + Operator?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type EngagementSignalCmpndMetric_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type EngagementSignalHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type EngagementSignalMetric_Filter = { + AggregateFunction?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalId?: InputMaybe; + FieldId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type EngagementSignal_Filter = { + CatalogIdFieldId?: InputMaybe; + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + TimestampFieldId?: InputMaybe; + UniqueIdentifierFieldId?: InputMaybe; + UserIdFieldId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type EnhancedLetterhead_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -3945,10 +5965,14 @@ export type Event_What_Filters = { AssetRelationship?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscriptionConsent?: InputMaybe; ContactRequest?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; Image?: InputMaybe; @@ -3960,6 +5984,10 @@ export type Event_What_Filters = { Name?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -4000,6 +6028,104 @@ export type ExpressionSetView_Filter = { or?: InputMaybe>>; }; +export type ExtDataShareHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ExtDataShareTargetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + ExtDataShareTargetId?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ExtDataShareTarget_Filter = { + ConnectionType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataShareTargetDefinitionId?: InputMaybe; + DataShareTargetStatus?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type ExtDataShareTarget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type ExtDataShare_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataShareConsentFormStatus?: InputMaybe; + DataShareDefinitionId?: InputMaybe; + DataShareStatus?: InputMaybe; + DataShareType?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Id?: InputMaybe; + InboundDataShareName?: InputMaybe; + InboundDataShareOrgIdentifier?: InputMaybe; + IsDeleted?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + ObjectCount?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type FeedItem_Filter = { BestCommentId?: InputMaybe; Body?: InputMaybe; @@ -4039,6 +6165,7 @@ export type FeedItem_Filter = { export type FeedItem_Parent_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; Application__c?: InputMaybe; ApprovalSubmission?: InputMaybe; @@ -4047,8 +6174,12 @@ export type FeedItem_Parent_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AuthorizationFormText?: InputMaybe; + Brief?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -4056,12 +6187,32 @@ export type FeedItem_Parent_Filters = { Contact?: InputMaybe; ContentDocument?: InputMaybe; Contract?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSpace?: InputMaybe; + DataStream?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; + EmailContent?: InputMaybe; EngagementChannelType?: InputMaybe; + EngagementSignal?: InputMaybe; EnhancedLetterhead?: InputMaybe; Event?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -4069,11 +6220,20 @@ export type FeedItem_Parent_Filters = { Location?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; OrderItem?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; @@ -4098,16 +6258,15 @@ export type FeedItem_Parent_Filters = { WorkOrderLineItem?: InputMaybe; }; -export const FieldExtraTypeInfo = { - ExternalLookup: "EXTERNAL_LOOKUP", - ImageUrl: "IMAGE_URL", - IndirectLookup: "INDIRECT_LOOKUP", - Personname: "PERSONNAME", - Plaintextarea: "PLAINTEXTAREA", - Richtextarea: "RICHTEXTAREA", - SwitchablePersonname: "SWITCHABLE_PERSONNAME", -} as const; -export type FieldExtraTypeInfo = (typeof FieldExtraTypeInfo)[keyof typeof FieldExtraTypeInfo]; +export enum FieldExtraTypeInfo { + ExternalLookup = "EXTERNAL_LOOKUP", + ImageUrl = "IMAGE_URL", + IndirectLookup = "INDIRECT_LOOKUP", + Personname = "PERSONNAME", + Plaintextarea = "PLAINTEXTAREA", + Richtextarea = "RICHTEXTAREA", + SwitchablePersonname = "SWITCHABLE_PERSONNAME", +} export type FieldPermissions_Filter = { Field?: InputMaybe; @@ -4370,8 +6529,6 @@ export type FlowOrchestrationWorkItem_Filter = { OrchestrationName?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; - ParentWorkItem?: InputMaybe; - ParentWorkItemId?: InputMaybe; RelatedRecord?: InputMaybe; RelatedRecordId?: InputMaybe; ScreenFlow?: InputMaybe; @@ -4393,6 +6550,7 @@ export type FlowOrchestrationWorkItem_Owner_Filters = { export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -4402,14 +6560,19 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; CaseComment?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -4425,17 +6588,37 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { ContentVersion?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; Individual?: InputMaybe; KPI_Snapshot__c?: InputMaybe; @@ -4446,6 +6629,11 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; @@ -4454,6 +6642,10 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { OrderItem?: InputMaybe; OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -4469,11 +6661,12 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPersona?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; @@ -4535,6 +6728,11 @@ export type FlowRecordElementOccurrence_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Entries?: InputMaybe; + Errors?: InputMaybe; + Exits?: InputMaybe; FlowRecord?: InputMaybe; FlowRecordElement?: InputMaybe; FlowRecordElementId?: InputMaybe; @@ -4549,7 +6747,12 @@ export type FlowRecordElementOccurrence_Filter = { LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; Name?: InputMaybe; + Paused?: InputMaybe; + Retrying?: InputMaybe; + Stopped?: InputMaybe; SystemModstamp?: InputMaybe; + TotalDuration?: InputMaybe; + Waiting?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; or?: InputMaybe>>; @@ -4559,6 +6762,8 @@ export type FlowRecordElement_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; ElementName?: InputMaybe; FlowRecordVersion?: InputMaybe; FlowRecordVersionId?: InputMaybe; @@ -4600,6 +6805,8 @@ export type FlowRecordVersionOccurrence_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; Enqueued?: InputMaybe; Entries?: InputMaybe; ErrorDetail?: InputMaybe; @@ -4619,6 +6826,7 @@ export type FlowRecordVersionOccurrence_Filter = { Name?: InputMaybe; ProgressStatus?: InputMaybe; ScheduledDate?: InputMaybe; + Stopped?: InputMaybe; SystemModstamp?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; @@ -4626,7 +6834,6 @@ export type FlowRecordVersionOccurrence_Filter = { }; export type FlowRecordVersion_Filter = { - AccessType?: InputMaybe; ActivatedBy?: InputMaybe; ActivatedById?: InputMaybe; ActivatedDate?: InputMaybe; @@ -4637,7 +6844,12 @@ export type FlowRecordVersion_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; Description?: InputMaybe; + Entries?: InputMaybe; + Errors?: InputMaybe; + Exits?: InputMaybe; FlowRecord?: InputMaybe; FlowRecordId?: InputMaybe; FlowType?: InputMaybe; @@ -4684,6 +6896,8 @@ export type FlowRecord_AssociatedRecord_Filters = { }; export type FlowRecord_Filter = { + Activation?: InputMaybe; + ActivationId?: InputMaybe; ActiveVersion?: InputMaybe; ActiveVersionId?: InputMaybe; ApiName?: InputMaybe; @@ -4696,9 +6910,9 @@ export type FlowRecord_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; Description?: InputMaybe; - ElementEntries?: InputMaybe; - ElementErrors?: InputMaybe; ErrorCode?: InputMaybe; ErrorDetails?: InputMaybe; FlowCategory?: InputMaybe; @@ -4706,7 +6920,6 @@ export type FlowRecord_Filter = { FlowLabel?: InputMaybe; FlowSubcategory?: InputMaybe; FlowType?: InputMaybe; - Health?: InputMaybe; Id?: InputMaybe; InstalledPackageName?: InputMaybe; IsCitizenEnabled?: InputMaybe; @@ -4719,8 +6932,6 @@ export type FlowRecord_Filter = { LastModifiedDate?: InputMaybe; LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; - List?: InputMaybe; - ListId?: InputMaybe; LogsEnabledFlowVersion?: InputMaybe; ManageableState?: InputMaybe; Name?: InputMaybe; @@ -4733,6 +6944,8 @@ export type FlowRecord_Filter = { OwnerId?: InputMaybe; ProgressStatus?: InputMaybe; ScheduledStartDate?: InputMaybe; + Segment?: InputMaybe; + SegmentId?: InputMaybe; SourceTemplate?: InputMaybe; SourceTemplateId?: InputMaybe; StartSource?: InputMaybe; @@ -5047,6 +7260,68 @@ export type IdOperators = { ninq?: InputMaybe; }; +export type IdentityResolutionHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IdentityResolution?: InputMaybe; + IdentityResolutionId?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type IdentityResolution_Filter = { + ConsolidationRate?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + ErrorCode?: InputMaybe; + ErrorMessage?: InputMaybe; + Id?: InputMaybe; + IdentityResolutionDefId?: InputMaybe; + IsCaseSensitive?: InputMaybe; + IsDeleted?: InputMaybe; + IsLimitedToSingleHousehold?: InputMaybe; + IsScheduled?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastRunStatusDateTime?: InputMaybe; + LastSuccessfulRunDateTime?: InputMaybe; + LastViewedDate?: InputMaybe; + MatchedCount?: InputMaybe; + Name?: InputMaybe; + RootEntityLabel?: InputMaybe; + SecondaryEntityLabel?: InputMaybe; + SourceCount?: InputMaybe; + SourceIr?: InputMaybe; + SourceIrId?: InputMaybe; + Status?: InputMaybe; + StatusDetails?: InputMaybe; + Suffix?: InputMaybe; + SystemModstamp?: InputMaybe; + TotalAnonymousRecords?: InputMaybe; + TotalNonAnonymousRecords?: InputMaybe; + UnifiedCount?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type ImageHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -5102,6 +7377,31 @@ export type Image_Owner_Filters = { User?: InputMaybe; }; +export type IndividualGdprState__Dlm_Filter = { + CreatedBy__c?: InputMaybe; + CreatedDate__c?: InputMaybe; + DataSourceObject__c?: InputMaybe; + DataSource__c?: InputMaybe; + HasOptedOutProcessing__c?: InputMaybe; + Id?: InputMaybe; + Id__c?: InputMaybe; + IndividualId__c?: InputMaybe; + LastModifiedBy__c?: InputMaybe; + LastModifiedDate__c?: InputMaybe; + OptOutProcessRequestCompletionDate__c?: InputMaybe; + OptOutProcessRequestDate__c?: InputMaybe; + SendIndividualDataRequestCompletionDate__c?: InputMaybe; + SendIndividualDataRequestDate__c?: InputMaybe; + SendIndividualData__c?: InputMaybe; + ShouldForgetRequestCompletionDate__c?: InputMaybe; + ShouldForgetRequestDate__c?: InputMaybe; + ShouldForget__c?: InputMaybe; + TenantId__c?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type IndividualHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -5206,6 +7506,62 @@ export type Individual_OrderBy = { Website?: InputMaybe; }; +export type InsightsExternalDataPart_Filter = { + CompressedDataLength?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataLength?: InputMaybe; + Id?: InputMaybe; + InsightsExternalData?: InputMaybe; + InsightsExternalDataId?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + PartNumber?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type InsightsExternalData_Filter = { + Action?: InputMaybe; + CompressedMetadataLength?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Dataflow?: InputMaybe; + Description?: InputMaybe; + EdgemartAlias?: InputMaybe; + EdgemartContainer?: InputMaybe; + EdgemartLabel?: InputMaybe; + FileName?: InputMaybe; + Format?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsDependentOnLastUpload?: InputMaybe; + IsIndependentParts?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LicenseType?: InputMaybe; + MetaDataLength?: InputMaybe; + Mode?: InputMaybe; + NotificationEmail?: InputMaybe; + NotificationSent?: InputMaybe; + Operation?: InputMaybe; + Status?: InputMaybe; + StatusMessage?: InputMaybe; + SubmittedDate?: InputMaybe; + SystemModstamp?: InputMaybe; + Target?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type IntegerOperators = { eq?: InputMaybe; gt?: InputMaybe; @@ -5218,9 +7574,19 @@ export type IntegerOperators = { }; export type JoinInput = { + AbnExperiment?: InputMaybe; + AbnExperimentCohort?: InputMaybe; + AbnExperimentEngmtSgnlMtrc?: InputMaybe; Account?: InputMaybe; + AccountBrand?: InputMaybe; AccountHistory?: InputMaybe; AccountPartner?: InputMaybe; + ActivationTarget?: InputMaybe; + ActivationTargetHistory?: InputMaybe; + ActivationTargetPlatformHistory?: InputMaybe; + ActivationTargetSecureFTP?: InputMaybe; + ActivationTrgtIntOrgAccessHistory?: InputMaybe; + ActvTgtPlatformFieldValueHistory?: InputMaybe; Agent__History?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; @@ -5241,7 +7607,10 @@ export type JoinInput = { AssetRelationshipHistory?: InputMaybe; AssociatedLocation?: InputMaybe; AssociatedLocationHistory?: InputMaybe; - Attachment?: InputMaybe; + AsyncOperationTracker?: InputMaybe; + AttribModel?: InputMaybe; + AttribModelStage?: InputMaybe; + AttribModelStageMetric?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormConsentHistory?: InputMaybe; @@ -5251,8 +7620,13 @@ export type JoinInput = { AuthorizationFormText?: InputMaybe; AuthorizationFormTextHistory?: InputMaybe; BackgroundOperation?: InputMaybe; + Brief?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; BusinessHours?: InputMaybe; + CalcAffinityEngmtSgnl?: InputMaybe; + CalculatedAffinity?: InputMaybe; + CalculatedAffinityField?: InputMaybe; Campaign?: InputMaybe; CampaignHistory?: InputMaybe; CampaignMember?: InputMaybe; @@ -5261,6 +7635,12 @@ export type JoinInput = { CaseComment?: InputMaybe; CaseContactRole?: InputMaybe; CaseHistory?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramHistory?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramLevelHistory?: InputMaybe; + ChannelProgramMember?: InputMaybe; + ChannelProgramMemberHistory?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionChannelTypeHistory?: InputMaybe; @@ -5301,6 +7681,43 @@ export type JoinInput = { CspTrustedSite?: InputMaybe; CustomPermission?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionHistory?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionJobSummaryHistory?: InputMaybe; + DataActionTarget?: InputMaybe; + DataActionTargetHistory?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommCapActvTargetHistory?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataCommunicationCapHistory?: InputMaybe; + DataConnectorS3?: InputMaybe; + DataContentLensSource?: InputMaybe; + DataContentLensSourceHistory?: InputMaybe; + DataGraph?: InputMaybe; + DataHarmonizedModelObjRef?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpaceSession?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLakeObjectInstanceHistory?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataLineageNodeDefSyncLogHistory?: InputMaybe; + DataObjSecondaryIndex?: InputMaybe; + DataObjSecondaryIndexHistory?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceHistory?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataQuickAttributeHistory?: InputMaybe; + DataSemanticSearch?: InputMaybe; + DataSemanticSearchHistory?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceHistory?: InputMaybe; + DataStream?: InputMaybe; + DataStreamHistory?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUseLegalBasisHistory?: InputMaybe; DataUsePurpose?: InputMaybe; @@ -5308,21 +7725,32 @@ export type JoinInput = { DelegatedAccount?: InputMaybe; DelegatedAccountHistory?: InputMaybe; DeleteEvent?: InputMaybe; + DevopsActivityLog?: InputMaybe; + DevopsActivityLogHistory?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsEnvironmentHistory?: InputMaybe; DevopsRequestInfo?: InputMaybe; DevopsRequestInfoHistory?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; + EmailContent?: InputMaybe; EmailMessage?: InputMaybe; EmailMessageRelation?: InputMaybe; EmailTemplate?: InputMaybe; EngagementChannelType?: InputMaybe; EngagementChannelTypeHistory?: InputMaybe; + EngagementSignal?: InputMaybe; + EngagementSignalCmpndMetric?: InputMaybe; + EngagementSignalHistory?: InputMaybe; + EngagementSignalMetric?: InputMaybe; EnhancedLetterhead?: InputMaybe; EntityDefinition?: InputMaybe; Event?: InputMaybe; ExpressionSetView?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareHistory?: InputMaybe; + ExtDataShareTarget?: InputMaybe; + ExtDataShareTargetHistory?: InputMaybe; FeedItem?: InputMaybe; FieldPermissions?: InputMaybe; FlowInterview?: InputMaybe; @@ -5348,10 +7776,15 @@ export type JoinInput = { GroupMember?: InputMaybe; Holiday?: InputMaybe; IPAddressRange?: InputMaybe; + IdentityResolution?: InputMaybe; + IdentityResolutionHistory?: InputMaybe; Image?: InputMaybe; ImageHistory?: InputMaybe; Individual?: InputMaybe; + IndividualGDPRState__dlm?: InputMaybe; IndividualHistory?: InputMaybe; + InsightsExternalData?: InputMaybe; + InsightsExternalDataPart?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; LeadHistory?: InputMaybe; @@ -5368,6 +7801,24 @@ export type JoinInput = { ManagedContent?: InputMaybe; ManagedContentPublishedUrl?: InputMaybe; ManagedContentVariant?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationHistory?: InputMaybe; + MarketSegmentDefinition?: InputMaybe; + MarketSegmentHistory?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelUsage?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktCalculatedInsightHistory?: InputMaybe; + MktDataTransform?: InputMaybe; + MktDataTransformHistory?: InputMaybe; + MktMLAIModelHistory?: InputMaybe; + MktMLModel?: InputMaybe; + MktMLModelHistory?: InputMaybe; + MktMLModelKitHistory?: InputMaybe; + MktMLPredictionJobHistory?: InputMaybe; + MktSgmtActvDataModelFld?: InputMaybe; + MktSgmtActvDataSource?: InputMaybe; Network?: InputMaybe; NetworkDataCategory?: InputMaybe; Note?: InputMaybe; @@ -5390,6 +7841,14 @@ export type JoinInput = { OrgMetricScanSummary?: InputMaybe; Organization?: InputMaybe; Partner?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundAllocationHistory?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundClaimHistory?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerFundRequestHistory?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; + PartnerMarketingBudgetHistory?: InputMaybe; PartyConsent?: InputMaybe; PartyConsentHistory?: InputMaybe; Payment__History?: InputMaybe; @@ -5398,6 +7857,15 @@ export type JoinInput = { PermissionSet?: InputMaybe; PermissionSetGroup?: InputMaybe; PermissionSetLicense?: InputMaybe; + PersnlBatchDecision?: InputMaybe; + PersnlContextVariable?: InputMaybe; + PersnlExperience?: InputMaybe; + PersnlTransformer?: InputMaybe; + PersonalizationDecision?: InputMaybe; + PersonalizationObjective?: InputMaybe; + PersonalizationPoint?: InputMaybe; + PersonalizationRecommender?: InputMaybe; + PersonalizationSchema?: InputMaybe; Pricebook2?: InputMaybe; Pricebook2History?: InputMaybe; PricebookEntry?: InputMaybe; @@ -5428,21 +7896,21 @@ export type JoinInput = { Property_Sale__c?: InputMaybe; Property__History?: InputMaybe; Property__c?: InputMaybe; + Prospect?: InputMaybe; QuickText?: InputMaybe; QuickTextHistory?: InputMaybe; Recommendation?: InputMaybe; RecordAction?: InputMaybe; RecordType?: InputMaybe; Report?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; Scorecard?: InputMaybe; ScorecardAssociation?: InputMaybe; ScorecardMetric?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; - SelfSvcPortalTopic?: InputMaybe; Seller?: InputMaybe; SellerHistory?: InputMaybe; + SenderEmailAddress?: InputMaybe; SetupAssistantStep?: InputMaybe; SiteHistory?: InputMaybe; SocialPersona?: InputMaybe; @@ -5468,6 +7936,7 @@ export type JoinInput = { UserLocalWebServerIdentity?: InputMaybe; UserRole?: InputMaybe; UserSharedFeature?: InputMaybe; + WaveAutoInstallRequest?: InputMaybe; WorkBadgeDefinitionHistory?: InputMaybe; WorkOrder?: InputMaybe; WorkOrderHistory?: InputMaybe; @@ -5518,28 +7987,25 @@ export type LatitudeOperators = { nin?: InputMaybe>>; }; -export const LayoutComponentType = { - Canvas: "CANVAS", - CustomLink: "CUSTOM_LINK", - EmptySpace: "EMPTY_SPACE", - Field: "FIELD", - ReportChart: "REPORT_CHART", - VisualforcePage: "VISUALFORCE_PAGE", -} as const; -export type LayoutComponentType = (typeof LayoutComponentType)[keyof typeof LayoutComponentType]; +export enum LayoutComponentType { + Canvas = "CANVAS", + CustomLink = "CUSTOM_LINK", + EmptySpace = "EMPTY_SPACE", + Field = "FIELD", + ReportChart = "REPORT_CHART", + VisualforcePage = "VISUALFORCE_PAGE", +} -export const LayoutMode = { - Create: "CREATE", - Edit: "EDIT", - View: "VIEW", -} as const; -export type LayoutMode = (typeof LayoutMode)[keyof typeof LayoutMode]; +export enum LayoutMode { + Create = "CREATE", + Edit = "EDIT", + View = "VIEW", +} -export const LayoutType = { - Compact: "COMPACT", - Full: "FULL", -} as const; -export type LayoutType = (typeof LayoutType)[keyof typeof LayoutType]; +export enum LayoutType { + Compact = "COMPACT", + Full = "FULL", +} export type LeadHistory_Filter = { CreatedBy?: InputMaybe; @@ -5676,33 +8142,46 @@ export type Lease__C_Filter = { export type ListEmail_Filter = { Campaign?: InputMaybe; CampaignId?: InputMaybe; - CcAddress?: InputMaybe; + CommSubscription?: InputMaybe; + CommSubscriptionChannelType?: InputMaybe; + CommSubscriptionChannelTypeId?: InputMaybe; + CommSubscriptionId?: InputMaybe; CreatedBy?: InputMaybe; CreatedById?: InputMaybe; CreatedDate?: InputMaybe; + CustomDomainAddress?: InputMaybe; + EmailContent?: InputMaybe; + EmailContentId?: InputMaybe; + FlowRecordElement?: InputMaybe; + FlowRecordElementId?: InputMaybe; FromAddress?: InputMaybe; FromName?: InputMaybe; HasAttachment?: InputMaybe; HtmlBody?: InputMaybe; Id?: InputMaybe; + IsClickTrackingEnabled?: InputMaybe; IsDeleted?: InputMaybe; - IsEmailArchiveRequired?: InputMaybe; - IsSyntheticCcEnabled?: InputMaybe; + IsOpenTrackingEnabled?: InputMaybe; IsTracked?: InputMaybe; LastModifiedBy?: InputMaybe; LastModifiedById?: InputMaybe; LastModifiedDate?: InputMaybe; LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; + ManagedContent?: InputMaybe; + ManagedContentId?: InputMaybe; + MessagePurpose?: InputMaybe; Name?: InputMaybe; Owner?: InputMaybe; OwnerId?: InputMaybe; PardotAsset?: InputMaybe; PardotTenant?: InputMaybe; + PreHeader?: InputMaybe; RelatedTo?: InputMaybe; RelatedToId?: InputMaybe; - ReplyToName?: InputMaybe; ScheduledDate?: InputMaybe; + Segment?: InputMaybe; + SegmentId?: InputMaybe; SentVia?: InputMaybe; Status?: InputMaybe; Subject?: InputMaybe; @@ -5909,12 +8388,49 @@ export type Maintenance_Request__C_Filter = { or?: InputMaybe>>; }; +export type Maintenance_Request__C_OrderBy = { + Actual_Cost__c?: InputMaybe; + Assigned_Worker__c?: InputMaybe; + Assigned_Worker__r?: InputMaybe; + Completed__c?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description__c?: InputMaybe; + Est_Cost__c?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastActivityDate?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Priority__c?: InputMaybe; + Property__c?: InputMaybe; + Property__r?: InputMaybe; + Scheduled__c?: InputMaybe; + Status__c?: InputMaybe; + SystemModstamp?: InputMaybe; + Tenant_Home__c?: InputMaybe; + Type__c?: InputMaybe; + User__c?: InputMaybe; + User__r?: InputMaybe; +}; + export type Maintenance_Request__C_Owner_Filters = { Group?: InputMaybe; Name?: InputMaybe; User?: InputMaybe; }; +export type Maintenance_Request__C_Owner_OrderBys = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type Maintenance_Worker__History_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -5961,12 +8477,42 @@ export type Maintenance_Worker__C_Filter = { or?: InputMaybe>>; }; +export type Maintenance_Worker__C_OrderBy = { + Certifications__c?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Employment_Type__c?: InputMaybe; + Hourly_Rate__c?: InputMaybe; + Id?: InputMaybe; + IsActive__c?: InputMaybe; + IsDeleted?: InputMaybe; + LastActivityDate?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Location__c?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Phone__c?: InputMaybe; + Rating__c?: InputMaybe; + SystemModstamp?: InputMaybe; + Type__c?: InputMaybe; +}; + export type Maintenance_Worker__C_Owner_Filters = { Group?: InputMaybe; Name?: InputMaybe; User?: InputMaybe; }; +export type Maintenance_Worker__C_Owner_OrderBys = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type ManagedContentPublishedUrl_Filter = { AssociatedCampaign?: InputMaybe; AssociatedCampaignId?: InputMaybe; @@ -6051,6 +8597,8 @@ export type ManagedContent_Filter = { LastPublishedVersionId?: InputMaybe; LastStagedVersionId?: InputMaybe; LatestVersionId?: InputMaybe; + LinkedAttributeEntity?: InputMaybe; + LinkedAttributeEntityId?: InputMaybe; Name?: InputMaybe; PrimaryLanguage?: InputMaybe; SourceContext?: InputMaybe; @@ -6062,6 +8610,576 @@ export type ManagedContent_Filter = { or?: InputMaybe>>; }; +export type MarketSegmentActivationHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegmentActivation_Filter = { + ActivationEventMetadata?: InputMaybe; + ActivationFlowType?: InputMaybe; + ActivationMappingSchema?: InputMaybe; + ActivationObjectFilter?: InputMaybe; + ActivationObjectId?: InputMaybe; + ActivationObjectName?: InputMaybe; + ActivationObjectPath?: InputMaybe; + ActivationProcessingType?: InputMaybe; + ActivationRecordSchema?: InputMaybe; + ActivationRefreshType?: InputMaybe; + ActivationStatus?: InputMaybe; + ActivationTarget?: InputMaybe; + ActivationTargetId?: InputMaybe; + AudienceDmoLastRunTimestamp?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CuratedEntityId?: InputMaybe; + CuratedEntityName?: InputMaybe; + CustomerFileSource?: InputMaybe; + DataGraphId?: InputMaybe; + DataGraphName?: InputMaybe; + DataGraphPath?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DirectAttributeDmoFilterExpression?: InputMaybe; + DmoFilterExpression?: InputMaybe; + DoExcludeDeletes?: InputMaybe; + DoExcludeUpdates?: InputMaybe; + EndDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastActivationStatusDateTime?: InputMaybe; + LastActivationStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastPublishStatus?: InputMaybe; + LastPublishStatusErrorMessage?: InputMaybe; + LastPublishedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + LimitValue?: InputMaybe; + LimitingAttributesExpression?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivationDefId?: InputMaybe; + MarketSegmentId?: InputMaybe; + Name?: InputMaybe; + OwnedByOrg?: InputMaybe; + PartnerObjectIds?: InputMaybe; + PlatformName?: InputMaybe; + RecordCount?: InputMaybe; + SourceDmoApiName?: InputMaybe; + SourceDmoId?: InputMaybe; + StartDate?: InputMaybe; + StaticAttributes?: InputMaybe; + SystemModstamp?: InputMaybe; + WaterfallSelectedChildSegmentsConfig?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegmentDefinition_Filter = { + AdditionalMetadata?: InputMaybe; + AdditionalMetadataInfo?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataGraphDefinitionId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + ExcludeCriteria?: InputMaybe; + GroupSortLimitFilterCriteria?: InputMaybe; + Id?: InputMaybe; + IncludeCriteria?: InputMaybe; + IsCurrentSaveApproxCount?: InputMaybe; + IsDeleted?: InputMaybe; + IsPrevSaveApproxCount?: InputMaybe; + IsRemote?: InputMaybe; + IsSeedSegment?: InputMaybe; + Language?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LookbackPeriod?: InputMaybe; + MasterLabel?: InputMaybe; + NamespacePrefix?: InputMaybe; + OwnedBy?: InputMaybe; + PublishScheduleEndDate?: InputMaybe; + PublishScheduleEndDateTime?: InputMaybe; + PublishScheduleInfo?: InputMaybe; + PublishScheduleInterval?: InputMaybe; + PublishScheduleStartDateTime?: InputMaybe; + PublishType?: InputMaybe; + SegmentOnId?: InputMaybe; + SegmentType?: InputMaybe; + SourceMarketSegment?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegmentHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MarketSegment_Filter = { + AdditionalMetadataInfo?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataGraph?: InputMaybe; + DataGraphId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + ExcludeCriteria?: InputMaybe; + GroupSortLimitFilterCriteria?: InputMaybe; + Id?: InputMaybe; + IncludeCriteria?: InputMaybe; + IsCurrentSaveApproxCount?: InputMaybe; + IsDeleted?: InputMaybe; + IsPrevSaveApproxCount?: InputMaybe; + IsRemote?: InputMaybe; + IsSeedSegment?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastPublishStatusDateTime?: InputMaybe; + LastPublishStatusErrorCode?: InputMaybe; + LastPublishedEndDateTime?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastSeedModelRunDateTime?: InputMaybe; + LastSeedModelStatusDateTime?: InputMaybe; + LastSeedModelStatusErrorCode?: InputMaybe; + LastSegmentCountEndDateTime?: InputMaybe; + LastSegmentExcludedCount?: InputMaybe; + LastSegmentExcludedCountError?: InputMaybe; + LastSegmentIncludedCount?: InputMaybe; + LastSegmentMemberCount?: InputMaybe; + LastSegmentMemberCountError?: InputMaybe; + LastSegmentRemainderCount?: InputMaybe; + LastSegmentStatusDateTime?: InputMaybe; + LastSegmentStatusErrorCode?: InputMaybe; + LastSegmentStatusErrorDetails?: InputMaybe; + LastSegmentTotalCount?: InputMaybe; + LastViewedDate?: InputMaybe; + LookbackPeriod?: InputMaybe; + MarketSegmentDefinition?: InputMaybe; + MarketSegmentDefinitionId?: InputMaybe; + MarketSegmentType?: InputMaybe; + Name?: InputMaybe; + NextPublishDateTime?: InputMaybe; + OwnedBy?: InputMaybe; + PublishScheduleEndDate?: InputMaybe; + PublishScheduleEndDateTime?: InputMaybe; + PublishScheduleInfo?: InputMaybe; + PublishScheduleInterval?: InputMaybe; + PublishScheduleStartDateTime?: InputMaybe; + PublishStatus?: InputMaybe; + PublishType?: InputMaybe; + SeedModelStatus?: InputMaybe; + SeedSimilarity?: InputMaybe; + SeedSimilarityHighToMedium?: InputMaybe; + SeedSimilarityMediumToLow?: InputMaybe; + SegmentMembershipDataModelList?: InputMaybe; + SegmentMembershipTable?: InputMaybe; + SegmentOnId?: InputMaybe; + SegmentStatus?: InputMaybe; + SourceMarketSegment?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MessagingChannelUsage_Filter = { + ConsentType?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DeploymentStatus?: InputMaybe; + DeploymentType?: InputMaybe; + DisabledTime?: InputMaybe; + ErrorDetails?: InputMaybe; + ErrorReason?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelId?: InputMaybe; + RoutingOverride?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MessagingChannel_Filter = { + BusinessHours?: InputMaybe; + BusinessHoursId?: InputMaybe; + ChannelAddressIdentifier?: InputMaybe; + ChannelProviderStatus?: InputMaybe; + ConsentType?: InputMaybe; + ConversationEndResponse?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DefaultResponse?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + DoubleOptInPrompt?: InputMaybe; + EndUserIdleTimeOut?: InputMaybe; + EngagedResponse?: InputMaybe; + ExternalAccountIdentifier?: InputMaybe; + ExternalBusinessIdentifier?: InputMaybe; + FallbackQueue?: InputMaybe; + FallbackQueueId?: InputMaybe; + Id?: InputMaybe; + InitialResponse?: InputMaybe; + IsActive?: InputMaybe; + IsDeleted?: InputMaybe; + IsLinkedRecordOpenedAsSubTab?: InputMaybe; + IsRequireDoubleOptIn?: InputMaybe; + IsRestrictedToBusinessHours?: InputMaybe; + IsUnifiedMessagingEnabled?: InputMaybe; + IsoCountryCode?: InputMaybe; + Language?: InputMaybe; + LastMilePlatform?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LinkingPreference?: InputMaybe; + MasterLabel?: InputMaybe; + MessageType?: InputMaybe; + MessagingPlatformKey?: InputMaybe; + OfflineAgentsResponse?: InputMaybe; + OptInPrompt?: InputMaybe; + OptionsConversationalSurveysToggle?: InputMaybe; + OptionsIdentifyEndUserLanguage?: InputMaybe; + OptionsIsBusinessNameAsSenderEnabled?: InputMaybe; + OptionsIsEstimatedWaitTimeEnabled?: InputMaybe; + OptionsIsOutboundOnly?: InputMaybe; + OptionsIsQueuePositionEnabled?: InputMaybe; + OptionsIsReadReceiptsEnabled?: InputMaybe; + OptionsIsSynchronousChatEnabled?: InputMaybe; + OptionsIsTypingIndicatorsEnabled?: InputMaybe; + OptionsIsVoiceModeEnabled?: InputMaybe; + OutsideBusinessHoursResponse?: InputMaybe; + PlatformType?: InputMaybe; + RoutingType?: InputMaybe; + SessionHandler?: InputMaybe; + SessionHandlerId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetQueue?: InputMaybe; + TargetQueueId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MessagingChannel_SessionHandler_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type MktCalculatedInsightHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktCalculatedInsightId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktCalculatedInsight_Filter = { + CalculatedInsightStatus?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + ExternalErrorProperties?: InputMaybe; + HistoryCi?: InputMaybe; + HistoryCiId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastCalcInsightStatusDateTime?: InputMaybe; + LastCalcInsightStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRunDateTime?: InputMaybe; + LastRunStatus?: InputMaybe; + LastRunStatusDateTime?: InputMaybe; + LastRunStatusErrorCode?: InputMaybe; + LastViewedDate?: InputMaybe; + MktCalcInsightObjectDefId?: InputMaybe; + Name?: InputMaybe; + OwnedBy?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktDataTransformHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktDataTransform?: InputMaybe; + MktDataTransformId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktDataTransform_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + CreationSource?: InputMaybe; + CreationType?: InputMaybe; + CurrencyCode?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + DataTransformDefinitionId?: InputMaybe; + DataTransformStatus?: InputMaybe; + DataTransformStatusDetails?: InputMaybe; + FullRunFrequency?: InputMaybe; + Id?: InputMaybe; + IsCreatedAsMultiDefinition?: InputMaybe; + IsDeleted?: InputMaybe; + IsSystem?: InputMaybe; + LastDataChangeStatusDateTime?: InputMaybe; + LastDataChangeStatusErrorCode?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastRunTime?: InputMaybe; + LastViewedDate?: InputMaybe; + MktDataTransformSetupId?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetObject?: InputMaybe; + Type?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktDataTransform_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type MktMlaiModelHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLAIModelId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModelHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLModel?: InputMaybe; + MktMLModelId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModelKitHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLModelKitId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModel_Filter = { + AggregatedStatus?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DeployStatus?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastProcessedRecords?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefreshDate?: InputMaybe; + LastRunStatus?: InputMaybe; + LastViewedDate?: InputMaybe; + MktMlModelDefinitionId?: InputMaybe; + MlModelApiName?: InputMaybe; + Name?: InputMaybe; + OffCoreSyncStatus?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + ScoringMode?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktMlModel_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type MktMlPredictionJobHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + MktMLPredictionJobId?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktSgmtActvDataModelFld_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationId?: InputMaybe; + MktDataModelFieldId?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type MktSgmtActvDataSource_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSourceId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MarketSegmentActivationId?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type MultiPicklistOperators = { eq?: InputMaybe; excludes?: InputMaybe>>; @@ -6205,21 +9323,19 @@ export type Network_Filter = { OptionsNicknameDisplayEnabled?: InputMaybe; OptionsPrivateMessagesEnabled?: InputMaybe; OptionsProfileBasedLayoutsForKnowledgeSearchEnabled?: InputMaybe; - OptionsPvtPagesPwdResetAccessDisabled?: InputMaybe; OptionsRecognitionBadgingEnabled?: InputMaybe; OptionsReputationEnabled?: InputMaybe; OptionsReputationRecordConversationsDisabled?: InputMaybe; - OptionsSecondaryEmailSenderEnabled?: InputMaybe; OptionsSelfRegistrationEnabled?: InputMaybe; OptionsSendWelcomeEmail?: InputMaybe; OptionsShowAllNetworkSettings?: InputMaybe; OptionsSiteAsContainerEnabled?: InputMaybe; + OptionsSlfSrvcPersonalizationEnabled?: InputMaybe; OptionsThreadedDiscussionsEnabled?: InputMaybe; OptionsTopicFilteringForKnowledgeSearchEnabled?: InputMaybe; OptionsTopicSuggestionsEnabled?: InputMaybe; OptionsTwilioCallbackApiEnabled?: InputMaybe; OptionsUpDownVoteEnabled?: InputMaybe; - PendingSecondaryEmailAddress?: InputMaybe; PwdlessRegEmailTemplateId?: InputMaybe; SelfRegMicroBatchSubErrorEmailTemplateId?: InputMaybe; SelfRegProfileId?: InputMaybe; @@ -6228,7 +9344,6 @@ export type Network_Filter = { TabSetId?: InputMaybe; UrlPathPrefix?: InputMaybe; VerificationEmailTemplateId?: InputMaybe; - VerifiedSecondaryEmailAddress?: InputMaybe; WelcomeEmailTemplateId?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; @@ -6270,13 +9385,18 @@ export type Note_Parent_Filters = { ApprovalSubmissionDetail?: InputMaybe; ApprovalWorkItem?: InputMaybe; Asset?: InputMaybe; + Brief?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; CommSubscriptionTiming?: InputMaybe; Contact?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; EngagementChannelType?: InputMaybe; @@ -6291,6 +9411,10 @@ export type Note_Parent_Filters = { Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; Payment__c?: InputMaybe; Product2?: InputMaybe; Property_Cost__c?: InputMaybe; @@ -6340,17 +9464,15 @@ export type Notification__C_Owner_Filters = { User?: InputMaybe; }; -export const NullOrder = { - First: "FIRST", - Last: "LAST", -} as const; -export type NullOrder = (typeof NullOrder)[keyof typeof NullOrder]; +export enum NullOrder { + First = "FIRST", + Last = "LAST", +} -export const NullsOrder = { - First: "FIRST", - Last: "LAST", -} as const; -export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]; +export enum NullsOrder { + First = "FIRST", + Last = "LAST", +} export type ObjectMetadataTag_Filter = { CreatedBy?: InputMaybe; @@ -6972,6 +10094,234 @@ export type Organization_OrderBy = { WebToCaseDefaultOrigin?: InputMaybe; }; +export type PartnerFundAllocationHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundAllocationId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundAllocation_Filter = { + Amount?: InputMaybe; + Budget?: InputMaybe; + BudgetId?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + TotalApprovedFcs?: InputMaybe; + TotalApprovedFrs?: InputMaybe; + TotalReimbursedFcs?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundAllocation_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type PartnerFundClaimHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundClaimId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundClaim_Filter = { + Allocation?: InputMaybe; + AllocationId?: InputMaybe; + Amount?: InputMaybe; + Budget?: InputMaybe; + BudgetId?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Request?: InputMaybe; + RequestId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundClaim_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type PartnerFundRequestHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerFundRequestId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundRequest_Filter = { + Activity?: InputMaybe; + Allocation?: InputMaybe; + AllocationId?: InputMaybe; + Amount?: InputMaybe; + Budget?: InputMaybe; + BudgetId?: InputMaybe; + Campaign?: InputMaybe; + CampaignId?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + DesiredOutcome?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + RequestedAmount?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + TotalApprovedFcs?: InputMaybe; + TotalReimbursedFcs?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerFundRequest_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + +export type PartnerMarketingBudgetHistory_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataType?: InputMaybe; + Field?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + NewvalNumber?: InputMaybe; + NewvalString?: InputMaybe; + OldvalNumber?: InputMaybe; + OldvalString?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; + PartnerMarketingBudgetId?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerMarketingBudget_Filter = { + Amount?: InputMaybe; + ChannelPartner?: InputMaybe; + ChannelPartnerId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + EndDate?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsIgnoreValidation?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + StartDate?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + TotalAllocatedAmount?: InputMaybe; + TotalApprovedFcs?: InputMaybe; + TotalApprovedFrs?: InputMaybe; + TotalReimbursedFcs?: InputMaybe; + Type?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PartnerMarketingBudget_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type Partner_Filter = { AccountFrom?: InputMaybe; AccountFromId?: InputMaybe; @@ -7169,12 +10519,18 @@ export type PermissionSetLicense_Filter = { LastModifiedDate?: InputMaybe; LicenseExpirationPolicy?: InputMaybe; MasterLabel?: InputMaybe; - MaximumPermissionsAcceptInboundBundling?: InputMaybe; + MaximumPermissionsAICreateInsightObjects?: InputMaybe; + MaximumPermissionsAIViewInsightObjects?: InputMaybe; MaximumPermissionsAccessBankingRelationshipAssistance?: InputMaybe; MaximumPermissionsAccessBankingServiceAgent?: InputMaybe; MaximumPermissionsAccessCMC?: InputMaybe; + MaximumPermissionsAccessCdpApp?: InputMaybe; + MaximumPermissionsAccessCdpDataExplorer?: InputMaybe; + MaximumPermissionsAccessCdpProfileExplorer?: InputMaybe; MaximumPermissionsAccessContentBuilder?: InputMaybe; + MaximumPermissionsAccessCustomerDataCloudSetup?: InputMaybe; MaximumPermissionsAccessDisputePrompts?: InputMaybe; + MaximumPermissionsAccessKnowledgeSpace?: InputMaybe; MaximumPermissionsAccessOrchestrationObjects?: InputMaybe; MaximumPermissionsAccessPolicyAgent?: InputMaybe; MaximumPermissionsAccessServiceEinstein?: InputMaybe; @@ -7186,10 +10542,23 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsAccessWealthAdvisorAgent?: InputMaybe; MaximumPermissionsAccountSwitcherUser?: InputMaybe; MaximumPermissionsActivateContract?: InputMaybe; + MaximumPermissionsActivateDeactivateNonSetupFlow?: InputMaybe; MaximumPermissionsActivateOrder?: InputMaybe; MaximumPermissionsActivateSystemModeFlows?: InputMaybe; MaximumPermissionsActivitiesAccess?: InputMaybe; + MaximumPermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + MaximumPermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; MaximumPermissionsAddDirectMessageMembers?: InputMaybe; + MaximumPermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + MaximumPermissionsAddWaitToNonSetupFlow?: InputMaybe; MaximumPermissionsAdvancedCsvDataImportUser?: InputMaybe; MaximumPermissionsAgentforceServiceAgentUser?: InputMaybe; MaximumPermissionsAllowEmailIC?: InputMaybe; @@ -7216,7 +10585,9 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsCanApproveUninstalledApps?: InputMaybe; MaximumPermissionsCanDoActAsUser?: InputMaybe; MaximumPermissionsCanEditPrompts?: InputMaybe; + MaximumPermissionsCanExitFlowViaAPI?: InputMaybe; MaximumPermissionsCanInsertFeedSystemFields?: InputMaybe; + MaximumPermissionsCanMarketingUserDebugFlow?: InputMaybe; MaximumPermissionsCanTranslateScrt2Conversation?: InputMaybe; MaximumPermissionsCanUpdateEmailMessage?: InputMaybe; MaximumPermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -7225,6 +10596,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsCdcReportingCreateReports?: InputMaybe; MaximumPermissionsCdcReportingManageFolders?: InputMaybe; MaximumPermissionsCdcReportingViewReports?: InputMaybe; + MaximumPermissionsCdpConnectionManagementUser?: InputMaybe; MaximumPermissionsChangeDashboardColors?: InputMaybe; MaximumPermissionsChatterComposeUiCodesnippet?: InputMaybe; MaximumPermissionsChatterEditOwnPost?: InputMaybe; @@ -7235,20 +10607,30 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsChatterOwnGroups?: InputMaybe; MaximumPermissionsClientSecretRotation?: InputMaybe; MaximumPermissionsCloseConversations?: InputMaybe; + MaximumPermissionsCodeBuilderUser?: InputMaybe; MaximumPermissionsConfigCustomRecs?: InputMaybe; MaximumPermissionsConfigureDataspaceScope?: InputMaybe; MaximumPermissionsConnectOrgToEnvironmentHub?: InputMaybe; MaximumPermissionsConsentApiUpdate?: InputMaybe; + MaximumPermissionsConsentBannerSettingsSetup?: InputMaybe; MaximumPermissionsContentAdministrator?: InputMaybe; MaximumPermissionsContentHubUser?: InputMaybe; MaximumPermissionsContentWorkspaces?: InputMaybe; MaximumPermissionsConvertLeads?: InputMaybe; + MaximumPermissionsCosellAuthSetupUser?: InputMaybe; + MaximumPermissionsCosellExportUser?: InputMaybe; MaximumPermissionsCreateCustomizeDashboards?: InputMaybe; MaximumPermissionsCreateCustomizeFilters?: InputMaybe; MaximumPermissionsCreateCustomizeReports?: InputMaybe; MaximumPermissionsCreateDashboardFolders?: InputMaybe; + MaximumPermissionsCreateEditNonSetupFlow?: InputMaybe; MaximumPermissionsCreateLtngTempFolder?: InputMaybe; MaximumPermissionsCreateLtngTempInPub?: InputMaybe; + MaximumPermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + MaximumPermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; MaximumPermissionsCreatePackaging?: InputMaybe; MaximumPermissionsCreateReportFolders?: InputMaybe; MaximumPermissionsCreateReportInLightning?: InputMaybe; @@ -7260,9 +10642,11 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsCustomSidebarOnAllPages?: InputMaybe; MaximumPermissionsCustomizeApplication?: InputMaybe; MaximumPermissionsDataExport?: InputMaybe; + MaximumPermissionsDelegatedPortalUserAdmin?: InputMaybe; MaximumPermissionsDelegatedTwoFactor?: InputMaybe; MaximumPermissionsDeleteActivatedContract?: InputMaybe; MaximumPermissionsDeleteCrMemoAndInvoice?: InputMaybe; + MaximumPermissionsDeleteNonSetupFlow?: InputMaybe; MaximumPermissionsDeleteSalesforceFiles?: InputMaybe; MaximumPermissionsDeleteTopics?: InputMaybe; MaximumPermissionsDigitalLendingAdminUser?: InputMaybe; @@ -7287,6 +10671,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsEditReadonlyFields?: InputMaybe; MaximumPermissionsEditTask?: InputMaybe; MaximumPermissionsEditTopics?: InputMaybe; + MaximumPermissionsEinsteinMetadataUserAccess?: InputMaybe; MaximumPermissionsEmailAdministration?: InputMaybe; MaximumPermissionsEmailMass?: InputMaybe; MaximumPermissionsEmailSingle?: InputMaybe; @@ -7308,7 +10693,6 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsFreezeUsers?: InputMaybe; MaximumPermissionsGiveRecognitionBadge?: InputMaybe; MaximumPermissionsGovernNetworks?: InputMaybe; - MaximumPermissionsGrantOutboundBundling?: InputMaybe; MaximumPermissionsHasUnlimitedNBAExecutions?: InputMaybe; MaximumPermissionsHeadlessCMSAccess?: InputMaybe; MaximumPermissionsHeadlessPublishNudges?: InputMaybe; @@ -7333,16 +10717,20 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsListEmailSend?: InputMaybe; MaximumPermissionsLobbyManagementUserAccess?: InputMaybe; MaximumPermissionsLtngPromoReserved01UserPerm?: InputMaybe; + MaximumPermissionsMCGSetupUserPerm?: InputMaybe; MaximumPermissionsMCPMetadataApi?: InputMaybe; MaximumPermissionsManageAccessPolicies?: InputMaybe; MaximumPermissionsManageAgentforceServiceAgent?: InputMaybe; MaximumPermissionsManageAnalyticSnapshots?: InputMaybe; MaximumPermissionsManageApiNamedQueries?: InputMaybe; MaximumPermissionsManageAuthProviders?: InputMaybe; + MaximumPermissionsManageBriefs?: InputMaybe; MaximumPermissionsManageBusinessHourHolidays?: InputMaybe; + MaximumPermissionsManageBusinessUnit?: InputMaybe; MaximumPermissionsManageC360AConnections?: InputMaybe; MaximumPermissionsManageCMS?: InputMaybe; MaximumPermissionsManageCallCenters?: InputMaybe; + MaximumPermissionsManageCampaigns?: InputMaybe; MaximumPermissionsManageCases?: InputMaybe; MaximumPermissionsManageCategories?: InputMaybe; MaximumPermissionsManageCdpMlModels?: InputMaybe; @@ -7353,19 +10741,26 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageContentProperties?: InputMaybe; MaximumPermissionsManageContentTaxonomy?: InputMaybe; MaximumPermissionsManageContentTypes?: InputMaybe; + MaximumPermissionsManageCssUsers?: InputMaybe; MaximumPermissionsManageCustomDomains?: InputMaybe; MaximumPermissionsManageCustomPermissions?: InputMaybe; MaximumPermissionsManageCustomReportTypes?: InputMaybe; + MaximumPermissionsManageCustomerDataOptOut?: InputMaybe; MaximumPermissionsManageDashbdsInPubFolders?: InputMaybe; + MaximumPermissionsManageDataAnalyticsGroups?: InputMaybe; MaximumPermissionsManageDataCategories?: InputMaybe; MaximumPermissionsManageDataIntegrations?: InputMaybe; MaximumPermissionsManageDataspaceScope?: InputMaybe; + MaximumPermissionsManageDevSandboxes?: InputMaybe; MaximumPermissionsManageDynamicDashboards?: InputMaybe; MaximumPermissionsManageEmailClientConfig?: InputMaybe; + MaximumPermissionsManageEmailContent?: InputMaybe; + MaximumPermissionsManageEmailMessagingSetup?: InputMaybe; MaximumPermissionsManageExchangeConfig?: InputMaybe; MaximumPermissionsManageExternalConnections?: InputMaybe; MaximumPermissionsManageFilesAndAttachments?: InputMaybe; MaximumPermissionsManageForecastingCustomData?: InputMaybe; + MaximumPermissionsManageGlobalPrivacyCenterVO?: InputMaybe; MaximumPermissionsManageHealthCheck?: InputMaybe; MaximumPermissionsManageHerokuAppLink?: InputMaybe; MaximumPermissionsManageHubConnections?: InputMaybe; @@ -7378,11 +10773,14 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageMaliciousFiles?: InputMaybe; MaximumPermissionsManageMobile?: InputMaybe; MaximumPermissionsManageMobileAppSecurity?: InputMaybe; + MaximumPermissionsManageMyExternalUsers?: InputMaybe; MaximumPermissionsManageNamedCredentials?: InputMaybe; MaximumPermissionsManageNetworks?: InputMaybe; MaximumPermissionsManageOrchInstsAndWorkItems?: InputMaybe; MaximumPermissionsManageOrchestrationRuns?: InputMaybe; + MaximumPermissionsManagePartners?: InputMaybe; MaximumPermissionsManagePasswordPolicies?: InputMaybe; + MaximumPermissionsManagePreferenceCenter?: InputMaybe; MaximumPermissionsManageProfilesPermissionsets?: InputMaybe; MaximumPermissionsManagePropositions?: InputMaybe; MaximumPermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -7392,10 +10790,11 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageRemoteAccess?: InputMaybe; MaximumPermissionsManageReportsInPubFolders?: InputMaybe; MaximumPermissionsManageRoles?: InputMaybe; + MaximumPermissionsManageSMSDomainSetup?: InputMaybe; + MaximumPermissionsManageSMSMessagingSetup?: InputMaybe; + MaximumPermissionsManageSandboxes?: InputMaybe; MaximumPermissionsManageSessionPermissionSets?: InputMaybe; - MaximumPermissionsManageSharedListViews?: InputMaybe; MaximumPermissionsManageSharing?: InputMaybe; - MaximumPermissionsManageSocialPosting?: InputMaybe; MaximumPermissionsManageSolutions?: InputMaybe; MaximumPermissionsManageSubscriptions?: InputMaybe; MaximumPermissionsManageSurveys?: InputMaybe; @@ -7405,8 +10804,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsManageUnlistedGroups?: InputMaybe; MaximumPermissionsManageUsers?: InputMaybe; MaximumPermissionsMassInlineEdit?: InputMaybe; - MaximumPermissionsMeetingEngagementUser?: InputMaybe; - MaximumPermissionsMemberSelfServiceAgentAccess?: InputMaybe; + MaximumPermissionsMcScoringRulesConfig?: InputMaybe; MaximumPermissionsMergeTopics?: InputMaybe; MaximumPermissionsMetadataStudioUser?: InputMaybe; MaximumPermissionsMicrobatching?: InputMaybe; @@ -7426,19 +10824,27 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsMonitorLoginHistory?: InputMaybe; MaximumPermissionsNativeWebviewScrolling?: InputMaybe; MaximumPermissionsNewReportBuilder?: InputMaybe; + MaximumPermissionsOpportunityInfluence?: InputMaybe; + MaximumPermissionsOrgPerformanceAccess?: InputMaybe; MaximumPermissionsOutboundMigrationToolsUser?: InputMaybe; MaximumPermissionsOverrideForecasts?: InputMaybe; + MaximumPermissionsPRMChannelMgmtConsoleUser?: InputMaybe; MaximumPermissionsPackaging2?: InputMaybe; MaximumPermissionsPackaging2Delete?: InputMaybe; MaximumPermissionsPasswordNeverExpires?: InputMaybe; + MaximumPermissionsPerformanceAnalysisAccess?: InputMaybe; MaximumPermissionsPersonalizationDecisioningUser?: InputMaybe; MaximumPermissionsPersonalizationIntelUser?: InputMaybe; MaximumPermissionsPersonalizationPlatform?: InputMaybe; MaximumPermissionsPersonalizedFinanceUserAccess?: InputMaybe; + MaximumPermissionsPortalSuperUser?: InputMaybe; MaximumPermissionsPreventClassicExperience?: InputMaybe; + MaximumPermissionsPreviewTestSendEmail?: InputMaybe; + MaximumPermissionsPreviewTestSendSMS?: InputMaybe; MaximumPermissionsPrismBackofficeUser?: InputMaybe; MaximumPermissionsPrismPlaygroundUser?: InputMaybe; MaximumPermissionsPrivacyDataAccess?: InputMaybe; + MaximumPermissionsPrmEnhancedPortalUser?: InputMaybe; MaximumPermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; MaximumPermissionsPublishPackaging?: InputMaybe; MaximumPermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -7447,6 +10853,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsQuipMetricsAccess?: InputMaybe; MaximumPermissionsQuipUserEngagementMetrics?: InputMaybe; MaximumPermissionsReassignOrchestrationWorkItems?: InputMaybe; + MaximumPermissionsRecordVisibilityAPI?: InputMaybe; MaximumPermissionsRegrelloUser?: InputMaybe; MaximumPermissionsRemoveDirectMessageMembers?: InputMaybe; MaximumPermissionsResetPasswords?: InputMaybe; @@ -7460,6 +10867,8 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsSelectFilesFromSalesforce?: InputMaybe; MaximumPermissionsSendAnnouncementEmails?: InputMaybe; MaximumPermissionsSendCustomNotifications?: InputMaybe; + MaximumPermissionsSendEmail?: InputMaybe; + MaximumPermissionsSendSMS?: InputMaybe; MaximumPermissionsSendSitRequests?: InputMaybe; MaximumPermissionsShareFilesWithNetworks?: InputMaybe; MaximumPermissionsShowCompanyNameAsUserBadge?: InputMaybe; @@ -7481,8 +10890,12 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsTransferAnyEntity?: InputMaybe; MaximumPermissionsTransferAnyLead?: InputMaybe; MaximumPermissionsTwoFactorApi?: InputMaybe; + MaximumPermissionsUMAStandaloneUserPerm?: InputMaybe; + MaximumPermissionsUMAWebTrackingSetup?: InputMaybe; + MaximumPermissionsUmaEditConsentSettings?: InputMaybe; + MaximumPermissionsUmaQueryCMSEmailContent?: InputMaybe; + MaximumPermissionsUnifiedEHDViewer?: InputMaybe; MaximumPermissionsUpdateReportTypeReferences?: InputMaybe; - MaximumPermissionsUseAnyApiAuth?: InputMaybe; MaximumPermissionsUseAssistantDialog?: InputMaybe; MaximumPermissionsUseMySearch?: InputMaybe; MaximumPermissionsUseQuerySuggestions?: InputMaybe; @@ -7494,6 +10907,7 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsUseTeamsForItSrvcs?: InputMaybe; MaximumPermissionsUseWebLink?: InputMaybe; MaximumPermissionsUserCanDeployStore?: InputMaybe; + MaximumPermissionsUserHasSendToListFilterAccess?: InputMaybe; MaximumPermissionsUserInteractionInsights?: InputMaybe; MaximumPermissionsViewAccessPolicies?: InputMaybe; MaximumPermissionsViewAllActivities?: InputMaybe; @@ -7502,10 +10916,12 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsViewAllFieldsGlobal?: InputMaybe; MaximumPermissionsViewAllForecasts?: InputMaybe; MaximumPermissionsViewAllForeignKeyNames?: InputMaybe; + MaximumPermissionsViewAllNonSetupFlows?: InputMaybe; MaximumPermissionsViewAllPolicyCenterPolicies?: InputMaybe; MaximumPermissionsViewAllProfiles?: InputMaybe; MaximumPermissionsViewAllUsers?: InputMaybe; MaximumPermissionsViewApiNamedQueries?: InputMaybe; + MaximumPermissionsViewBusinessUnit?: InputMaybe; MaximumPermissionsViewClientSecret?: InputMaybe; MaximumPermissionsViewContent?: InputMaybe; MaximumPermissionsViewContentTaxonomy?: InputMaybe; @@ -7513,13 +10929,17 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsViewDataAssessment?: InputMaybe; MaximumPermissionsViewDataCategories?: InputMaybe; MaximumPermissionsViewDeveloperName?: InputMaybe; + MaximumPermissionsViewEmailMessagingSetup?: InputMaybe; MaximumPermissionsViewEncryptedData?: InputMaybe; MaximumPermissionsViewEventLogFiles?: InputMaybe; MaximumPermissionsViewGlobalHeader?: InputMaybe; MaximumPermissionsViewHealthCheck?: InputMaybe; MaximumPermissionsViewHelpLink?: InputMaybe; MaximumPermissionsViewLicenseUtilization?: InputMaybe; + MaximumPermissionsViewMLModels?: InputMaybe; MaximumPermissionsViewMyTeamsDashboards?: InputMaybe; + MaximumPermissionsViewNonSetupFlow?: InputMaybe; + MaximumPermissionsViewOnlyEmbeddedAppUser?: InputMaybe; MaximumPermissionsViewOrchestrationsInAutomApp?: InputMaybe; MaximumPermissionsViewPrivateStaticResources?: InputMaybe; MaximumPermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -7528,8 +10948,10 @@ export type PermissionSetLicense_Filter = { MaximumPermissionsViewRecommendations?: InputMaybe; MaximumPermissionsViewRestrictionAndScopingRules?: InputMaybe; MaximumPermissionsViewRoles?: InputMaybe; + MaximumPermissionsViewSMSMessagingSetup?: InputMaybe; MaximumPermissionsViewSetup?: InputMaybe; MaximumPermissionsViewTrustMeasures?: InputMaybe; + MaximumPermissionsViewUMACalendar?: InputMaybe; MaximumPermissionsViewUserPII?: InputMaybe; MaximumPermissionsYourAccountCDAPublishEvents?: InputMaybe; MigratableLicenses?: InputMaybe; @@ -7562,12 +10984,18 @@ export type PermissionSet_Filter = { NamespacePrefix?: InputMaybe; PermissionSetGroup?: InputMaybe; PermissionSetGroupId?: InputMaybe; - PermissionsAcceptInboundBundling?: InputMaybe; + PermissionsAICreateInsightObjects?: InputMaybe; + PermissionsAIViewInsightObjects?: InputMaybe; PermissionsAccessBankingRelationshipAssistance?: InputMaybe; PermissionsAccessBankingServiceAgent?: InputMaybe; PermissionsAccessCMC?: InputMaybe; + PermissionsAccessCdpApp?: InputMaybe; + PermissionsAccessCdpDataExplorer?: InputMaybe; + PermissionsAccessCdpProfileExplorer?: InputMaybe; PermissionsAccessContentBuilder?: InputMaybe; + PermissionsAccessCustomerDataCloudSetup?: InputMaybe; PermissionsAccessDisputePrompts?: InputMaybe; + PermissionsAccessKnowledgeSpace?: InputMaybe; PermissionsAccessOrchestrationObjects?: InputMaybe; PermissionsAccessPolicyAgent?: InputMaybe; PermissionsAccessServiceEinstein?: InputMaybe; @@ -7579,10 +11007,23 @@ export type PermissionSet_Filter = { PermissionsAccessWealthAdvisorAgent?: InputMaybe; PermissionsAccountSwitcherUser?: InputMaybe; PermissionsActivateContract?: InputMaybe; + PermissionsActivateDeactivateNonSetupFlow?: InputMaybe; PermissionsActivateOrder?: InputMaybe; PermissionsActivateSystemModeFlows?: InputMaybe; PermissionsActivitiesAccess?: InputMaybe; + PermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + PermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; PermissionsAddDirectMessageMembers?: InputMaybe; + PermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + PermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + PermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + PermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddWaitToNonSetupFlow?: InputMaybe; PermissionsAdvancedCsvDataImportUser?: InputMaybe; PermissionsAgentforceServiceAgentUser?: InputMaybe; PermissionsAllowEmailIC?: InputMaybe; @@ -7609,7 +11050,9 @@ export type PermissionSet_Filter = { PermissionsCanApproveUninstalledApps?: InputMaybe; PermissionsCanDoActAsUser?: InputMaybe; PermissionsCanEditPrompts?: InputMaybe; + PermissionsCanExitFlowViaAPI?: InputMaybe; PermissionsCanInsertFeedSystemFields?: InputMaybe; + PermissionsCanMarketingUserDebugFlow?: InputMaybe; PermissionsCanTranslateScrt2Conversation?: InputMaybe; PermissionsCanUpdateEmailMessage?: InputMaybe; PermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -7618,6 +11061,7 @@ export type PermissionSet_Filter = { PermissionsCdcReportingCreateReports?: InputMaybe; PermissionsCdcReportingManageFolders?: InputMaybe; PermissionsCdcReportingViewReports?: InputMaybe; + PermissionsCdpConnectionManagementUser?: InputMaybe; PermissionsChangeDashboardColors?: InputMaybe; PermissionsChatterComposeUiCodesnippet?: InputMaybe; PermissionsChatterEditOwnPost?: InputMaybe; @@ -7628,20 +11072,30 @@ export type PermissionSet_Filter = { PermissionsChatterOwnGroups?: InputMaybe; PermissionsClientSecretRotation?: InputMaybe; PermissionsCloseConversations?: InputMaybe; + PermissionsCodeBuilderUser?: InputMaybe; PermissionsConfigCustomRecs?: InputMaybe; PermissionsConfigureDataspaceScope?: InputMaybe; PermissionsConnectOrgToEnvironmentHub?: InputMaybe; PermissionsConsentApiUpdate?: InputMaybe; + PermissionsConsentBannerSettingsSetup?: InputMaybe; PermissionsContentAdministrator?: InputMaybe; PermissionsContentHubUser?: InputMaybe; PermissionsContentWorkspaces?: InputMaybe; PermissionsConvertLeads?: InputMaybe; + PermissionsCosellAuthSetupUser?: InputMaybe; + PermissionsCosellExportUser?: InputMaybe; PermissionsCreateCustomizeDashboards?: InputMaybe; PermissionsCreateCustomizeFilters?: InputMaybe; PermissionsCreateCustomizeReports?: InputMaybe; PermissionsCreateDashboardFolders?: InputMaybe; + PermissionsCreateEditNonSetupFlow?: InputMaybe; PermissionsCreateLtngTempFolder?: InputMaybe; PermissionsCreateLtngTempInPub?: InputMaybe; + PermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + PermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + PermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; PermissionsCreatePackaging?: InputMaybe; PermissionsCreateReportFolders?: InputMaybe; PermissionsCreateReportInLightning?: InputMaybe; @@ -7653,9 +11107,11 @@ export type PermissionSet_Filter = { PermissionsCustomSidebarOnAllPages?: InputMaybe; PermissionsCustomizeApplication?: InputMaybe; PermissionsDataExport?: InputMaybe; + PermissionsDelegatedPortalUserAdmin?: InputMaybe; PermissionsDelegatedTwoFactor?: InputMaybe; PermissionsDeleteActivatedContract?: InputMaybe; PermissionsDeleteCrMemoAndInvoice?: InputMaybe; + PermissionsDeleteNonSetupFlow?: InputMaybe; PermissionsDeleteSalesforceFiles?: InputMaybe; PermissionsDeleteTopics?: InputMaybe; PermissionsDigitalLendingAdminUser?: InputMaybe; @@ -7680,6 +11136,7 @@ export type PermissionSet_Filter = { PermissionsEditReadonlyFields?: InputMaybe; PermissionsEditTask?: InputMaybe; PermissionsEditTopics?: InputMaybe; + PermissionsEinsteinMetadataUserAccess?: InputMaybe; PermissionsEmailAdministration?: InputMaybe; PermissionsEmailMass?: InputMaybe; PermissionsEmailSingle?: InputMaybe; @@ -7701,7 +11158,6 @@ export type PermissionSet_Filter = { PermissionsFreezeUsers?: InputMaybe; PermissionsGiveRecognitionBadge?: InputMaybe; PermissionsGovernNetworks?: InputMaybe; - PermissionsGrantOutboundBundling?: InputMaybe; PermissionsHasUnlimitedNBAExecutions?: InputMaybe; PermissionsHeadlessCMSAccess?: InputMaybe; PermissionsHeadlessPublishNudges?: InputMaybe; @@ -7726,16 +11182,20 @@ export type PermissionSet_Filter = { PermissionsListEmailSend?: InputMaybe; PermissionsLobbyManagementUserAccess?: InputMaybe; PermissionsLtngPromoReserved01UserPerm?: InputMaybe; + PermissionsMCGSetupUserPerm?: InputMaybe; PermissionsMCPMetadataApi?: InputMaybe; PermissionsManageAccessPolicies?: InputMaybe; PermissionsManageAgentforceServiceAgent?: InputMaybe; PermissionsManageAnalyticSnapshots?: InputMaybe; PermissionsManageApiNamedQueries?: InputMaybe; PermissionsManageAuthProviders?: InputMaybe; + PermissionsManageBriefs?: InputMaybe; PermissionsManageBusinessHourHolidays?: InputMaybe; + PermissionsManageBusinessUnit?: InputMaybe; PermissionsManageC360AConnections?: InputMaybe; PermissionsManageCMS?: InputMaybe; PermissionsManageCallCenters?: InputMaybe; + PermissionsManageCampaigns?: InputMaybe; PermissionsManageCases?: InputMaybe; PermissionsManageCategories?: InputMaybe; PermissionsManageCdpMlModels?: InputMaybe; @@ -7746,19 +11206,26 @@ export type PermissionSet_Filter = { PermissionsManageContentProperties?: InputMaybe; PermissionsManageContentTaxonomy?: InputMaybe; PermissionsManageContentTypes?: InputMaybe; + PermissionsManageCssUsers?: InputMaybe; PermissionsManageCustomDomains?: InputMaybe; PermissionsManageCustomPermissions?: InputMaybe; PermissionsManageCustomReportTypes?: InputMaybe; + PermissionsManageCustomerDataOptOut?: InputMaybe; PermissionsManageDashbdsInPubFolders?: InputMaybe; + PermissionsManageDataAnalyticsGroups?: InputMaybe; PermissionsManageDataCategories?: InputMaybe; PermissionsManageDataIntegrations?: InputMaybe; PermissionsManageDataspaceScope?: InputMaybe; + PermissionsManageDevSandboxes?: InputMaybe; PermissionsManageDynamicDashboards?: InputMaybe; PermissionsManageEmailClientConfig?: InputMaybe; + PermissionsManageEmailContent?: InputMaybe; + PermissionsManageEmailMessagingSetup?: InputMaybe; PermissionsManageExchangeConfig?: InputMaybe; PermissionsManageExternalConnections?: InputMaybe; PermissionsManageFilesAndAttachments?: InputMaybe; PermissionsManageForecastingCustomData?: InputMaybe; + PermissionsManageGlobalPrivacyCenterVO?: InputMaybe; PermissionsManageHealthCheck?: InputMaybe; PermissionsManageHerokuAppLink?: InputMaybe; PermissionsManageHubConnections?: InputMaybe; @@ -7771,11 +11238,14 @@ export type PermissionSet_Filter = { PermissionsManageMaliciousFiles?: InputMaybe; PermissionsManageMobile?: InputMaybe; PermissionsManageMobileAppSecurity?: InputMaybe; + PermissionsManageMyExternalUsers?: InputMaybe; PermissionsManageNamedCredentials?: InputMaybe; PermissionsManageNetworks?: InputMaybe; PermissionsManageOrchInstsAndWorkItems?: InputMaybe; PermissionsManageOrchestrationRuns?: InputMaybe; + PermissionsManagePartners?: InputMaybe; PermissionsManagePasswordPolicies?: InputMaybe; + PermissionsManagePreferenceCenter?: InputMaybe; PermissionsManageProfilesPermissionsets?: InputMaybe; PermissionsManagePropositions?: InputMaybe; PermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -7785,10 +11255,11 @@ export type PermissionSet_Filter = { PermissionsManageRemoteAccess?: InputMaybe; PermissionsManageReportsInPubFolders?: InputMaybe; PermissionsManageRoles?: InputMaybe; + PermissionsManageSMSDomainSetup?: InputMaybe; + PermissionsManageSMSMessagingSetup?: InputMaybe; + PermissionsManageSandboxes?: InputMaybe; PermissionsManageSessionPermissionSets?: InputMaybe; - PermissionsManageSharedListViews?: InputMaybe; PermissionsManageSharing?: InputMaybe; - PermissionsManageSocialPosting?: InputMaybe; PermissionsManageSolutions?: InputMaybe; PermissionsManageSubscriptions?: InputMaybe; PermissionsManageSurveys?: InputMaybe; @@ -7798,8 +11269,7 @@ export type PermissionSet_Filter = { PermissionsManageUnlistedGroups?: InputMaybe; PermissionsManageUsers?: InputMaybe; PermissionsMassInlineEdit?: InputMaybe; - PermissionsMeetingEngagementUser?: InputMaybe; - PermissionsMemberSelfServiceAgentAccess?: InputMaybe; + PermissionsMcScoringRulesConfig?: InputMaybe; PermissionsMergeTopics?: InputMaybe; PermissionsMetadataStudioUser?: InputMaybe; PermissionsMicrobatching?: InputMaybe; @@ -7819,19 +11289,27 @@ export type PermissionSet_Filter = { PermissionsMonitorLoginHistory?: InputMaybe; PermissionsNativeWebviewScrolling?: InputMaybe; PermissionsNewReportBuilder?: InputMaybe; + PermissionsOpportunityInfluence?: InputMaybe; + PermissionsOrgPerformanceAccess?: InputMaybe; PermissionsOutboundMigrationToolsUser?: InputMaybe; PermissionsOverrideForecasts?: InputMaybe; + PermissionsPRMChannelMgmtConsoleUser?: InputMaybe; PermissionsPackaging2?: InputMaybe; PermissionsPackaging2Delete?: InputMaybe; PermissionsPasswordNeverExpires?: InputMaybe; + PermissionsPerformanceAnalysisAccess?: InputMaybe; PermissionsPersonalizationDecisioningUser?: InputMaybe; PermissionsPersonalizationIntelUser?: InputMaybe; PermissionsPersonalizationPlatform?: InputMaybe; PermissionsPersonalizedFinanceUserAccess?: InputMaybe; + PermissionsPortalSuperUser?: InputMaybe; PermissionsPreventClassicExperience?: InputMaybe; + PermissionsPreviewTestSendEmail?: InputMaybe; + PermissionsPreviewTestSendSMS?: InputMaybe; PermissionsPrismBackofficeUser?: InputMaybe; PermissionsPrismPlaygroundUser?: InputMaybe; PermissionsPrivacyDataAccess?: InputMaybe; + PermissionsPrmEnhancedPortalUser?: InputMaybe; PermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; PermissionsPublishPackaging?: InputMaybe; PermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -7840,6 +11318,7 @@ export type PermissionSet_Filter = { PermissionsQuipMetricsAccess?: InputMaybe; PermissionsQuipUserEngagementMetrics?: InputMaybe; PermissionsReassignOrchestrationWorkItems?: InputMaybe; + PermissionsRecordVisibilityAPI?: InputMaybe; PermissionsRegrelloUser?: InputMaybe; PermissionsRemoveDirectMessageMembers?: InputMaybe; PermissionsResetPasswords?: InputMaybe; @@ -7853,6 +11332,8 @@ export type PermissionSet_Filter = { PermissionsSelectFilesFromSalesforce?: InputMaybe; PermissionsSendAnnouncementEmails?: InputMaybe; PermissionsSendCustomNotifications?: InputMaybe; + PermissionsSendEmail?: InputMaybe; + PermissionsSendSMS?: InputMaybe; PermissionsSendSitRequests?: InputMaybe; PermissionsShareFilesWithNetworks?: InputMaybe; PermissionsShowCompanyNameAsUserBadge?: InputMaybe; @@ -7874,8 +11355,12 @@ export type PermissionSet_Filter = { PermissionsTransferAnyEntity?: InputMaybe; PermissionsTransferAnyLead?: InputMaybe; PermissionsTwoFactorApi?: InputMaybe; + PermissionsUMAStandaloneUserPerm?: InputMaybe; + PermissionsUMAWebTrackingSetup?: InputMaybe; + PermissionsUmaEditConsentSettings?: InputMaybe; + PermissionsUmaQueryCMSEmailContent?: InputMaybe; + PermissionsUnifiedEHDViewer?: InputMaybe; PermissionsUpdateReportTypeReferences?: InputMaybe; - PermissionsUseAnyApiAuth?: InputMaybe; PermissionsUseAssistantDialog?: InputMaybe; PermissionsUseMySearch?: InputMaybe; PermissionsUseQuerySuggestions?: InputMaybe; @@ -7887,6 +11372,7 @@ export type PermissionSet_Filter = { PermissionsUseTeamsForItSrvcs?: InputMaybe; PermissionsUseWebLink?: InputMaybe; PermissionsUserCanDeployStore?: InputMaybe; + PermissionsUserHasSendToListFilterAccess?: InputMaybe; PermissionsUserInteractionInsights?: InputMaybe; PermissionsViewAccessPolicies?: InputMaybe; PermissionsViewAllActivities?: InputMaybe; @@ -7895,10 +11381,12 @@ export type PermissionSet_Filter = { PermissionsViewAllFieldsGlobal?: InputMaybe; PermissionsViewAllForecasts?: InputMaybe; PermissionsViewAllForeignKeyNames?: InputMaybe; + PermissionsViewAllNonSetupFlows?: InputMaybe; PermissionsViewAllPolicyCenterPolicies?: InputMaybe; PermissionsViewAllProfiles?: InputMaybe; PermissionsViewAllUsers?: InputMaybe; PermissionsViewApiNamedQueries?: InputMaybe; + PermissionsViewBusinessUnit?: InputMaybe; PermissionsViewClientSecret?: InputMaybe; PermissionsViewContent?: InputMaybe; PermissionsViewContentTaxonomy?: InputMaybe; @@ -7906,13 +11394,17 @@ export type PermissionSet_Filter = { PermissionsViewDataAssessment?: InputMaybe; PermissionsViewDataCategories?: InputMaybe; PermissionsViewDeveloperName?: InputMaybe; + PermissionsViewEmailMessagingSetup?: InputMaybe; PermissionsViewEncryptedData?: InputMaybe; PermissionsViewEventLogFiles?: InputMaybe; PermissionsViewGlobalHeader?: InputMaybe; PermissionsViewHealthCheck?: InputMaybe; PermissionsViewHelpLink?: InputMaybe; PermissionsViewLicenseUtilization?: InputMaybe; + PermissionsViewMLModels?: InputMaybe; PermissionsViewMyTeamsDashboards?: InputMaybe; + PermissionsViewNonSetupFlow?: InputMaybe; + PermissionsViewOnlyEmbeddedAppUser?: InputMaybe; PermissionsViewOrchestrationsInAutomApp?: InputMaybe; PermissionsViewPrivateStaticResources?: InputMaybe; PermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -7921,8 +11413,10 @@ export type PermissionSet_Filter = { PermissionsViewRecommendations?: InputMaybe; PermissionsViewRestrictionAndScopingRules?: InputMaybe; PermissionsViewRoles?: InputMaybe; + PermissionsViewSMSMessagingSetup?: InputMaybe; PermissionsViewSetup?: InputMaybe; PermissionsViewTrustMeasures?: InputMaybe; + PermissionsViewUMACalendar?: InputMaybe; PermissionsViewUserPII?: InputMaybe; PermissionsYourAccountCDAPublishEvents?: InputMaybe; Profile?: InputMaybe; @@ -7940,6 +11434,285 @@ export type PermissionSet_License_Filters = { PermissionSetLicense?: InputMaybe; }; +export type PersnlBatchDecision_Filter = { + ActivationTriggerType?: InputMaybe; + BatchStatus?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + ErrorCode?: InputMaybe; + Id?: InputMaybe; + InputDataModelObjectId?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefresh?: InputMaybe; + LastSuccessfulRefresh?: InputMaybe; + LastViewedDate?: InputMaybe; + LatestRefreshedStatus?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentId?: InputMaybe; + ModelRevision?: InputMaybe; + ModelVersion?: InputMaybe; + Name?: InputMaybe; + OutputDataModelObjectId?: InputMaybe; + RefreshMode?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersnlContextVariable_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationDataType?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersnlExperience_Filter = { + Channel?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataProvider?: InputMaybe; + DataProviderId?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + DisplayLocation?: InputMaybe; + ElementClickPath?: InputMaybe; + ElementClickTag?: InputMaybe; + EngagementDestination?: InputMaybe; + ExitIntentDelay?: InputMaybe; + GroupDataRetrievalBy?: InputMaybe; + GroupDataRetrievalById?: InputMaybe; + Id?: InputMaybe; + IsAllowedToRenderIfEmpty?: InputMaybe; + IsDeleted?: InputMaybe; + IsEnabled?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PublishedDate?: InputMaybe; + ScrollPercentValue?: InputMaybe; + StreamingAppDataConnectorId?: InputMaybe; + SystemModstamp?: InputMaybe; + TargetMethodType?: InputMaybe; + WhenToTransform?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersnlTransformer_Filter = { + Category?: InputMaybe; + Channel?: InputMaybe; + ComponentName?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Html?: InputMaybe; + Id?: InputMaybe; + IsAutoEngmntAttrsDisabled?: InputMaybe; + IsDeleted?: InputMaybe; + IsEnabled?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationSchema?: InputMaybe; + PersonalizationSchemaId?: InputMaybe; + PublishedDate?: InputMaybe; + Script?: InputMaybe; + SystemModstamp?: InputMaybe; + TransformerType?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationDecision_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationPoint?: InputMaybe; + PersonalizationPointId?: InputMaybe; + Personalizer?: InputMaybe; + PersonalizerId?: InputMaybe; + Priority?: InputMaybe; + State?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationObjective_Filter = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationPoint_Filter = { + AbnExperiment?: InputMaybe; + AbnExperimentId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsAuthenticationRequired?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + MaxItemsCount?: InputMaybe; + Name?: InputMaybe; + PersonalizationSchema?: InputMaybe; + PersonalizationSchemaEnum?: InputMaybe; + PersonalizationSchemaId?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + RootPersonalizationPoint?: InputMaybe; + Source?: InputMaybe; + SourceRecord?: InputMaybe; + SourceRecordId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationPoint_SourceRecord_Filters = { + FlowRecordElement?: InputMaybe; + ManagedContent?: InputMaybe; + Name?: InputMaybe; +}; + +export type PersonalizationRecommender_Filter = { + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + Goal?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + IsRemote?: InputMaybe; + ItemDataGraph?: InputMaybe; + ItemDataGraphId?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastRefresh?: InputMaybe; + LastSuccessfulRefresh?: InputMaybe; + LastViewedDate?: InputMaybe; + LatestRefreshedStatus?: InputMaybe; + Name?: InputMaybe; + Objective?: InputMaybe; + ObjectiveId?: InputMaybe; + ProfileDataGraph?: InputMaybe; + ProfileDataGraphId?: InputMaybe; + Status?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type PersonalizationSchema_Filter = { + ContentObjectId?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DataSpace?: InputMaybe; + DataSpaceId?: InputMaybe; + Description?: InputMaybe; + DeveloperName?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastReferencedDate?: InputMaybe; + LastViewedDate?: InputMaybe; + Name?: InputMaybe; + PersonalizationType?: InputMaybe; + SystemModstamp?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type PhoneNumberOperators = { eq?: InputMaybe; gt?: InputMaybe; @@ -8073,6 +11846,7 @@ export type ProcessDefinition_Filter = { export type ProcessException_AttachedTo_Filters = { Agent__c?: InputMaybe; Application__c?: InputMaybe; + AsyncOperationTracker?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lease__c?: InputMaybe; Maintenance_Request__c?: InputMaybe; @@ -8106,6 +11880,8 @@ export type ProcessException_Filter = { CreatedDate?: InputMaybe; Description?: InputMaybe; ExternalReference?: InputMaybe; + GroupBy?: InputMaybe; + GroupById?: InputMaybe; Id?: InputMaybe; IsDeleted?: InputMaybe; LastModifiedBy?: InputMaybe; @@ -8164,6 +11940,7 @@ export type ProcessInstance_Filter = { export type ProcessInstance_TargetObject_Filters = { Account?: InputMaybe; + ActivationTarget?: InputMaybe; Agent__c?: InputMaybe; AnalyticsUserAttrFuncTkn?: InputMaybe; Application__c?: InputMaybe; @@ -8173,13 +11950,18 @@ export type ProcessInstance_TargetObject_Filters = { Asset?: InputMaybe; AssetRelationship?: InputMaybe; AssociatedLocation?: InputMaybe; + AsyncOperationTracker?: InputMaybe; AuthorizationForm?: InputMaybe; AuthorizationFormConsent?: InputMaybe; AuthorizationFormDataUse?: InputMaybe; AuthorizationFormText?: InputMaybe; + BriefPlanStep?: InputMaybe; BusinessBrand?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + ChannelProgramMember?: InputMaybe; CommSubscription?: InputMaybe; CommSubscriptionChannelType?: InputMaybe; CommSubscriptionConsent?: InputMaybe; @@ -8192,18 +11974,38 @@ export type ProcessInstance_TargetObject_Filters = { ContactPointTypeConsent?: InputMaybe; Contract?: InputMaybe; Customer?: InputMaybe; + DataAction?: InputMaybe; + DataActionJobSummary?: InputMaybe; + DataActionTarget?: InputMaybe; + DataCommCapActvTarget?: InputMaybe; + DataCommunicationCap?: InputMaybe; + DataGraph?: InputMaybe; + DataKitDeploymentLog?: InputMaybe; + DataKnowledgeSpace?: InputMaybe; + DataKnowledgeSpcJobRun?: InputMaybe; + DataKnowledgeSrcFileRef?: InputMaybe; + DataLakeObjectInstance?: InputMaybe; + DataLineageNodeDefSyncLog?: InputMaybe; + DataQueryWorkspace?: InputMaybe; + DataQueryWorkspaceTab?: InputMaybe; + DataQuickAttribute?: InputMaybe; + DataStream?: InputMaybe; DataUseLegalBasis?: InputMaybe; DataUsePurpose?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; DuplicateRecordItem?: InputMaybe; DuplicateRecordSet?: InputMaybe; EmailMessage?: InputMaybe; EngagementChannelType?: InputMaybe; + ExtDataShare?: InputMaybe; + ExtDataShareTarget?: InputMaybe; FlowOrchestrationInstance?: InputMaybe; FlowOrchestrationVersion?: InputMaybe; FlowOrchestrationWorkItem?: InputMaybe; + IdentityResolution?: InputMaybe; Image?: InputMaybe; KPI_Snapshot__c?: InputMaybe; Lead?: InputMaybe; @@ -8212,11 +12014,20 @@ export type ProcessInstance_TargetObject_Filters = { LocationTrustMeasure?: InputMaybe; Maintenance_Request__c?: InputMaybe; Maintenance_Worker__c?: InputMaybe; + MarketSegment?: InputMaybe; + MarketSegmentActivation?: InputMaybe; + MktCalculatedInsight?: InputMaybe; + MktDataTransform?: InputMaybe; + MktMLModel?: InputMaybe; Name?: InputMaybe; Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; OrgMetricScanSummary?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -8232,10 +12043,11 @@ export type ProcessInstance_TargetObject_Filters = { Property_Owner__c?: InputMaybe; Property_Sale__c?: InputMaybe; Property__c?: InputMaybe; - ReportHierarchyObjectField?: InputMaybe; + Prospect?: InputMaybe; SecurityHealthCheckAlertRecipient?: InputMaybe; SecurityHealthCheckResult?: InputMaybe; Seller?: InputMaybe; + SenderEmailAddress?: InputMaybe; SocialPost?: InputMaybe; StreamingChannel?: InputMaybe; TableauHostMapping?: InputMaybe; @@ -8433,12 +12245,18 @@ export type Profile_Filter = { LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; Name?: InputMaybe; - PermissionsAcceptInboundBundling?: InputMaybe; + PermissionsAICreateInsightObjects?: InputMaybe; + PermissionsAIViewInsightObjects?: InputMaybe; PermissionsAccessBankingRelationshipAssistance?: InputMaybe; PermissionsAccessBankingServiceAgent?: InputMaybe; PermissionsAccessCMC?: InputMaybe; + PermissionsAccessCdpApp?: InputMaybe; + PermissionsAccessCdpDataExplorer?: InputMaybe; + PermissionsAccessCdpProfileExplorer?: InputMaybe; PermissionsAccessContentBuilder?: InputMaybe; + PermissionsAccessCustomerDataCloudSetup?: InputMaybe; PermissionsAccessDisputePrompts?: InputMaybe; + PermissionsAccessKnowledgeSpace?: InputMaybe; PermissionsAccessOrchestrationObjects?: InputMaybe; PermissionsAccessPolicyAgent?: InputMaybe; PermissionsAccessServiceEinstein?: InputMaybe; @@ -8450,10 +12268,23 @@ export type Profile_Filter = { PermissionsAccessWealthAdvisorAgent?: InputMaybe; PermissionsAccountSwitcherUser?: InputMaybe; PermissionsActivateContract?: InputMaybe; + PermissionsActivateDeactivateNonSetupFlow?: InputMaybe; PermissionsActivateOrder?: InputMaybe; PermissionsActivateSystemModeFlows?: InputMaybe; PermissionsActivitiesAccess?: InputMaybe; + PermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + PermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; PermissionsAddDirectMessageMembers?: InputMaybe; + PermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + PermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + PermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + PermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddWaitToNonSetupFlow?: InputMaybe; PermissionsAdvancedCsvDataImportUser?: InputMaybe; PermissionsAgentforceServiceAgentUser?: InputMaybe; PermissionsAllowEmailIC?: InputMaybe; @@ -8480,7 +12311,9 @@ export type Profile_Filter = { PermissionsCanApproveUninstalledApps?: InputMaybe; PermissionsCanDoActAsUser?: InputMaybe; PermissionsCanEditPrompts?: InputMaybe; + PermissionsCanExitFlowViaAPI?: InputMaybe; PermissionsCanInsertFeedSystemFields?: InputMaybe; + PermissionsCanMarketingUserDebugFlow?: InputMaybe; PermissionsCanTranslateScrt2Conversation?: InputMaybe; PermissionsCanUpdateEmailMessage?: InputMaybe; PermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -8489,6 +12322,7 @@ export type Profile_Filter = { PermissionsCdcReportingCreateReports?: InputMaybe; PermissionsCdcReportingManageFolders?: InputMaybe; PermissionsCdcReportingViewReports?: InputMaybe; + PermissionsCdpConnectionManagementUser?: InputMaybe; PermissionsChangeDashboardColors?: InputMaybe; PermissionsChatterComposeUiCodesnippet?: InputMaybe; PermissionsChatterEditOwnPost?: InputMaybe; @@ -8499,20 +12333,30 @@ export type Profile_Filter = { PermissionsChatterOwnGroups?: InputMaybe; PermissionsClientSecretRotation?: InputMaybe; PermissionsCloseConversations?: InputMaybe; + PermissionsCodeBuilderUser?: InputMaybe; PermissionsConfigCustomRecs?: InputMaybe; PermissionsConfigureDataspaceScope?: InputMaybe; PermissionsConnectOrgToEnvironmentHub?: InputMaybe; PermissionsConsentApiUpdate?: InputMaybe; + PermissionsConsentBannerSettingsSetup?: InputMaybe; PermissionsContentAdministrator?: InputMaybe; PermissionsContentHubUser?: InputMaybe; PermissionsContentWorkspaces?: InputMaybe; PermissionsConvertLeads?: InputMaybe; + PermissionsCosellAuthSetupUser?: InputMaybe; + PermissionsCosellExportUser?: InputMaybe; PermissionsCreateCustomizeDashboards?: InputMaybe; PermissionsCreateCustomizeFilters?: InputMaybe; PermissionsCreateCustomizeReports?: InputMaybe; PermissionsCreateDashboardFolders?: InputMaybe; + PermissionsCreateEditNonSetupFlow?: InputMaybe; PermissionsCreateLtngTempFolder?: InputMaybe; PermissionsCreateLtngTempInPub?: InputMaybe; + PermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + PermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + PermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; PermissionsCreateMultiforce?: InputMaybe; PermissionsCreateReportFolders?: InputMaybe; PermissionsCreateReportInLightning?: InputMaybe; @@ -8524,9 +12368,11 @@ export type Profile_Filter = { PermissionsCustomSidebarOnAllPages?: InputMaybe; PermissionsCustomizeApplication?: InputMaybe; PermissionsDataExport?: InputMaybe; + PermissionsDelegatedPortalUserAdmin?: InputMaybe; PermissionsDelegatedTwoFactor?: InputMaybe; PermissionsDeleteActivatedContract?: InputMaybe; PermissionsDeleteCrMemoAndInvoice?: InputMaybe; + PermissionsDeleteNonSetupFlow?: InputMaybe; PermissionsDeleteSalesforceFiles?: InputMaybe; PermissionsDeleteTopics?: InputMaybe; PermissionsDigitalLendingAdminUser?: InputMaybe; @@ -8551,6 +12397,7 @@ export type Profile_Filter = { PermissionsEditReadonlyFields?: InputMaybe; PermissionsEditTask?: InputMaybe; PermissionsEditTopics?: InputMaybe; + PermissionsEinsteinMetadataUserAccess?: InputMaybe; PermissionsEmailAdministration?: InputMaybe; PermissionsEmailMass?: InputMaybe; PermissionsEmailSingle?: InputMaybe; @@ -8572,7 +12419,6 @@ export type Profile_Filter = { PermissionsFreezeUsers?: InputMaybe; PermissionsGiveRecognitionBadge?: InputMaybe; PermissionsGovernNetworks?: InputMaybe; - PermissionsGrantOutboundBundling?: InputMaybe; PermissionsHasUnlimitedNBAExecutions?: InputMaybe; PermissionsHeadlessCMSAccess?: InputMaybe; PermissionsHeadlessPublishNudges?: InputMaybe; @@ -8597,16 +12443,20 @@ export type Profile_Filter = { PermissionsListEmailSend?: InputMaybe; PermissionsLobbyManagementUserAccess?: InputMaybe; PermissionsLtngPromoReserved01UserPerm?: InputMaybe; + PermissionsMCGSetupUserPerm?: InputMaybe; PermissionsMCPMetadataApi?: InputMaybe; PermissionsManageAccessPolicies?: InputMaybe; PermissionsManageAgentforceServiceAgent?: InputMaybe; PermissionsManageAnalyticSnapshots?: InputMaybe; PermissionsManageApiNamedQueries?: InputMaybe; PermissionsManageAuthProviders?: InputMaybe; + PermissionsManageBriefs?: InputMaybe; PermissionsManageBusinessHourHolidays?: InputMaybe; + PermissionsManageBusinessUnit?: InputMaybe; PermissionsManageC360AConnections?: InputMaybe; PermissionsManageCMS?: InputMaybe; PermissionsManageCallCenters?: InputMaybe; + PermissionsManageCampaigns?: InputMaybe; PermissionsManageCases?: InputMaybe; PermissionsManageCategories?: InputMaybe; PermissionsManageCdpMlModels?: InputMaybe; @@ -8617,19 +12467,26 @@ export type Profile_Filter = { PermissionsManageContentProperties?: InputMaybe; PermissionsManageContentTaxonomy?: InputMaybe; PermissionsManageContentTypes?: InputMaybe; + PermissionsManageCssUsers?: InputMaybe; PermissionsManageCustomDomains?: InputMaybe; PermissionsManageCustomPermissions?: InputMaybe; PermissionsManageCustomReportTypes?: InputMaybe; + PermissionsManageCustomerDataOptOut?: InputMaybe; PermissionsManageDashbdsInPubFolders?: InputMaybe; + PermissionsManageDataAnalyticsGroups?: InputMaybe; PermissionsManageDataCategories?: InputMaybe; PermissionsManageDataIntegrations?: InputMaybe; PermissionsManageDataspaceScope?: InputMaybe; + PermissionsManageDevSandboxes?: InputMaybe; PermissionsManageDynamicDashboards?: InputMaybe; PermissionsManageEmailClientConfig?: InputMaybe; + PermissionsManageEmailContent?: InputMaybe; + PermissionsManageEmailMessagingSetup?: InputMaybe; PermissionsManageExchangeConfig?: InputMaybe; PermissionsManageExternalConnections?: InputMaybe; PermissionsManageFilesAndAttachments?: InputMaybe; PermissionsManageForecastingCustomData?: InputMaybe; + PermissionsManageGlobalPrivacyCenterVO?: InputMaybe; PermissionsManageHealthCheck?: InputMaybe; PermissionsManageHerokuAppLink?: InputMaybe; PermissionsManageHubConnections?: InputMaybe; @@ -8642,11 +12499,14 @@ export type Profile_Filter = { PermissionsManageMaliciousFiles?: InputMaybe; PermissionsManageMobile?: InputMaybe; PermissionsManageMobileAppSecurity?: InputMaybe; + PermissionsManageMyExternalUsers?: InputMaybe; PermissionsManageNamedCredentials?: InputMaybe; PermissionsManageNetworks?: InputMaybe; PermissionsManageOrchInstsAndWorkItems?: InputMaybe; PermissionsManageOrchestrationRuns?: InputMaybe; + PermissionsManagePartners?: InputMaybe; PermissionsManagePasswordPolicies?: InputMaybe; + PermissionsManagePreferenceCenter?: InputMaybe; PermissionsManageProfilesPermissionsets?: InputMaybe; PermissionsManagePropositions?: InputMaybe; PermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -8656,10 +12516,11 @@ export type Profile_Filter = { PermissionsManageRemoteAccess?: InputMaybe; PermissionsManageReportsInPubFolders?: InputMaybe; PermissionsManageRoles?: InputMaybe; + PermissionsManageSMSDomainSetup?: InputMaybe; + PermissionsManageSMSMessagingSetup?: InputMaybe; + PermissionsManageSandboxes?: InputMaybe; PermissionsManageSessionPermissionSets?: InputMaybe; - PermissionsManageSharedListViews?: InputMaybe; PermissionsManageSharing?: InputMaybe; - PermissionsManageSocialPosting?: InputMaybe; PermissionsManageSolutions?: InputMaybe; PermissionsManageSubscriptions?: InputMaybe; PermissionsManageSurveys?: InputMaybe; @@ -8669,8 +12530,7 @@ export type Profile_Filter = { PermissionsManageUnlistedGroups?: InputMaybe; PermissionsManageUsers?: InputMaybe; PermissionsMassInlineEdit?: InputMaybe; - PermissionsMeetingEngagementUser?: InputMaybe; - PermissionsMemberSelfServiceAgentAccess?: InputMaybe; + PermissionsMcScoringRulesConfig?: InputMaybe; PermissionsMergeTopics?: InputMaybe; PermissionsMetadataStudioUser?: InputMaybe; PermissionsMicrobatching?: InputMaybe; @@ -8690,19 +12550,27 @@ export type Profile_Filter = { PermissionsMonitorLoginHistory?: InputMaybe; PermissionsNativeWebviewScrolling?: InputMaybe; PermissionsNewReportBuilder?: InputMaybe; + PermissionsOpportunityInfluence?: InputMaybe; + PermissionsOrgPerformanceAccess?: InputMaybe; PermissionsOutboundMigrationToolsUser?: InputMaybe; PermissionsOverrideForecasts?: InputMaybe; + PermissionsPRMChannelMgmtConsoleUser?: InputMaybe; PermissionsPackaging2?: InputMaybe; PermissionsPackaging2Delete?: InputMaybe; PermissionsPasswordNeverExpires?: InputMaybe; + PermissionsPerformanceAnalysisAccess?: InputMaybe; PermissionsPersonalizationDecisioningUser?: InputMaybe; PermissionsPersonalizationIntelUser?: InputMaybe; PermissionsPersonalizationPlatform?: InputMaybe; PermissionsPersonalizedFinanceUserAccess?: InputMaybe; + PermissionsPortalSuperUser?: InputMaybe; PermissionsPreventClassicExperience?: InputMaybe; + PermissionsPreviewTestSendEmail?: InputMaybe; + PermissionsPreviewTestSendSMS?: InputMaybe; PermissionsPrismBackofficeUser?: InputMaybe; PermissionsPrismPlaygroundUser?: InputMaybe; PermissionsPrivacyDataAccess?: InputMaybe; + PermissionsPrmEnhancedPortalUser?: InputMaybe; PermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; PermissionsPublishMultiforce?: InputMaybe; PermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -8711,6 +12579,7 @@ export type Profile_Filter = { PermissionsQuipMetricsAccess?: InputMaybe; PermissionsQuipUserEngagementMetrics?: InputMaybe; PermissionsReassignOrchestrationWorkItems?: InputMaybe; + PermissionsRecordVisibilityAPI?: InputMaybe; PermissionsRegrelloUser?: InputMaybe; PermissionsRemoveDirectMessageMembers?: InputMaybe; PermissionsResetPasswords?: InputMaybe; @@ -8724,6 +12593,8 @@ export type Profile_Filter = { PermissionsSelectFilesFromSalesforce?: InputMaybe; PermissionsSendAnnouncementEmails?: InputMaybe; PermissionsSendCustomNotifications?: InputMaybe; + PermissionsSendEmail?: InputMaybe; + PermissionsSendSMS?: InputMaybe; PermissionsSendSitRequests?: InputMaybe; PermissionsShareFilesWithNetworks?: InputMaybe; PermissionsShowCompanyNameAsUserBadge?: InputMaybe; @@ -8745,8 +12616,12 @@ export type Profile_Filter = { PermissionsTransferAnyEntity?: InputMaybe; PermissionsTransferAnyLead?: InputMaybe; PermissionsTwoFactorApi?: InputMaybe; + PermissionsUMAStandaloneUserPerm?: InputMaybe; + PermissionsUMAWebTrackingSetup?: InputMaybe; + PermissionsUmaEditConsentSettings?: InputMaybe; + PermissionsUmaQueryCMSEmailContent?: InputMaybe; + PermissionsUnifiedEHDViewer?: InputMaybe; PermissionsUpdateReportTypeReferences?: InputMaybe; - PermissionsUseAnyApiAuth?: InputMaybe; PermissionsUseAssistantDialog?: InputMaybe; PermissionsUseMySearch?: InputMaybe; PermissionsUseQuerySuggestions?: InputMaybe; @@ -8758,6 +12633,7 @@ export type Profile_Filter = { PermissionsUseTeamsForItSrvcs?: InputMaybe; PermissionsUseWebLink?: InputMaybe; PermissionsUserCanDeployStore?: InputMaybe; + PermissionsUserHasSendToListFilterAccess?: InputMaybe; PermissionsUserInteractionInsights?: InputMaybe; PermissionsViewAccessPolicies?: InputMaybe; PermissionsViewAllActivities?: InputMaybe; @@ -8766,10 +12642,12 @@ export type Profile_Filter = { PermissionsViewAllFieldsGlobal?: InputMaybe; PermissionsViewAllForecasts?: InputMaybe; PermissionsViewAllForeignKeyNames?: InputMaybe; + PermissionsViewAllNonSetupFlows?: InputMaybe; PermissionsViewAllPolicyCenterPolicies?: InputMaybe; PermissionsViewAllProfiles?: InputMaybe; PermissionsViewAllUsers?: InputMaybe; PermissionsViewApiNamedQueries?: InputMaybe; + PermissionsViewBusinessUnit?: InputMaybe; PermissionsViewClientSecret?: InputMaybe; PermissionsViewContent?: InputMaybe; PermissionsViewContentTaxonomy?: InputMaybe; @@ -8777,13 +12655,17 @@ export type Profile_Filter = { PermissionsViewDataAssessment?: InputMaybe; PermissionsViewDataCategories?: InputMaybe; PermissionsViewDeveloperName?: InputMaybe; + PermissionsViewEmailMessagingSetup?: InputMaybe; PermissionsViewEncryptedData?: InputMaybe; PermissionsViewEventLogFiles?: InputMaybe; PermissionsViewGlobalHeader?: InputMaybe; PermissionsViewHealthCheck?: InputMaybe; PermissionsViewHelpLink?: InputMaybe; PermissionsViewLicenseUtilization?: InputMaybe; + PermissionsViewMLModels?: InputMaybe; PermissionsViewMyTeamsDashboards?: InputMaybe; + PermissionsViewNonSetupFlow?: InputMaybe; + PermissionsViewOnlyEmbeddedAppUser?: InputMaybe; PermissionsViewOrchestrationsInAutomApp?: InputMaybe; PermissionsViewPrivateStaticResources?: InputMaybe; PermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -8792,8 +12674,10 @@ export type Profile_Filter = { PermissionsViewRecommendations?: InputMaybe; PermissionsViewRestrictionAndScopingRules?: InputMaybe; PermissionsViewRoles?: InputMaybe; + PermissionsViewSMSMessagingSetup?: InputMaybe; PermissionsViewSetup?: InputMaybe; PermissionsViewTrustMeasures?: InputMaybe; + PermissionsViewUMACalendar?: InputMaybe; PermissionsViewUserPII?: InputMaybe; PermissionsYourAccountCDAPublishEvents?: InputMaybe; SharingType?: InputMaybe; @@ -8820,12 +12704,18 @@ export type Profile_OrderBy = { LastReferencedDate?: InputMaybe; LastViewedDate?: InputMaybe; Name?: InputMaybe; - PermissionsAcceptInboundBundling?: InputMaybe; + PermissionsAICreateInsightObjects?: InputMaybe; + PermissionsAIViewInsightObjects?: InputMaybe; PermissionsAccessBankingRelationshipAssistance?: InputMaybe; PermissionsAccessBankingServiceAgent?: InputMaybe; PermissionsAccessCMC?: InputMaybe; + PermissionsAccessCdpApp?: InputMaybe; + PermissionsAccessCdpDataExplorer?: InputMaybe; + PermissionsAccessCdpProfileExplorer?: InputMaybe; PermissionsAccessContentBuilder?: InputMaybe; + PermissionsAccessCustomerDataCloudSetup?: InputMaybe; PermissionsAccessDisputePrompts?: InputMaybe; + PermissionsAccessKnowledgeSpace?: InputMaybe; PermissionsAccessOrchestrationObjects?: InputMaybe; PermissionsAccessPolicyAgent?: InputMaybe; PermissionsAccessServiceEinstein?: InputMaybe; @@ -8837,10 +12727,23 @@ export type Profile_OrderBy = { PermissionsAccessWealthAdvisorAgent?: InputMaybe; PermissionsAccountSwitcherUser?: InputMaybe; PermissionsActivateContract?: InputMaybe; + PermissionsActivateDeactivateNonSetupFlow?: InputMaybe; PermissionsActivateOrder?: InputMaybe; PermissionsActivateSystemModeFlows?: InputMaybe; PermissionsActivitiesAccess?: InputMaybe; + PermissionsAddAsgntElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollFltrElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCollSrtElmntToNonSetupFlow?: InputMaybe; + PermissionsAddCreaRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddDecisionElmntNonSetupFlow?: InputMaybe; + PermissionsAddDelRecElmntToNonSetupFlow?: InputMaybe; PermissionsAddDirectMessageMembers?: InputMaybe; + PermissionsAddGetRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddLoopElmntToNonSetupFlow?: InputMaybe; + PermissionsAddSubflowElmntToNonSetupFlow?: InputMaybe; + PermissionsAddTrfmElmntToNonSetupFlow?: InputMaybe; + PermissionsAddUpdtRecElmntToNonSetupFlow?: InputMaybe; + PermissionsAddWaitToNonSetupFlow?: InputMaybe; PermissionsAdvancedCsvDataImportUser?: InputMaybe; PermissionsAgentforceServiceAgentUser?: InputMaybe; PermissionsAllowEmailIC?: InputMaybe; @@ -8867,7 +12770,9 @@ export type Profile_OrderBy = { PermissionsCanApproveUninstalledApps?: InputMaybe; PermissionsCanDoActAsUser?: InputMaybe; PermissionsCanEditPrompts?: InputMaybe; + PermissionsCanExitFlowViaAPI?: InputMaybe; PermissionsCanInsertFeedSystemFields?: InputMaybe; + PermissionsCanMarketingUserDebugFlow?: InputMaybe; PermissionsCanTranslateScrt2Conversation?: InputMaybe; PermissionsCanUpdateEmailMessage?: InputMaybe; PermissionsCanUseNewDashboardBuilder?: InputMaybe; @@ -8876,6 +12781,7 @@ export type Profile_OrderBy = { PermissionsCdcReportingCreateReports?: InputMaybe; PermissionsCdcReportingManageFolders?: InputMaybe; PermissionsCdcReportingViewReports?: InputMaybe; + PermissionsCdpConnectionManagementUser?: InputMaybe; PermissionsChangeDashboardColors?: InputMaybe; PermissionsChatterComposeUiCodesnippet?: InputMaybe; PermissionsChatterEditOwnPost?: InputMaybe; @@ -8886,20 +12792,30 @@ export type Profile_OrderBy = { PermissionsChatterOwnGroups?: InputMaybe; PermissionsClientSecretRotation?: InputMaybe; PermissionsCloseConversations?: InputMaybe; + PermissionsCodeBuilderUser?: InputMaybe; PermissionsConfigCustomRecs?: InputMaybe; PermissionsConfigureDataspaceScope?: InputMaybe; PermissionsConnectOrgToEnvironmentHub?: InputMaybe; PermissionsConsentApiUpdate?: InputMaybe; + PermissionsConsentBannerSettingsSetup?: InputMaybe; PermissionsContentAdministrator?: InputMaybe; PermissionsContentHubUser?: InputMaybe; PermissionsContentWorkspaces?: InputMaybe; PermissionsConvertLeads?: InputMaybe; + PermissionsCosellAuthSetupUser?: InputMaybe; + PermissionsCosellExportUser?: InputMaybe; PermissionsCreateCustomizeDashboards?: InputMaybe; PermissionsCreateCustomizeFilters?: InputMaybe; PermissionsCreateCustomizeReports?: InputMaybe; PermissionsCreateDashboardFolders?: InputMaybe; + PermissionsCreateEditNonSetupFlow?: InputMaybe; PermissionsCreateLtngTempFolder?: InputMaybe; PermissionsCreateLtngTempInPub?: InputMaybe; + PermissionsCreateModAutEvtNonSetupFlow?: InputMaybe; + PermissionsCreateModDGTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModFormTrigNonSetupFlow?: InputMaybe; + PermissionsCreateModIndRecNonSetupFlow?: InputMaybe; + PermissionsCreateModOnDemandNonSetupFlow?: InputMaybe; PermissionsCreateMultiforce?: InputMaybe; PermissionsCreateReportFolders?: InputMaybe; PermissionsCreateReportInLightning?: InputMaybe; @@ -8911,9 +12827,11 @@ export type Profile_OrderBy = { PermissionsCustomSidebarOnAllPages?: InputMaybe; PermissionsCustomizeApplication?: InputMaybe; PermissionsDataExport?: InputMaybe; + PermissionsDelegatedPortalUserAdmin?: InputMaybe; PermissionsDelegatedTwoFactor?: InputMaybe; PermissionsDeleteActivatedContract?: InputMaybe; PermissionsDeleteCrMemoAndInvoice?: InputMaybe; + PermissionsDeleteNonSetupFlow?: InputMaybe; PermissionsDeleteSalesforceFiles?: InputMaybe; PermissionsDeleteTopics?: InputMaybe; PermissionsDigitalLendingAdminUser?: InputMaybe; @@ -8938,6 +12856,7 @@ export type Profile_OrderBy = { PermissionsEditReadonlyFields?: InputMaybe; PermissionsEditTask?: InputMaybe; PermissionsEditTopics?: InputMaybe; + PermissionsEinsteinMetadataUserAccess?: InputMaybe; PermissionsEmailAdministration?: InputMaybe; PermissionsEmailMass?: InputMaybe; PermissionsEmailSingle?: InputMaybe; @@ -8959,7 +12878,6 @@ export type Profile_OrderBy = { PermissionsFreezeUsers?: InputMaybe; PermissionsGiveRecognitionBadge?: InputMaybe; PermissionsGovernNetworks?: InputMaybe; - PermissionsGrantOutboundBundling?: InputMaybe; PermissionsHasUnlimitedNBAExecutions?: InputMaybe; PermissionsHeadlessCMSAccess?: InputMaybe; PermissionsHeadlessPublishNudges?: InputMaybe; @@ -8984,16 +12902,20 @@ export type Profile_OrderBy = { PermissionsListEmailSend?: InputMaybe; PermissionsLobbyManagementUserAccess?: InputMaybe; PermissionsLtngPromoReserved01UserPerm?: InputMaybe; + PermissionsMCGSetupUserPerm?: InputMaybe; PermissionsMCPMetadataApi?: InputMaybe; PermissionsManageAccessPolicies?: InputMaybe; PermissionsManageAgentforceServiceAgent?: InputMaybe; PermissionsManageAnalyticSnapshots?: InputMaybe; PermissionsManageApiNamedQueries?: InputMaybe; PermissionsManageAuthProviders?: InputMaybe; + PermissionsManageBriefs?: InputMaybe; PermissionsManageBusinessHourHolidays?: InputMaybe; + PermissionsManageBusinessUnit?: InputMaybe; PermissionsManageC360AConnections?: InputMaybe; PermissionsManageCMS?: InputMaybe; PermissionsManageCallCenters?: InputMaybe; + PermissionsManageCampaigns?: InputMaybe; PermissionsManageCases?: InputMaybe; PermissionsManageCategories?: InputMaybe; PermissionsManageCdpMlModels?: InputMaybe; @@ -9004,19 +12926,26 @@ export type Profile_OrderBy = { PermissionsManageContentProperties?: InputMaybe; PermissionsManageContentTaxonomy?: InputMaybe; PermissionsManageContentTypes?: InputMaybe; + PermissionsManageCssUsers?: InputMaybe; PermissionsManageCustomDomains?: InputMaybe; PermissionsManageCustomPermissions?: InputMaybe; PermissionsManageCustomReportTypes?: InputMaybe; + PermissionsManageCustomerDataOptOut?: InputMaybe; PermissionsManageDashbdsInPubFolders?: InputMaybe; + PermissionsManageDataAnalyticsGroups?: InputMaybe; PermissionsManageDataCategories?: InputMaybe; PermissionsManageDataIntegrations?: InputMaybe; PermissionsManageDataspaceScope?: InputMaybe; + PermissionsManageDevSandboxes?: InputMaybe; PermissionsManageDynamicDashboards?: InputMaybe; PermissionsManageEmailClientConfig?: InputMaybe; + PermissionsManageEmailContent?: InputMaybe; + PermissionsManageEmailMessagingSetup?: InputMaybe; PermissionsManageExchangeConfig?: InputMaybe; PermissionsManageExternalConnections?: InputMaybe; PermissionsManageFilesAndAttachments?: InputMaybe; PermissionsManageForecastingCustomData?: InputMaybe; + PermissionsManageGlobalPrivacyCenterVO?: InputMaybe; PermissionsManageHealthCheck?: InputMaybe; PermissionsManageHerokuAppLink?: InputMaybe; PermissionsManageHubConnections?: InputMaybe; @@ -9029,11 +12958,14 @@ export type Profile_OrderBy = { PermissionsManageMaliciousFiles?: InputMaybe; PermissionsManageMobile?: InputMaybe; PermissionsManageMobileAppSecurity?: InputMaybe; + PermissionsManageMyExternalUsers?: InputMaybe; PermissionsManageNamedCredentials?: InputMaybe; PermissionsManageNetworks?: InputMaybe; PermissionsManageOrchInstsAndWorkItems?: InputMaybe; PermissionsManageOrchestrationRuns?: InputMaybe; + PermissionsManagePartners?: InputMaybe; PermissionsManagePasswordPolicies?: InputMaybe; + PermissionsManagePreferenceCenter?: InputMaybe; PermissionsManageProfilesPermissionsets?: InputMaybe; PermissionsManagePropositions?: InputMaybe; PermissionsManagePvtRptsAndDashbds?: InputMaybe; @@ -9043,10 +12975,11 @@ export type Profile_OrderBy = { PermissionsManageRemoteAccess?: InputMaybe; PermissionsManageReportsInPubFolders?: InputMaybe; PermissionsManageRoles?: InputMaybe; + PermissionsManageSMSDomainSetup?: InputMaybe; + PermissionsManageSMSMessagingSetup?: InputMaybe; + PermissionsManageSandboxes?: InputMaybe; PermissionsManageSessionPermissionSets?: InputMaybe; - PermissionsManageSharedListViews?: InputMaybe; PermissionsManageSharing?: InputMaybe; - PermissionsManageSocialPosting?: InputMaybe; PermissionsManageSolutions?: InputMaybe; PermissionsManageSubscriptions?: InputMaybe; PermissionsManageSurveys?: InputMaybe; @@ -9056,8 +12989,7 @@ export type Profile_OrderBy = { PermissionsManageUnlistedGroups?: InputMaybe; PermissionsManageUsers?: InputMaybe; PermissionsMassInlineEdit?: InputMaybe; - PermissionsMeetingEngagementUser?: InputMaybe; - PermissionsMemberSelfServiceAgentAccess?: InputMaybe; + PermissionsMcScoringRulesConfig?: InputMaybe; PermissionsMergeTopics?: InputMaybe; PermissionsMetadataStudioUser?: InputMaybe; PermissionsMicrobatching?: InputMaybe; @@ -9077,19 +13009,27 @@ export type Profile_OrderBy = { PermissionsMonitorLoginHistory?: InputMaybe; PermissionsNativeWebviewScrolling?: InputMaybe; PermissionsNewReportBuilder?: InputMaybe; + PermissionsOpportunityInfluence?: InputMaybe; + PermissionsOrgPerformanceAccess?: InputMaybe; PermissionsOutboundMigrationToolsUser?: InputMaybe; PermissionsOverrideForecasts?: InputMaybe; + PermissionsPRMChannelMgmtConsoleUser?: InputMaybe; PermissionsPackaging2?: InputMaybe; PermissionsPackaging2Delete?: InputMaybe; PermissionsPasswordNeverExpires?: InputMaybe; + PermissionsPerformanceAnalysisAccess?: InputMaybe; PermissionsPersonalizationDecisioningUser?: InputMaybe; PermissionsPersonalizationIntelUser?: InputMaybe; PermissionsPersonalizationPlatform?: InputMaybe; PermissionsPersonalizedFinanceUserAccess?: InputMaybe; + PermissionsPortalSuperUser?: InputMaybe; PermissionsPreventClassicExperience?: InputMaybe; + PermissionsPreviewTestSendEmail?: InputMaybe; + PermissionsPreviewTestSendSMS?: InputMaybe; PermissionsPrismBackofficeUser?: InputMaybe; PermissionsPrismPlaygroundUser?: InputMaybe; PermissionsPrivacyDataAccess?: InputMaybe; + PermissionsPrmEnhancedPortalUser?: InputMaybe; PermissionsPrmExtIntPrtnrAdminUser?: InputMaybe; PermissionsPublishMultiforce?: InputMaybe; PermissionsQrCodeGeneratorMobilePublisherPlayground?: InputMaybe; @@ -9098,6 +13038,7 @@ export type Profile_OrderBy = { PermissionsQuipMetricsAccess?: InputMaybe; PermissionsQuipUserEngagementMetrics?: InputMaybe; PermissionsReassignOrchestrationWorkItems?: InputMaybe; + PermissionsRecordVisibilityAPI?: InputMaybe; PermissionsRegrelloUser?: InputMaybe; PermissionsRemoveDirectMessageMembers?: InputMaybe; PermissionsResetPasswords?: InputMaybe; @@ -9111,6 +13052,8 @@ export type Profile_OrderBy = { PermissionsSelectFilesFromSalesforce?: InputMaybe; PermissionsSendAnnouncementEmails?: InputMaybe; PermissionsSendCustomNotifications?: InputMaybe; + PermissionsSendEmail?: InputMaybe; + PermissionsSendSMS?: InputMaybe; PermissionsSendSitRequests?: InputMaybe; PermissionsShareFilesWithNetworks?: InputMaybe; PermissionsShowCompanyNameAsUserBadge?: InputMaybe; @@ -9132,8 +13075,12 @@ export type Profile_OrderBy = { PermissionsTransferAnyEntity?: InputMaybe; PermissionsTransferAnyLead?: InputMaybe; PermissionsTwoFactorApi?: InputMaybe; + PermissionsUMAStandaloneUserPerm?: InputMaybe; + PermissionsUMAWebTrackingSetup?: InputMaybe; + PermissionsUmaEditConsentSettings?: InputMaybe; + PermissionsUmaQueryCMSEmailContent?: InputMaybe; + PermissionsUnifiedEHDViewer?: InputMaybe; PermissionsUpdateReportTypeReferences?: InputMaybe; - PermissionsUseAnyApiAuth?: InputMaybe; PermissionsUseAssistantDialog?: InputMaybe; PermissionsUseMySearch?: InputMaybe; PermissionsUseQuerySuggestions?: InputMaybe; @@ -9145,6 +13092,7 @@ export type Profile_OrderBy = { PermissionsUseTeamsForItSrvcs?: InputMaybe; PermissionsUseWebLink?: InputMaybe; PermissionsUserCanDeployStore?: InputMaybe; + PermissionsUserHasSendToListFilterAccess?: InputMaybe; PermissionsUserInteractionInsights?: InputMaybe; PermissionsViewAccessPolicies?: InputMaybe; PermissionsViewAllActivities?: InputMaybe; @@ -9153,10 +13101,12 @@ export type Profile_OrderBy = { PermissionsViewAllFieldsGlobal?: InputMaybe; PermissionsViewAllForecasts?: InputMaybe; PermissionsViewAllForeignKeyNames?: InputMaybe; + PermissionsViewAllNonSetupFlows?: InputMaybe; PermissionsViewAllPolicyCenterPolicies?: InputMaybe; PermissionsViewAllProfiles?: InputMaybe; PermissionsViewAllUsers?: InputMaybe; PermissionsViewApiNamedQueries?: InputMaybe; + PermissionsViewBusinessUnit?: InputMaybe; PermissionsViewClientSecret?: InputMaybe; PermissionsViewContent?: InputMaybe; PermissionsViewContentTaxonomy?: InputMaybe; @@ -9164,13 +13114,17 @@ export type Profile_OrderBy = { PermissionsViewDataAssessment?: InputMaybe; PermissionsViewDataCategories?: InputMaybe; PermissionsViewDeveloperName?: InputMaybe; + PermissionsViewEmailMessagingSetup?: InputMaybe; PermissionsViewEncryptedData?: InputMaybe; PermissionsViewEventLogFiles?: InputMaybe; PermissionsViewGlobalHeader?: InputMaybe; PermissionsViewHealthCheck?: InputMaybe; PermissionsViewHelpLink?: InputMaybe; PermissionsViewLicenseUtilization?: InputMaybe; + PermissionsViewMLModels?: InputMaybe; PermissionsViewMyTeamsDashboards?: InputMaybe; + PermissionsViewNonSetupFlow?: InputMaybe; + PermissionsViewOnlyEmbeddedAppUser?: InputMaybe; PermissionsViewOrchestrationsInAutomApp?: InputMaybe; PermissionsViewPrivateStaticResources?: InputMaybe; PermissionsViewPublicCapstoneFolders?: InputMaybe; @@ -9179,8 +13133,10 @@ export type Profile_OrderBy = { PermissionsViewRecommendations?: InputMaybe; PermissionsViewRestrictionAndScopingRules?: InputMaybe; PermissionsViewRoles?: InputMaybe; + PermissionsViewSMSMessagingSetup?: InputMaybe; PermissionsViewSetup?: InputMaybe; PermissionsViewTrustMeasures?: InputMaybe; + PermissionsViewUMACalendar?: InputMaybe; PermissionsViewUserPII?: InputMaybe; PermissionsYourAccountCDAPublishEvents?: InputMaybe; SharingType?: InputMaybe; @@ -9320,28 +13276,6 @@ export type Property_Listing__C_Filter = { or?: InputMaybe>>; }; -export type Property_Listing__C_OrderBy = { - CreatedBy?: InputMaybe; - CreatedById?: InputMaybe; - CreatedDate?: InputMaybe; - Display_Order__c?: InputMaybe; - Featured__c?: InputMaybe; - Id?: InputMaybe; - IsDeleted?: InputMaybe; - LastActivityDate?: InputMaybe; - LastModifiedBy?: InputMaybe; - LastModifiedById?: InputMaybe; - LastModifiedDate?: InputMaybe; - Listing_Price__c?: InputMaybe; - Listing_Status__c?: InputMaybe; - Marketing_Description__c?: InputMaybe; - Name?: InputMaybe; - Property__c?: InputMaybe; - Property__r?: InputMaybe; - Short_Description__c?: InputMaybe; - SystemModstamp?: InputMaybe; -}; - export type Property_Management_Company__History_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -9589,6 +13523,55 @@ export type Property__C_Owner_OrderBys = { User?: InputMaybe; }; +export type Prospect_Filter = { + AnnualRevenue?: InputMaybe; + City?: InputMaybe; + Company?: InputMaybe; + ConvertedAccount?: InputMaybe; + ConvertedAccountId?: InputMaybe; + ConvertedContact?: InputMaybe; + ConvertedContactId?: InputMaybe; + ConvertedDate?: InputMaybe; + ConvertedLead?: InputMaybe; + ConvertedLeadId?: InputMaybe; + ConvertedOpportunity?: InputMaybe; + ConvertedOpportunityId?: InputMaybe; + Country?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + Description?: InputMaybe; + Email?: InputMaybe; + FirstName?: InputMaybe; + GenderIdentity?: InputMaybe; + GeocodeAccuracy?: InputMaybe; + Id?: InputMaybe; + Industry?: InputMaybe; + IsConverted?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + LastName?: InputMaybe; + Latitude?: InputMaybe; + LeadSource?: InputMaybe; + Longitude?: InputMaybe; + Name?: InputMaybe; + NumberOfEmployees?: InputMaybe; + Phone?: InputMaybe; + PostalCode?: InputMaybe; + ProspectRecordName?: InputMaybe; + ProspectStatus?: InputMaybe; + Salutation?: InputMaybe; + State?: InputMaybe; + Street?: InputMaybe; + SystemModstamp?: InputMaybe; + Title?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type QuickTextHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -9780,29 +13763,6 @@ export type RecordType_OrderBy = { SystemModstamp?: InputMaybe; }; -export type ReportHierarchyObjectField_Filter = { - CreatedBy?: InputMaybe; - CreatedById?: InputMaybe; - CreatedDate?: InputMaybe; - HierarchyApiName?: InputMaybe; - HierarchyField?: InputMaybe; - HierarchyType?: InputMaybe; - Id?: InputMaybe; - IsDeleted?: InputMaybe; - LastModifiedBy?: InputMaybe; - LastModifiedById?: InputMaybe; - LastModifiedDate?: InputMaybe; - Name?: InputMaybe; - Object?: InputMaybe; - ObjectType?: InputMaybe; - Report?: InputMaybe; - ReportId?: InputMaybe; - SystemModstamp?: InputMaybe; - and?: InputMaybe>>; - not?: InputMaybe; - or?: InputMaybe>>; -}; - export type Report_Filter = { BlockReportId?: InputMaybe; BooleanFilter?: InputMaybe; @@ -9833,7 +13793,6 @@ export type Report_Filter = { OptionsFlagCurrentSnapshotDate?: InputMaybe; OptionsFlagHasStackedSummaries?: InputMaybe; OptionsFlagIsSmartTotalDisabled?: InputMaybe; - OptionsFlagShowCommonRowsOnly?: InputMaybe; OptionsFlagShowGrandTotal?: InputMaybe; OptionsFlagShowSubtotals?: InputMaybe; OptionsFlagSideBySide?: InputMaybe; @@ -9858,17 +13817,15 @@ export type Report_Owner_Filters = { User?: InputMaybe; }; -export const ResultOrder = { - Asc: "ASC", - Desc: "DESC", -} as const; -export type ResultOrder = (typeof ResultOrder)[keyof typeof ResultOrder]; +export enum ResultOrder { + Asc = "ASC", + Desc = "DESC", +} -export const ResultsOrder = { - Asc: "ASC", - Desc: "DESC", -} as const; -export type ResultsOrder = (typeof ResultsOrder)[keyof typeof ResultsOrder]; +export enum ResultsOrder { + Asc = "ASC", + Desc = "DESC", +} export type ScorecardAssociation_Filter = { CreatedBy?: InputMaybe; @@ -9885,13 +13842,20 @@ export type ScorecardAssociation_Filter = { Scorecard?: InputMaybe; ScorecardId?: InputMaybe; SystemModstamp?: InputMaybe; - TargetEntity?: InputMaybe; + TargetEntity?: InputMaybe; TargetEntityId?: InputMaybe; and?: InputMaybe>>; not?: InputMaybe; or?: InputMaybe>>; }; +export type ScorecardAssociation_TargetEntity_Filters = { + Account?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; + Name?: InputMaybe; +}; + export type ScorecardMetric_Filter = { Category?: InputMaybe; CreatedBy?: InputMaybe; @@ -9982,33 +13946,6 @@ export type SecurityHealthCheckResult_Filter = { or?: InputMaybe>>; }; -export type SelfSvcPortalTopic_Filter = { - CreatedBy?: InputMaybe; - CreatedById?: InputMaybe; - CreatedDate?: InputMaybe; - Description?: InputMaybe; - DeveloperName?: InputMaybe; - DisplayOrder?: InputMaybe; - IconResource?: InputMaybe; - IconResourceId?: InputMaybe; - Id?: InputMaybe; - IsActive?: InputMaybe; - IsDeleted?: InputMaybe; - IsHomePage?: InputMaybe; - IsLeftNav?: InputMaybe; - Language?: InputMaybe; - LastModifiedBy?: InputMaybe; - LastModifiedById?: InputMaybe; - LastModifiedDate?: InputMaybe; - MasterLabel?: InputMaybe; - Network?: InputMaybe; - NetworkId?: InputMaybe; - SystemModstamp?: InputMaybe; - and?: InputMaybe>>; - not?: InputMaybe; - or?: InputMaybe>>; -}; - export type SellerHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -10061,6 +13998,42 @@ export type Seller_Owner_Filters = { User?: InputMaybe; }; +export type SenderEmailAddress_Filter = { + AutoReplyMessage?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + DisplayName?: InputMaybe; + EmailDomainKeyId?: InputMaybe; + FwdEmailAddress?: InputMaybe; + Id?: InputMaybe; + IncomingMessagingSettingCode?: InputMaybe; + IsAgentConversationalActive?: InputMaybe; + IsAutoReplyEnabled?: InputMaybe; + IsDeleted?: InputMaybe; + IsOutboundMessagingActive?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + MessagingChannel?: InputMaybe; + MessagingChannelId?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + SendDefinitionKey?: InputMaybe; + SystemModstamp?: InputMaybe; + Username?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + +export type SenderEmailAddress_Owner_Filters = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type SetupAssistantStep_Filter = { AssistantType?: InputMaybe; CreatedBy?: InputMaybe; @@ -10360,11 +14333,10 @@ export type StringOperators = { nin?: InputMaybe>>; }; -export const TabOrder = { - LeftRight: "LEFT_RIGHT", - TopDown: "TOP_DOWN", -} as const; -export type TabOrder = (typeof TabOrder)[keyof typeof TabOrder]; +export enum TabOrder { + LeftRight = "LEFT_RIGHT", + TopDown = "TOP_DOWN", +} export type TableauHostMapping_Filter = { CreatedBy?: InputMaybe; @@ -10462,10 +14434,14 @@ export type Task_What_Filters = { AssetRelationship?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; CommSubscriptionConsent?: InputMaybe; ContactRequest?: InputMaybe; Contract?: InputMaybe; + DataQueryWorkspace?: InputMaybe; DelegatedAccount?: InputMaybe; + DevopsActivityLog?: InputMaybe; DevopsEnvironment?: InputMaybe; DevopsRequestInfo?: InputMaybe; Image?: InputMaybe; @@ -10477,6 +14453,10 @@ export type Task_What_Filters = { Name?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; PartyConsent?: InputMaybe; Payment__c?: InputMaybe; ProcessException?: InputMaybe; @@ -10544,12 +14524,42 @@ export type Tenant__C_Filter = { or?: InputMaybe>>; }; +export type Tenant__C_OrderBy = { + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + End_Date__c?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastActivityDate?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + Owner?: InputMaybe; + OwnerId?: InputMaybe; + Property__c?: InputMaybe; + Property__r?: InputMaybe; + Start_Date__c?: InputMaybe; + Status__c?: InputMaybe; + SystemModstamp?: InputMaybe; + User_Status__c?: InputMaybe; + User__c?: InputMaybe; + User__r?: InputMaybe; +}; + export type Tenant__C_Owner_Filters = { Group?: InputMaybe; Name?: InputMaybe; User?: InputMaybe; }; +export type Tenant__C_Owner_OrderBys = { + Group?: InputMaybe; + Name?: InputMaybe; + User?: InputMaybe; +}; + export type TextAreaOperators = { eq?: InputMaybe; gt?: InputMaybe; @@ -10580,6 +14590,8 @@ export type TopicAssignment_Entity_Filters = { Asset?: InputMaybe; Campaign?: InputMaybe; Case?: InputMaybe; + ChannelProgram?: InputMaybe; + ChannelProgramLevel?: InputMaybe; Contact?: InputMaybe; ContentDocument?: InputMaybe; Contract?: InputMaybe; @@ -10594,6 +14606,10 @@ export type TopicAssignment_Entity_Filters = { Notification__c?: InputMaybe; Opportunity?: InputMaybe; Order?: InputMaybe; + PartnerFundAllocation?: InputMaybe; + PartnerFundClaim?: InputMaybe; + PartnerFundRequest?: InputMaybe; + PartnerMarketingBudget?: InputMaybe; Payment__c?: InputMaybe; Property_Cost__c?: InputMaybe; Property_Feature__c?: InputMaybe; @@ -10673,18 +14689,16 @@ export type UrlOperators = { nin?: InputMaybe>>; }; -export const UiBehavior = { - Edit: "EDIT", - Readonly: "READONLY", - Required: "REQUIRED", -} as const; -export type UiBehavior = (typeof UiBehavior)[keyof typeof UiBehavior]; +export enum UiBehavior { + Edit = "EDIT", + Readonly = "READONLY", + Required = "REQUIRED", +} -export const Unit = { - Km: "KM", - Mi: "MI", -} as const; -export type Unit = (typeof Unit)[keyof typeof Unit]; +export enum Unit { + Km = "KM", + Mi = "MI", +} export type UnstructuredStorageSpace_Filter = { ApplicationName?: InputMaybe; @@ -10901,6 +14915,7 @@ export type UserRole_Filter = { ParentRoleId?: InputMaybe; PortalAccountId?: InputMaybe; PortalAccountOwnerId?: InputMaybe; + PortalRole?: InputMaybe; PortalType?: InputMaybe; RollupDescription?: InputMaybe; SystemModstamp?: InputMaybe; @@ -10925,6 +14940,7 @@ export type UserRole_OrderBy = { ParentRoleId?: InputMaybe; PortalAccountId?: InputMaybe; PortalAccountOwnerId?: InputMaybe; + PortalRole?: InputMaybe; PortalType?: InputMaybe; RollupDescription?: InputMaybe; SystemModstamp?: InputMaybe; @@ -10984,6 +15000,8 @@ export type User_Filter = { IndividualId?: InputMaybe; IsActive?: InputMaybe; IsExtIndicatorVisible?: InputMaybe; + IsPartner?: InputMaybe; + IsPortalEnabled?: InputMaybe; IsProfilePhotoActive?: InputMaybe; LanguageLocaleKey?: InputMaybe; LastLoginDate?: InputMaybe; @@ -11009,6 +15027,7 @@ export type User_Filter = { OutOfOfficeMessage?: InputMaybe; PasswordExpirationDate?: InputMaybe; Phone?: InputMaybe; + PortalRole?: InputMaybe; PostalCode?: InputMaybe; Profile?: InputMaybe; ProfileId?: InputMaybe; @@ -11085,6 +15104,7 @@ export type User_Filter = { UserPreferencesHideEndUserOnboardingAssistantModal?: InputMaybe; UserPreferencesHideEventCalendar?: InputMaybe; UserPreferencesHideFLSNotification?: InputMaybe; + UserPreferencesHideFlowTypeChangeConfirmationModal?: InputMaybe; UserPreferencesHideLearningPathModal?: InputMaybe; UserPreferencesHideLightningMigrationModal?: InputMaybe; UserPreferencesHideMailAppEAPUserGuidance?: InputMaybe; @@ -11092,6 +15112,7 @@ export type User_Filter = { UserPreferencesHideManagedEcaMobilePubModal?: InputMaybe; UserPreferencesHideOnlineSalesAppTabVisibilityRequirementsModal?: InputMaybe; UserPreferencesHideOnlineSalesAppWelcomeMat?: InputMaybe; + UserPreferencesHideRemoteConnectInstruction?: InputMaybe; UserPreferencesHideS1BrowserUI?: InputMaybe; UserPreferencesHideSecondChatterOnboardingSplash?: InputMaybe; UserPreferencesHideSfxWelcomeMat?: InputMaybe; @@ -11207,6 +15228,8 @@ export type User_OrderBy = { IndividualId?: InputMaybe; IsActive?: InputMaybe; IsExtIndicatorVisible?: InputMaybe; + IsPartner?: InputMaybe; + IsPortalEnabled?: InputMaybe; IsProfilePhotoActive?: InputMaybe; LanguageLocaleKey?: InputMaybe; LastLoginDate?: InputMaybe; @@ -11232,6 +15255,7 @@ export type User_OrderBy = { OutOfOfficeMessage?: InputMaybe; PasswordExpirationDate?: InputMaybe; Phone?: InputMaybe; + PortalRole?: InputMaybe; PostalCode?: InputMaybe; Profile?: InputMaybe; ProfileId?: InputMaybe; @@ -11308,6 +15332,7 @@ export type User_OrderBy = { UserPreferencesHideEndUserOnboardingAssistantModal?: InputMaybe; UserPreferencesHideEventCalendar?: InputMaybe; UserPreferencesHideFLSNotification?: InputMaybe; + UserPreferencesHideFlowTypeChangeConfirmationModal?: InputMaybe; UserPreferencesHideLearningPathModal?: InputMaybe; UserPreferencesHideLightningMigrationModal?: InputMaybe; UserPreferencesHideMailAppEAPUserGuidance?: InputMaybe; @@ -11315,6 +15340,7 @@ export type User_OrderBy = { UserPreferencesHideManagedEcaMobilePubModal?: InputMaybe; UserPreferencesHideOnlineSalesAppTabVisibilityRequirementsModal?: InputMaybe; UserPreferencesHideOnlineSalesAppWelcomeMat?: InputMaybe; + UserPreferencesHideRemoteConnectInstruction?: InputMaybe; UserPreferencesHideS1BrowserUI?: InputMaybe; UserPreferencesHideSecondChatterOnboardingSplash?: InputMaybe; UserPreferencesHideSfxWelcomeMat?: InputMaybe; @@ -11383,6 +15409,30 @@ export type User_OrderBy = { Username?: InputMaybe; }; +export type WaveAutoInstallRequest_Filter = { + Configuration?: InputMaybe; + CreatedBy?: InputMaybe; + CreatedById?: InputMaybe; + CreatedDate?: InputMaybe; + FailedReason?: InputMaybe; + FolderId?: InputMaybe; + Id?: InputMaybe; + IsDeleted?: InputMaybe; + LastModifiedBy?: InputMaybe; + LastModifiedById?: InputMaybe; + LastModifiedDate?: InputMaybe; + Name?: InputMaybe; + RequestLog?: InputMaybe; + RequestStatus?: InputMaybe; + RequestType?: InputMaybe; + SystemModstamp?: InputMaybe; + TemplateApiName?: InputMaybe; + TemplateVersion?: InputMaybe; + and?: InputMaybe>>; + not?: InputMaybe; + or?: InputMaybe>>; +}; + export type WorkBadgeDefinitionHistory_Filter = { CreatedBy?: InputMaybe; CreatedById?: InputMaybe; @@ -11570,8 +15620,10 @@ export type WorkOrder_Owner_Filters = { }; export type MaintenanceRequestsQueryVariables = Exact<{ - first: Scalars["Int"]["input"]; + first?: InputMaybe; after?: InputMaybe; + where?: InputMaybe; + orderBy?: InputMaybe; }>; export type MaintenanceRequestsQuery = { @@ -11603,6 +15655,50 @@ export type MaintenanceRequestsQuery = { }; }; +export type DistinctPropertyStatusQueryVariables = Exact<{ [key: string]: never }>; + +export type DistinctPropertyStatusQuery = { + uiapi: { + aggregate: { + Property__c?: { + edges?: Array<{ + node?: { + aggregate?: { + Status__c?: { + value?: string | null; + displayValue?: string | null; + label?: string | null; + } | null; + } | null; + } | null; + } | null> | null; + } | null; + }; + }; +}; + +export type DistinctPropertyTypeQueryVariables = Exact<{ [key: string]: never }>; + +export type DistinctPropertyTypeQuery = { + uiapi: { + aggregate: { + Property__c?: { + edges?: Array<{ + node?: { + aggregate?: { + Type__c?: { + value?: string | null; + displayValue?: string | null; + label?: string | null; + } | null; + } | null; + } | null; + } | null> | null; + } | null; + }; + }; +}; + export type ListingByIdQueryVariables = Exact<{ listingId: Scalars["ID"]["input"]; }>; @@ -11625,11 +15721,30 @@ export type ListingByIdQuery = { }; }; -export type PropertyByIdQueryVariables = Exact<{ +export type PropertyAddressesByIdsQueryVariables = Exact<{ + propertyIds?: InputMaybe | Scalars["ID"]["input"]>; +}>; + +export type PropertyAddressesByIdsQuery = { + uiapi: { + query: { + Property__c?: { + edges?: Array<{ + node?: { + Id: string; + Address__c?: { value?: string | null; displayValue?: string | null } | null; + } | null; + } | null> | null; + } | null; + }; + }; +}; + +export type PropertyDetailByIdQueryVariables = Exact<{ propertyId: Scalars["ID"]["input"]; }>; -export type PropertyByIdQuery = { +export type PropertyDetailByIdQuery = { uiapi: { query: { Property__c?: { @@ -11638,20 +15753,57 @@ export type PropertyByIdQuery = { Id: string; Name?: { value?: string | null; displayValue?: string | null } | null; Address__c?: { value?: string | null; displayValue?: string | null } | null; - Coordinates__Latitude__s?: { - value?: number | null; - displayValue?: string | null; - } | null; - Coordinates__Longitude__s?: { - value?: number | null; - displayValue?: string | null; - } | null; + Coordinates__Latitude__s?: { value?: number | null } | null; + Coordinates__Longitude__s?: { value?: number | null } | null; Type__c?: { value?: string | null; displayValue?: string | null } | null; Monthly_Rent__c?: { value?: number | null; displayValue?: string | null } | null; Bedrooms__c?: { value?: number | null; displayValue?: string | null } | null; Bathrooms__c?: { value?: number | null; displayValue?: string | null } | null; Sq_Ft__c?: { value?: number | null; displayValue?: string | null } | null; Description__c?: { value?: string | null; displayValue?: string | null } | null; + Property_Images__r?: { + edges?: Array<{ + node?: { + Id: string; + Name?: { value?: string | null } | null; + Image_URL__c?: { value?: string | null } | null; + Image_Type__c?: { value?: string | null } | null; + Display_Order__c?: { value?: number | null } | null; + Alt_Text__c?: { value?: string | null } | null; + } | null; + } | null> | null; + } | null; + Property_Features__r?: { + edges?: Array<{ + node?: { + Id: string; + Name?: { value?: string | null } | null; + Feature_Category__c?: { value?: string | null } | null; + Description__c?: { value?: string | null } | null; + } | null; + } | null> | null; + } | null; + Property_Costs__r?: { + edges?: Array<{ + node?: { + Id: string; + Cost_Category__c?: { value?: string | null } | null; + Cost_Amount__c?: { value?: number | null } | null; + Cost_Date__c?: { value?: string | null } | null; + Description__c?: { value?: string | null } | null; + } | null; + } | null> | null; + } | null; + Property_Listings__r?: { + edges?: Array<{ + node?: { + Id: string; + Name?: { value?: string | null } | null; + Listing_Price__c?: { value?: number | null } | null; + Listing_Status__c?: { value?: string | null } | null; + } | null; + } | null> | null; + } | null; } | null; } | null> | null; } | null; @@ -11659,120 +15811,68 @@ export type PropertyByIdQuery = { }; }; -export type PropertyImagesQueryVariables = Exact<{ - propertyId: Scalars["ID"]["input"]; -}>; - -export type PropertyImagesQuery = { - uiapi: { - query: { - Property_Image__c?: { - edges?: Array<{ - node?: { - Id: string; - Name?: { value?: string | null; displayValue?: string | null } | null; - Image_URL__c?: { value?: string | null; displayValue?: string | null } | null; - Image_Type__c?: { value?: string | null; displayValue?: string | null } | null; - Display_Order__c?: { value?: number | null; displayValue?: string | null } | null; - Alt_Text__c?: { value?: string | null; displayValue?: string | null } | null; - } | null; - } | null> | null; - } | null; - }; - }; -}; - -export type PropertyCostsQueryVariables = Exact<{ - propertyId: Scalars["ID"]["input"]; -}>; - -export type PropertyCostsQuery = { - uiapi: { - query: { - Property_Cost__c?: { - edges?: Array<{ - node?: { - Id: string; - Cost_Category__c?: { value?: string | null; displayValue?: string | null } | null; - Cost_Amount__c?: { value?: number | null; displayValue?: string | null } | null; - Cost_Date__c?: { value?: string | null; displayValue?: string | null } | null; - Description__c?: { value?: string | null; displayValue?: string | null } | null; - Vendor__c?: { value?: string | null; displayValue?: string | null } | null; - } | null; - } | null> | null; - } | null; - }; - }; -}; - -export type PropertyFeaturesQueryVariables = Exact<{ - propertyId: Scalars["ID"]["input"]; -}>; - -export type PropertyFeaturesQuery = { - uiapi: { - query: { - Property_Feature__c?: { - edges?: Array<{ - node?: { - Id: string; - Name?: { value?: string | null; displayValue?: string | null } | null; - Feature_Category__c?: { value?: string | null; displayValue?: string | null } | null; - Description__c?: { value?: string | null; displayValue?: string | null } | null; - } | null; - } | null> | null; - } | null; - }; - }; -}; - -export type PropertyListingsQueryVariables = Exact<{ - where?: InputMaybe; - first: Scalars["Int"]["input"]; +export type SearchPropertiesQueryVariables = Exact<{ + first?: InputMaybe; after?: InputMaybe; - orderBy?: InputMaybe; + where?: InputMaybe; + orderBy?: InputMaybe; }>; -export type PropertyListingsQuery = { +export type SearchPropertiesQuery = { uiapi: { query: { - Property_Listing__c?: { + Property__c?: { totalCount: number; edges?: Array<{ - cursor: string; node?: { Id: string; - ApiName: string; Name?: { value?: string | null; displayValue?: string | null } | null; - Listing_Price__c?: { value?: number | null; displayValue?: string | null } | null; - Listing_Status__c?: { value?: string | null; displayValue?: string | null } | null; - Property__c?: { value?: string | null; displayValue?: string | null } | null; - Property__r?: { - Name?: { value?: string | null; displayValue?: string | null } | null; - Address__c?: { value?: string | null; displayValue?: string | null } | null; - Coordinates__Latitude__s?: { - value?: number | null; - displayValue?: string | null; - } | null; - Coordinates__Longitude__s?: { - value?: number | null; - displayValue?: string | null; - } | null; - Bedrooms__c?: { value?: number | null; displayValue?: string | null } | null; + Address__c?: { value?: string | null; displayValue?: string | null } | null; + Status__c?: { value?: string | null; displayValue?: string | null } | null; + Type__c?: { value?: string | null; displayValue?: string | null } | null; + Monthly_Rent__c?: { value?: number | null; displayValue?: string | null } | null; + Bedrooms__c?: { value?: number | null; displayValue?: string | null } | null; + Coordinates__Latitude__s?: { value?: number | null } | null; + Coordinates__Longitude__s?: { value?: number | null } | null; + CreatedDate?: { value?: string | null; displayValue?: string | null } | null; + Property_Images__r?: { + edges?: Array<{ + node?: { + Id: string; + Image_URL__c?: { value?: string | null } | null; + Image_Type__c?: { value?: string | null } | null; + Display_Order__c?: { value?: number | null } | null; + } | null; + } | null> | null; + } | null; + Property_Features__r?: { + edges?: Array<{ + node?: { Id: string; Description__c?: { value?: string | null } | null } | null; + } | null> | null; } | null; } | null; } | null> | null; pageInfo: { hasNextPage: boolean; hasPreviousPage: boolean; - startCursor?: string | null; endCursor?: string | null; + startCursor?: string | null; }; } | null; }; }; }; +export type TenantAccessQueryVariables = Exact<{ + userId: Scalars["ID"]["input"]; +}>; + +export type TenantAccessQuery = { + uiapi: { + query: { Tenant__c?: { edges?: Array<{ node?: { Id: string } | null } | null> | null } | null }; + }; +}; + export type DistinctAccountIndustriesQueryVariables = Exact<{ [key: string]: never }>; export type DistinctAccountIndustriesQuery = { diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/graphqlClient.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/graphqlClient.ts similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/graphqlClient.ts rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/graphqlClient.ts diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/leadApi.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/leads/leadApi.ts similarity index 97% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/leadApi.ts rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/leads/leadApi.ts index cf148a5..e9dd6cd 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/api/leadApi.ts +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/leads/leadApi.ts @@ -2,7 +2,7 @@ * Create Lead records in Salesforce for Contact Us form and newsletter signup. * Uses the standard Lead object (FirstName, LastName, Email, Phone, Company, Description, LeadSource). */ -import { createRecord } from "@salesforce/webapp-experimental/api"; +import { createRecord } from "@salesforce/ui-bundle/api"; const OBJECT_API_NAME = "Lead"; diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/maintenanceRequests/maintenanceRequestApi.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/maintenanceRequests/maintenanceRequestApi.ts new file mode 100644 index 0000000..93f602a --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/maintenanceRequests/maintenanceRequestApi.ts @@ -0,0 +1,74 @@ +/** + * Maintenance_Request__c: list via GraphQL, create via createRecord. + */ +import { createRecord } from "@salesforce/ui-bundle/api"; +import MAINTENANCE_REQUESTS_QUERY from "./query/maintenanceRequests.graphql?raw"; +import type { + MaintenanceRequestsQuery, + MaintenanceRequestsQueryVariables, +} from "@/api/graphql-operations-types.js"; +import { + searchObjects, + type ObjectSearchOptions, +} from "@/features/object-search/api/objectSearchService"; + +const OBJECT_API_NAME = "Maintenance_Request__c"; + +export type MaintenanceRequestSearchResult = NonNullable< + MaintenanceRequestsQuery["uiapi"]["query"]["Maintenance_Request__c"] +>; + +export type MaintenanceRequestNode = NonNullable< + NonNullable[number]>["node"] +>; + +export type MaintenanceRequestSearchOptions = ObjectSearchOptions< + MaintenanceRequestsQueryVariables["where"], + MaintenanceRequestsQueryVariables["orderBy"] +>; + +export async function searchMaintenanceRequests( + options: MaintenanceRequestSearchOptions = {}, +): Promise { + return searchObjects< + MaintenanceRequestSearchResult, + MaintenanceRequestsQuery, + MaintenanceRequestsQueryVariables + >(MAINTENANCE_REQUESTS_QUERY, OBJECT_API_NAME, options); +} + +export interface CreateMaintenanceRequestInput { + Description__c: string; + Type__c?: string | null; + Priority__c?: string; + Status__c?: string; + Scheduled__c?: string | null; +} + +function getRecordIdFromResponse(result: Record): string { + const id = + typeof result.id === "string" + ? result.id + : (result.fields as Record | undefined)?.Id?.value; + if (!id) throw new Error("Create succeeded but no record id returned"); + return id; +} + +export async function createMaintenanceRequest( + input: CreateMaintenanceRequestInput, +): Promise<{ id: string }> { + const description = input.Description__c?.trim(); + if (!description) throw new Error("Description is required"); + const fields: Record = { + Description__c: description, + Priority__c: input.Priority__c?.trim() || "Standard", + Status__c: input.Status__c?.trim() || "New", + }; + if (input.Type__c?.trim()) fields.Type__c = input.Type__c.trim(); + if (input.Scheduled__c?.trim()) fields.Scheduled__c = input.Scheduled__c.trim(); + const result = (await createRecord(OBJECT_API_NAME, fields)) as unknown as Record< + string, + unknown + >; + return { id: getRecordIdFromResponse(result) }; +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/maintenanceRequests/query/maintenanceRequests.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/maintenanceRequests/query/maintenanceRequests.graphql new file mode 100644 index 0000000..bdaf030 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/maintenanceRequests/query/maintenanceRequests.graphql @@ -0,0 +1,60 @@ +query MaintenanceRequests( + $first: Int + $after: String + $where: Maintenance_Request__c_Filter + $orderBy: Maintenance_Request__c_OrderBy +) { + uiapi { + query { + Maintenance_Request__c(first: $first, after: $after, where: $where, orderBy: $orderBy) { + edges { + node { + Id + ApiName + Name @optional { + value + displayValue + } + Description__c @optional { + value + displayValue + } + Type__c @optional { + value + displayValue + } + Priority__c @optional { + value + displayValue + } + Status__c @optional { + value + displayValue + } + Scheduled__c @optional { + value + displayValue + } + User__r @optional { + Name @optional { + value + displayValue + } + } + Property__r @optional { + Address__c @optional { + value + displayValue + } + } + } + cursor + } + pageInfo { + hasNextPage + endCursor + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertyDetailGraphQL.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertyDetailGraphQL.ts new file mode 100644 index 0000000..a070990 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertyDetailGraphQL.ts @@ -0,0 +1,75 @@ +/** + * GraphQL queries for property detail and related data. + */ +import LISTING_QUERY from "./query/listingById.graphql?raw"; +import PROPERTY_DETAIL_QUERY from "./query/propertyDetailById.graphql?raw"; +import PROPERTY_ADDRESSES_BY_IDS_QUERY from "./query/propertyAddressesByIds.graphql?raw"; +import type { + ListingByIdQuery, + ListingByIdQueryVariables, + PropertyDetailByIdQuery, + PropertyDetailByIdQueryVariables, + PropertyAddressesByIdsQuery, + PropertyAddressesByIdsQueryVariables, +} from "@/api/graphql-operations-types.js"; +import { executeGraphQL } from "@/api/graphqlClient.js"; + +// ---- Listing by Id (used by usePropertyDetail fallback for listing ID routes) ---- + +export type ListingDetail = NonNullable< + NonNullable< + NonNullable["edges"] + >[number] +>["node"]; + +export async function fetchListingById(listingId: string): Promise { + const variables: ListingByIdQueryVariables = { listingId }; + const res = await executeGraphQL( + LISTING_QUERY, + variables, + ); + return res.uiapi?.query?.Property_Listing__c?.edges?.[0]?.node ?? null; +} + +// ---- Property Detail (single query with all relationships) ---- + +export type PropertyDetailNode = NonNullable< + NonNullable< + NonNullable["edges"] + >[number] +>["node"]; + +export async function fetchPropertyDetailById( + propertyId: string, +): Promise { + const variables: PropertyDetailByIdQueryVariables = { propertyId }; + const res = await executeGraphQL( + PROPERTY_DETAIL_QUERY, + variables, + ); + return res.uiapi?.query?.Property__c?.edges?.[0]?.node ?? null; +} + +/** Fetch Address__c for multiple properties (for map markers). Returns id -> address. */ +export async function fetchPropertyAddresses( + propertyIds: string[], +): Promise> { + const uniq = [...new Set(propertyIds)].filter(Boolean); + if (uniq.length === 0) return {}; + + const res = await executeGraphQL< + PropertyAddressesByIdsQuery, + PropertyAddressesByIdsQueryVariables + >(PROPERTY_ADDRESSES_BY_IDS_QUERY, { propertyIds: uniq }); + const edges = res.uiapi?.query?.Property__c?.edges ?? []; + const entries = edges.map((edge) => { + const n = edge?.node; + if (!n) return null; + const address = + n.Address__c?.value != null + ? String(n.Address__c.value) + : (n.Address__c?.displayValue ?? null); + return address ? ([n.Id, address] as const) : null; + }); + return Object.fromEntries(entries.filter((e): e is readonly [string, string] => e != null)); +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertyNodeUtils.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertyNodeUtils.ts new file mode 100644 index 0000000..16f9c47 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertyNodeUtils.ts @@ -0,0 +1,29 @@ +import type { PropertySearchNode } from "./propertySearchService"; + +const AMENITIES_SEPARATOR = " | "; + +/** Pick the primary (or first available) image URL from the child images. */ +export function extractPrimaryImageUrl(node: PropertySearchNode): string | null { + const images = (node.Property_Images__r?.edges ?? []).flatMap((e) => (e?.node ? [e.node] : [])); + if (images.length === 0) return null; + const primary = + images.find((i) => (i.Image_Type__c?.value ?? "").toLowerCase() === "primary") ?? + images.find((i) => Boolean(i.Image_URL__c?.value)); + return primary?.Image_URL__c?.value ?? null; +} + +/** Join feature descriptions into a single amenities string. */ +export function extractAmenities(node: PropertySearchNode): string { + const features = (node.Property_Features__r?.edges ?? []).flatMap((e) => + e?.node ? [e.node] : [], + ); + return features + .map((f) => f.Description__c?.value) + .filter((d): d is string => d != null && d.trim() !== "") + .join(AMENITIES_SEPARATOR); +} + +/** Extract the address string from a property node. */ +export function extractAddress(node: PropertySearchNode): string | null { + return node.Address__c?.value ?? node.Address__c?.displayValue ?? null; +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertySearchService.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertySearchService.ts new file mode 100644 index 0000000..4016126 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/propertySearchService.ts @@ -0,0 +1,56 @@ +import SEARCH_PROPERTIES_QUERY from "./query/searchProperties.graphql?raw"; +import DISTINCT_STATUS_QUERY from "./query/distinctPropertyStatus.graphql?raw"; +import DISTINCT_TYPE_QUERY from "./query/distinctPropertyType.graphql?raw"; +import { + searchObjects, + fetchDistinctValues, + type ObjectSearchOptions, + type PicklistOption, +} from "../../features/object-search/api/objectSearchService"; +import type { + SearchPropertiesQuery, + SearchPropertiesQueryVariables, + DistinctPropertyStatusQuery, + DistinctPropertyTypeQuery, +} from "../graphql-operations-types"; + +export type PropertySearchResult = NonNullable< + SearchPropertiesQuery["uiapi"]["query"]["Property__c"] +>; + +export type PropertySearchNode = NonNullable< + NonNullable[number]>["node"] +>; + +export type PropertySearchOptions = ObjectSearchOptions< + SearchPropertiesQueryVariables["where"], + SearchPropertiesQueryVariables["orderBy"] +>; + +export type { PicklistOption }; + +export async function searchProperties( + options: PropertySearchOptions = {}, +): Promise { + return searchObjects( + SEARCH_PROPERTIES_QUERY, + "Property__c", + options, + ); +} + +export async function fetchDistinctPropertyStatus(): Promise { + return fetchDistinctValues( + DISTINCT_STATUS_QUERY, + "Property__c", + "Status__c", + ); +} + +export async function fetchDistinctPropertyType(): Promise { + return fetchDistinctValues( + DISTINCT_TYPE_QUERY, + "Property__c", + "Type__c", + ); +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/distinctPropertyStatus.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/distinctPropertyStatus.graphql new file mode 100644 index 0000000..b0546b8 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/distinctPropertyStatus.graphql @@ -0,0 +1,19 @@ +query DistinctPropertyStatus { + uiapi { + aggregate { + Property__c(groupBy: { Status__c: { group: true } }) { + edges { + node { + aggregate { + Status__c { + value + displayValue + label + } + } + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/distinctPropertyType.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/distinctPropertyType.graphql new file mode 100644 index 0000000..d88da6f --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/distinctPropertyType.graphql @@ -0,0 +1,19 @@ +query DistinctPropertyType { + uiapi { + aggregate { + Property__c(groupBy: { Type__c: { group: true } }) { + edges { + node { + aggregate { + Type__c { + value + displayValue + label + } + } + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/listingById.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/listingById.graphql new file mode 100644 index 0000000..5fa7228 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/listingById.graphql @@ -0,0 +1,29 @@ +query ListingById($listingId: ID!) { + uiapi { + query { + Property_Listing__c(where: { Id: { eq: $listingId } }, first: 1) { + edges { + node { + Id + Name @optional { + value + displayValue + } + Listing_Price__c @optional { + value + displayValue + } + Listing_Status__c @optional { + value + displayValue + } + Property__c @optional { + value + displayValue + } + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/propertyAddressesByIds.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/propertyAddressesByIds.graphql new file mode 100644 index 0000000..574d06b --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/propertyAddressesByIds.graphql @@ -0,0 +1,17 @@ +query PropertyAddressesByIds($propertyIds: [ID!]) { + uiapi { + query { + Property__c(where: { Id: { in: $propertyIds } }, first: 2000) { + edges { + node { + Id + Address__c @optional { + value + displayValue + } + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/propertyDetailById.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/propertyDetailById.graphql new file mode 100644 index 0000000..256cb16 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/propertyDetailById.graphql @@ -0,0 +1,124 @@ +query PropertyDetailById($propertyId: ID!) { + uiapi { + query { + Property__c(where: { Id: { eq: $propertyId } }, first: 1) { + edges { + node { + Id + Name @optional { + value + displayValue + } + Address__c @optional { + value + displayValue + } + Coordinates__Latitude__s @optional { + value + } + Coordinates__Longitude__s @optional { + value + } + Type__c @optional { + value + displayValue + } + Monthly_Rent__c @optional { + value + displayValue + } + Bedrooms__c @optional { + value + displayValue + } + Bathrooms__c @optional { + value + displayValue + } + Sq_Ft__c @optional { + value + displayValue + } + Description__c @optional { + value + displayValue + } + Property_Images__r(first: 50, orderBy: { Display_Order__c: { order: ASC } }) { + edges { + node { + Id + Name @optional { + value + } + Image_URL__c @optional { + value + } + Image_Type__c @optional { + value + } + Display_Order__c @optional { + value + } + Alt_Text__c @optional { + value + } + } + } + } + Property_Features__r(first: 100) { + edges { + node { + Id + Name @optional { + value + } + Feature_Category__c @optional { + value + } + Description__c @optional { + value + } + } + } + } + Property_Costs__r(first: 100) { + edges { + node { + Id + Cost_Category__c @optional { + value + } + Cost_Amount__c @optional { + value + } + Cost_Date__c @optional { + value + } + Description__c @optional { + value + } + } + } + } + Property_Listings__r(first: 10) { + edges { + node { + Id + Name @optional { + value + } + Listing_Price__c @optional { + value + } + Listing_Status__c @optional { + value + } + } + } + } + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/searchProperties.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/searchProperties.graphql new file mode 100644 index 0000000..d10a9ba --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/properties/query/searchProperties.graphql @@ -0,0 +1,85 @@ +query SearchProperties( + $first: Int + $after: String + $where: Property__c_Filter + $orderBy: Property__c_OrderBy +) { + uiapi { + query { + Property__c(first: $first, after: $after, where: $where, orderBy: $orderBy) { + edges { + node { + Id + Name { + value + displayValue + } + Address__c { + value + displayValue + } + Status__c { + value + displayValue + } + Type__c { + value + displayValue + } + Monthly_Rent__c { + value + displayValue + } + Bedrooms__c { + value + displayValue + } + Coordinates__Latitude__s { + value + } + Coordinates__Longitude__s { + value + } + CreatedDate { + value + displayValue + } + Property_Images__r(first: 5, orderBy: { Display_Order__c: { order: ASC } }) { + edges { + node { + Id + Image_URL__c { + value + } + Image_Type__c { + value + } + Display_Order__c { + value + } + } + } + } + Property_Features__r(first: 20) { + edges { + node { + Id + Description__c { + value + } + } + } + } + } + } + pageInfo { + hasNextPage + hasPreviousPage + endCursor + startCursor + } + totalCount + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/query/tenantAccess.graphql b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/query/tenantAccess.graphql new file mode 100644 index 0000000..1dea4e3 --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/query/tenantAccess.graphql @@ -0,0 +1,13 @@ +query TenantAccess($userId: ID!) { + uiapi { + query { + Tenant__c(where: { User__c: { eq: $userId } }, first: 1) { + edges { + node { + Id + } + } + } + } + } +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/tenantApi.ts b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/tenantApi.ts new file mode 100644 index 0000000..cf7e71f --- /dev/null +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/api/tenantApi.ts @@ -0,0 +1,12 @@ +import TENANT_ACCESS_QUERY from "./query/tenantAccess.graphql?raw"; +import type { TenantAccessQuery, TenantAccessQueryVariables } from "./graphql-operations-types.js"; +import { executeGraphQL } from "@/api/graphqlClient.js"; + +export async function hasTenantAccess(userId: string): Promise { + if (!userId.trim()) return false; + const response = await executeGraphQL( + TENANT_ACCESS_QUERY, + { userId }, + ); + return Boolean(response.uiapi?.query?.Tenant__c?.edges?.[0]?.node?.Id); +} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/app.tsx b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/app.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/app.tsx rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/app.tsx diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/appLayout.tsx b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/appLayout.tsx similarity index 91% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/appLayout.tsx rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/appLayout.tsx index 3da4d09..7ee142a 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/appLayout.tsx +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/appLayout.tsx @@ -8,7 +8,7 @@ export default function AppLayout() { const [isNavOpen, setIsNavOpen] = useState(false); return ( -
+
setIsNavOpen(true)} /> diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/appliances.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/appliances.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/appliances.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/appliances.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/book.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/book.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/book.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/book.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/copy.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/copy.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/copy.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/copy.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/electrical.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/electrical.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/electrical.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/electrical.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/hvac.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/hvac.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/hvac.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/hvac.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/pest.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/pest.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/pest.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/pest.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/plumbing.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/plumbing.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/plumbing.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/plumbing.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/rocket.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/rocket.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/rocket.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/rocket.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/star.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/star.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/star.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/star.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/zen-logo.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/zen-logo.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/icons/zen-logo.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/icons/zen-logo.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/codey-1.png b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/codey-1.png similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/codey-1.png rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/codey-1.png diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/codey-2.png b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/codey-2.png similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/codey-2.png rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/codey-2.png diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/codey-3.png b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/codey-3.png similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/codey-3.png rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/codey-3.png diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/vibe-codey.svg b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/vibe-codey.svg similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/assets/images/vibe-codey.svg rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/assets/images/vibe-codey.svg diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/SkeletonPrimitives.tsx b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/SkeletonPrimitives.tsx similarity index 53% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/SkeletonPrimitives.tsx rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/SkeletonPrimitives.tsx index 10ac3c3..b99e8e3 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/SkeletonPrimitives.tsx +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/SkeletonPrimitives.tsx @@ -19,13 +19,16 @@ export function SkeletonListRows({ count = 3 }: { count?: number }) { return ( <> {Array.from({ length: count }, (_, i) => ( -
- -
- - +
+ +
+
+ + +
+
- +
))} diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/alerts/status-alert.tsx b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/alerts/status-alert.tsx similarity index 100% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/alerts/status-alert.tsx rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/alerts/status-alert.tsx diff --git a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/dashboard/WeatherWidget.tsx b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/dashboard/WeatherWidget.tsx similarity index 81% rename from samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/dashboard/WeatherWidget.tsx rename to samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/dashboard/WeatherWidget.tsx index bee2ac2..a99bb23 100644 --- a/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/propertyrentalapp/src/components/dashboard/WeatherWidget.tsx +++ b/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/uiBundles/propertyrentalapp/src/components/dashboard/WeatherWidget.tsx @@ -52,40 +52,56 @@ const Divider = () =>
; function WeatherSkeleton() { return ( -