Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 29 additions & 19 deletions api/generated/api.bundled.json
Original file line number Diff line number Diff line change
Expand Up @@ -12078,31 +12078,13 @@
}
}
},
"UseSalesforceFlowsConfig": {
"title": "Use Salesforce Flows Config",
"description": "Opt a Salesforce subscribe installation into record-triggered flows and outbound messages instead of Change Data Capture. An installation uses only one subscribe method: if any object sets this to enabled, every object with a subscribe event in that installation must set it too. Delete events are not supported on this path. Defaults to false (CDC). \n",
"type": "object",
"required": [
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether this object uses Salesforce record-triggered flows for subscribe.",
"example": true
}
}
},
"SubscribeProviderOptions": {
"title": "Subscribe Provider Options",
"description": "Subscribe options that only apply to certain providers. Each option documents which providers support it; setting one for a provider that does not support it is rejected.\n",
"description": "Per-object subscribe options that only apply to certain providers. Each option documents which providers support it; setting one for a provider that does not support it is rejected. Options that apply to the whole subscription live on `subscribe.providerOptions` instead.\n",
"type": "object",
"properties": {
"quotaOptimization": {
"$ref": "#/components/schemas/QuotaOptimizationConfig"
},
"useSalesforceFlows": {
"$ref": "#/components/schemas/UseSalesforceFlowsConfig"
}
}
},
Expand Down Expand Up @@ -12150,6 +12132,31 @@
}
}
},
"UseSalesforceFlowsConfig": {
"title": "Use Salesforce Flows Config",
"description": "Opt this installation's Salesforce subscription into record-triggered flows and outbound messages instead of Change Data Capture. Delete events are not supported on this path. Defaults to false (CDC).\n",
"type": "object",
"required": [
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether this installation uses Salesforce record-triggered flows for subscribe.",
"example": true
}
}
},
"SubscribeInstallationProviderOptions": {
"title": "Subscribe Installation Provider Options",
"description": "Subscribe options that apply to the whole installation and only to certain providers. Each option documents which providers support it; setting one for a provider that does not support it is rejected. For options that are set per object, see `subscribe.objects.<name>.providerOptions`.\n",
"type": "object",
"properties": {
"useSalesforceFlows": {
"$ref": "#/components/schemas/UseSalesforceFlowsConfig"
}
}
},
"BaseSubscribeConfig": {
"title": "Base Subscribe Config",
"type": "object",
Expand All @@ -12159,6 +12166,9 @@
"additionalProperties": {
"$ref": "#/components/schemas/BaseSubscribeConfigObject"
}
},
"providerOptions": {
"$ref": "#/components/schemas/SubscribeInstallationProviderOptions"
}
}
},
Expand Down
Loading
Loading