@celigo/api-specs 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connection.yml +6 -1
- package/dist/tool.yml +6 -1
- package/package.json +1 -1
- package/schemas.json +2 -2
package/dist/connection.yml
CHANGED
|
@@ -2827,13 +2827,18 @@ components:
|
|
|
2827
2827
|
description: |-
|
|
2828
2828
|
OAuth scopes requested during authorization. Scope values are defined by Salesforce — `full`
|
|
2829
2829
|
grants complete API access and `refresh_token` enables long-lived refresh tokens. Defaults
|
|
2830
|
-
to `full` and `refresh_token` when omitted.
|
|
2830
|
+
to `full` and `refresh_token` when omitted. A saved empty array is the normal stored state:
|
|
2831
|
+
the connection form does not expose this field, and every save from the connection editor
|
|
2832
|
+
resets values written through the API.
|
|
2831
2833
|
default:
|
|
2832
2834
|
- full
|
|
2833
2835
|
- refresh_token
|
|
2834
2836
|
examples:
|
|
2835
2837
|
- - full
|
|
2836
2838
|
- refresh_token
|
|
2839
|
+
x-celigo-ai-guidance:
|
|
2840
|
+
- 'Never set or repair this field to fix an authentication failure: an empty or absent list is the normal stored state, and UI saves reset API-written values.'
|
|
2841
|
+
- For a custom Connected App (`salesforce._iClientId` set), requested scopes are configured on the iClient's `oauth2.scope` and constrained by the Connected App inside Salesforce — not on the connection.
|
|
2837
2842
|
concurrencyLevel:
|
|
2838
2843
|
type: number
|
|
2839
2844
|
description: |-
|
package/dist/tool.yml
CHANGED
|
@@ -5265,13 +5265,18 @@ components:
|
|
|
5265
5265
|
description: |-
|
|
5266
5266
|
OAuth scopes requested during authorization. Scope values are defined by Salesforce — `full`
|
|
5267
5267
|
grants complete API access and `refresh_token` enables long-lived refresh tokens. Defaults
|
|
5268
|
-
to `full` and `refresh_token` when omitted.
|
|
5268
|
+
to `full` and `refresh_token` when omitted. A saved empty array is the normal stored state:
|
|
5269
|
+
the connection form does not expose this field, and every save from the connection editor
|
|
5270
|
+
resets values written through the API.
|
|
5269
5271
|
default:
|
|
5270
5272
|
- full
|
|
5271
5273
|
- refresh_token
|
|
5272
5274
|
examples:
|
|
5273
5275
|
- - full
|
|
5274
5276
|
- refresh_token
|
|
5277
|
+
x-celigo-ai-guidance:
|
|
5278
|
+
- 'Never set or repair this field to fix an authentication failure: an empty or absent list is the normal stored state, and UI saves reset API-written values.'
|
|
5279
|
+
- For a custom Connected App (`salesforce._iClientId` set), requested scopes are configured on the iClient's `oauth2.scope` and constrained by the Connected App inside Salesforce — not on the connection.
|
|
5275
5280
|
concurrencyLevel:
|
|
5276
5281
|
type: number
|
|
5277
5282
|
description: |-
|
package/package.json
CHANGED