@labelbox/recursion-sdk 0.0.173 → 0.0.175

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.
@@ -8410,7 +8410,7 @@ export type ManagedAgentsCreateTriggerBindingRequest = {
8410
8410
  */
8411
8411
  vault_ids?: Array<string>;
8412
8412
  /**
8413
- * Slack event selector: app_mention (channel optional) or message (exact channel required).
8413
+ * Slack selector: app_mention (exact channel or internal-only fallback), message (exact channel required), or app_mention_ext_shared (empty channel required; opt-in shared-only fallback). Existing exact app_mention bindings take precedence.
8414
8414
  */
8415
8415
  wake_event?: string;
8416
8416
  };
@@ -9066,7 +9066,7 @@ export type ManagedAgentsInterruptedResponse = {
9066
9066
  temporal_signaled?: boolean;
9067
9067
  };
9068
9068
  /**
9069
- * Exact internal, non-shared Slack trigger binding authorized to use an organization-wide Labelbox product-state credential.
9069
+ * Exact Slack trigger binding authorized to use an organization-wide Labelbox product-state credential, with an explicit internal or Slack Connect classification.
9070
9070
  */
9071
9071
  export type ManagedAgentsLabelboxAudienceRequest = {
9072
9072
  /**
@@ -9074,7 +9074,7 @@ export type ManagedAgentsLabelboxAudienceRequest = {
9074
9074
  */
9075
9075
  binding_id: string;
9076
9076
  /**
9077
- * Exact non-shared Slack channel id used by the binding.
9077
+ * Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.
9078
9078
  */
9079
9079
  channel_id: string;
9080
9080
  /**
@@ -9082,12 +9082,12 @@ export type ManagedAgentsLabelboxAudienceRequest = {
9082
9082
  */
9083
9083
  connection_id: string;
9084
9084
  /**
9085
- * Organization-wide Labelbox access is available only to an exact internal Slack binding.
9085
+ * Organization-wide Labelbox access is available only to one exact binding whose internal or Slack Connect classification is explicit.
9086
9086
  */
9087
- kind: 'internal_slack_binding';
9087
+ kind: 'internal_slack_binding' | 'slack_connect_binding';
9088
9088
  };
9089
9089
  /**
9090
- * Labelbox product-state authorization ceiling. Projects mode permits one exact project set. Organization mode permits organization-wide reads only from one exact internal, non-shared Slack binding. The organization always equals the credential's owner.
9090
+ * Labelbox product-state authorization ceiling. Projects mode permits one exact project set. Organization mode permits organization-wide reads only from one exact Slack binding whose internal or Slack Connect classification is explicit. The organization always equals the credential's owner.
9091
9091
  */
9092
9092
  export type ManagedAgentsLabelboxScopeRequest = {
9093
9093
  audience?: ManagedAgentsLabelboxAudienceRequest;
@@ -9105,7 +9105,7 @@ export type ManagedAgentsLabelboxScopeRequest = {
9105
9105
  project_ids?: Array<string>;
9106
9106
  };
9107
9107
  /**
9108
- * Exact internal, non-shared Slack trigger binding authorized to use an organization-wide Labelbox product-state credential.
9108
+ * Exact Slack trigger binding authorized to use an organization-wide Labelbox product-state credential, with an explicit internal or Slack Connect classification.
9109
9109
  */
9110
9110
  export type ManagedAgentsLabelboxToolsAudience = {
9111
9111
  /**
@@ -9113,7 +9113,7 @@ export type ManagedAgentsLabelboxToolsAudience = {
9113
9113
  */
9114
9114
  binding_id: string;
9115
9115
  /**
9116
- * Exact non-shared Slack channel id used by the binding.
9116
+ * Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.
9117
9117
  */
9118
9118
  channel_id: string;
9119
9119
  /**
@@ -9121,12 +9121,12 @@ export type ManagedAgentsLabelboxToolsAudience = {
9121
9121
  */
9122
9122
  connection_id: string;
9123
9123
  /**
9124
- * Trusted session audience kind. Organization-wide scope currently supports only one exact internal Slack trigger binding.
9124
+ * Trusted session audience kind. internal_slack_binding requires a non-shared channel; slack_connect_binding is an explicit opt-in to one externally shared channel.
9125
9125
  */
9126
- kind: 'internal_slack_binding';
9126
+ kind: 'internal_slack_binding' | 'slack_connect_binding';
9127
9127
  };
9128
9128
  /**
9129
- * Labelbox product-state authorization ceiling. The organization always equals the credential's owner. Projects mode permits one exact project set; organization mode permits organization-wide reads only from one exact internal, non-shared Slack binding.
9129
+ * Labelbox product-state authorization ceiling. The organization always equals the credential's owner. Projects mode permits one exact project set; organization mode permits organization-wide reads only from one exact Slack binding whose internal or Slack Connect classification is explicit.
9130
9130
  */
9131
9131
  export type ManagedAgentsLabelboxToolsScope = {
9132
9132
  audience?: ManagedAgentsLabelboxToolsAudience;
@@ -11726,7 +11726,7 @@ export type ManagedAgentsTriggerBinding = {
11726
11726
  */
11727
11727
  capture_patch?: boolean;
11728
11728
  /**
11729
- * Slack channel this binding is scoped to. Empty matches every channel, which only an app_mention binding may do. Always empty on a GitHub binding.
11729
+ * Slack channel scope. app_mention may be exact or an internal-only fallback; app_mention_ext_shared requires empty scope and is a separate shared-only fallback. Always empty on a GitHub binding.
11730
11730
  */
11731
11731
  channel_id?: string;
11732
11732
  /**
@@ -11770,7 +11770,7 @@ export type ManagedAgentsTriggerBinding = {
11770
11770
  */
11771
11771
  vault_ids?: Array<string>;
11772
11772
  /**
11773
- * Provider event that wakes this binding. Slack values are app_mention and message; retired GitHub values remain readable for migration.
11773
+ * Slack selector: app_mention, message, or app_mention_ext_shared (explicit shared-only fallback with independent vault grants). Exact app_mention bindings take precedence over either fallback. Retired GitHub values remain readable.
11774
11774
  */
11775
11775
  wake_event?: string;
11776
11776
  };
@@ -11903,7 +11903,7 @@ export type ManagedAgentsUpdateTriggerBindingRequest = {
11903
11903
  */
11904
11904
  agent_id?: unknown;
11905
11905
  /**
11906
- * Replacement Slack channel scope. An empty string widens an app_mention binding back to every channel.
11906
+ * Replacement Slack channel scope. Empty makes app_mention an internal-only fallback; app_mention_ext_shared requires empty scope and independently opts into shared channels.
11907
11907
  */
11908
11908
  channel_id?: unknown;
11909
11909
  /**
@@ -47072,13 +47072,13 @@ export const SDK_REFERENCE = {
47072
47072
  in: 'body',
47073
47073
  required: false,
47074
47074
  type: 'ManagedAgentsLabelboxScopeRequest',
47075
- description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact internal Slack audience. Required when credential_type is bearer_token and mcp_server_url is that service; rejected for any other server.',
47075
+ description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact Slack audience with an explicit internal or Slack Connect classification. Required when credential_type is bearer_token and mcp_server_url is that service; rejected for any other server.',
47076
47076
  fields: [
47077
47077
  {
47078
47078
  name: 'audience',
47079
47079
  required: false,
47080
47080
  type: 'ManagedAgentsLabelboxAudienceRequest',
47081
- description: 'Organization mode requires one exact internal Slack binding audience. Forbidden in projects mode.',
47081
+ description: 'Organization mode requires one exact Slack binding audience classified as internal or Slack Connect. Forbidden in projects mode.',
47082
47082
  fields: [
47083
47083
  {
47084
47084
  name: 'binding_id',
@@ -47090,7 +47090,7 @@ export const SDK_REFERENCE = {
47090
47090
  name: 'channel_id',
47091
47091
  required: true,
47092
47092
  type: 'string',
47093
- description: 'Exact non-shared Slack channel id used by the binding.',
47093
+ description: "Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.",
47094
47094
  },
47095
47095
  {
47096
47096
  name: 'connection_id',
@@ -47102,8 +47102,8 @@ export const SDK_REFERENCE = {
47102
47102
  name: 'kind',
47103
47103
  required: true,
47104
47104
  type: 'string',
47105
- description: 'Organization-wide Labelbox access is available only to an exact internal Slack binding.',
47106
- enum: ['internal_slack_binding'],
47105
+ description: 'Organization-wide Labelbox access is available only to one exact binding whose internal or Slack Connect classification is explicit.',
47106
+ enum: ['internal_slack_binding', 'slack_connect_binding'],
47107
47107
  },
47108
47108
  ],
47109
47109
  },
@@ -47237,13 +47237,13 @@ export const SDK_REFERENCE = {
47237
47237
  name: 'labelbox_scope',
47238
47238
  required: false,
47239
47239
  type: 'ManagedAgentsLabelboxToolsScope',
47240
- description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact internal Slack audience. Required for a bearer_token credential whose mcp_server_url is that service; rejected for any other server. Replaced as a whole on update and kept when omitted.',
47240
+ description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact Slack audience with an explicit internal or Slack Connect classification. Required for a bearer_token credential whose mcp_server_url is that service; rejected for any other server. Replaced as a whole on update and kept when omitted.',
47241
47241
  fields: [
47242
47242
  {
47243
47243
  name: 'audience',
47244
47244
  required: false,
47245
47245
  type: 'ManagedAgentsLabelboxToolsAudience',
47246
- description: 'Organization-mode audience: the exact internal, non-shared Slack binding allowed to use this credential. Forbidden in projects mode.',
47246
+ description: 'Organization-mode audience: the exact Slack binding and internal-or-Slack-Connect classification allowed to use this credential. Forbidden in projects mode.',
47247
47247
  fields: [
47248
47248
  {
47249
47249
  name: 'binding_id',
@@ -47255,7 +47255,7 @@ export const SDK_REFERENCE = {
47255
47255
  name: 'channel_id',
47256
47256
  required: true,
47257
47257
  type: 'string',
47258
- description: 'Exact non-shared Slack channel id used by the binding.',
47258
+ description: "Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.",
47259
47259
  },
47260
47260
  {
47261
47261
  name: 'connection_id',
@@ -47267,8 +47267,8 @@ export const SDK_REFERENCE = {
47267
47267
  name: 'kind',
47268
47268
  required: true,
47269
47269
  type: 'string',
47270
- description: 'Trusted session audience kind. Organization-wide scope currently supports only one exact internal Slack trigger binding.',
47271
- enum: ['internal_slack_binding'],
47270
+ description: 'Trusted session audience kind. internal_slack_binding requires a non-shared channel; slack_connect_binding is an explicit opt-in to one externally shared channel.',
47271
+ enum: ['internal_slack_binding', 'slack_connect_binding'],
47272
47272
  },
47273
47273
  ],
47274
47274
  },
@@ -52663,13 +52663,13 @@ export const SDK_REFERENCE = {
52663
52663
  name: 'labelbox_scope',
52664
52664
  required: false,
52665
52665
  type: 'ManagedAgentsLabelboxToolsScope',
52666
- description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact internal Slack audience. Required for a bearer_token credential whose mcp_server_url is that service; rejected for any other server. Replaced as a whole on update and kept when omitted.',
52666
+ description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact Slack audience with an explicit internal or Slack Connect classification. Required for a bearer_token credential whose mcp_server_url is that service; rejected for any other server. Replaced as a whole on update and kept when omitted.',
52667
52667
  fields: [
52668
52668
  {
52669
52669
  name: 'audience',
52670
52670
  required: false,
52671
52671
  type: 'ManagedAgentsLabelboxToolsAudience',
52672
- description: 'Organization-mode audience: the exact internal, non-shared Slack binding allowed to use this credential. Forbidden in projects mode.',
52672
+ description: 'Organization-mode audience: the exact Slack binding and internal-or-Slack-Connect classification allowed to use this credential. Forbidden in projects mode.',
52673
52673
  fields: [
52674
52674
  {
52675
52675
  name: 'binding_id',
@@ -52681,7 +52681,7 @@ export const SDK_REFERENCE = {
52681
52681
  name: 'channel_id',
52682
52682
  required: true,
52683
52683
  type: 'string',
52684
- description: 'Exact non-shared Slack channel id used by the binding.',
52684
+ description: "Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.",
52685
52685
  },
52686
52686
  {
52687
52687
  name: 'connection_id',
@@ -52693,8 +52693,8 @@ export const SDK_REFERENCE = {
52693
52693
  name: 'kind',
52694
52694
  required: true,
52695
52695
  type: 'string',
52696
- description: 'Trusted session audience kind. Organization-wide scope currently supports only one exact internal Slack trigger binding.',
52697
- enum: ['internal_slack_binding'],
52696
+ description: 'Trusted session audience kind. internal_slack_binding requires a non-shared channel; slack_connect_binding is an explicit opt-in to one externally shared channel.',
52697
+ enum: ['internal_slack_binding', 'slack_connect_binding'],
52698
52698
  },
52699
52699
  ],
52700
52700
  },
@@ -57705,7 +57705,7 @@ export const SDK_REFERENCE = {
57705
57705
  in: 'body',
57706
57706
  required: false,
57707
57707
  type: 'unknown',
57708
- description: 'Replacement Slack channel scope. An empty string widens an app_mention binding back to every channel.',
57708
+ description: 'Replacement Slack channel scope. Empty makes app_mention an internal-only fallback; app_mention_ext_shared requires empty scope and independently opts into shared channels.',
57709
57709
  },
57710
57710
  {
57711
57711
  name: 'connection_id',
@@ -57775,7 +57775,7 @@ export const SDK_REFERENCE = {
57775
57775
  name: 'channel_id',
57776
57776
  required: false,
57777
57777
  type: 'string',
57778
- description: 'Slack channel this binding is scoped to. Empty matches every channel, which only an app_mention binding may do. Always empty on a GitHub binding.',
57778
+ description: 'Slack channel scope. app_mention may be exact or an internal-only fallback; app_mention_ext_shared requires empty scope and is a separate shared-only fallback. Always empty on a GitHub binding.',
57779
57779
  },
57780
57780
  {
57781
57781
  name: 'connection_id',
@@ -57842,7 +57842,7 @@ export const SDK_REFERENCE = {
57842
57842
  name: 'wake_event',
57843
57843
  required: false,
57844
57844
  type: 'string',
57845
- description: 'Provider event that wakes this binding. Slack values are app_mention and message; retired GitHub values remain readable for migration.',
57845
+ description: 'Slack selector: app_mention, message, or app_mention_ext_shared (explicit shared-only fallback with independent vault grants). Exact app_mention bindings take precedence over either fallback. Retired GitHub values remain readable.',
57846
57846
  },
57847
57847
  ],
57848
57848
  },
@@ -58025,7 +58025,7 @@ export const SDK_REFERENCE = {
58025
58025
  name: 'audience',
58026
58026
  required: false,
58027
58027
  type: 'ManagedAgentsLabelboxAudienceRequest',
58028
- description: 'Organization mode requires one exact internal Slack binding audience. Forbidden in projects mode.',
58028
+ description: 'Organization mode requires one exact Slack binding audience classified as internal or Slack Connect. Forbidden in projects mode.',
58029
58029
  fields: [
58030
58030
  {
58031
58031
  name: 'binding_id',
@@ -58037,7 +58037,7 @@ export const SDK_REFERENCE = {
58037
58037
  name: 'channel_id',
58038
58038
  required: true,
58039
58039
  type: 'string',
58040
- description: 'Exact non-shared Slack channel id used by the binding.',
58040
+ description: "Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.",
58041
58041
  },
58042
58042
  {
58043
58043
  name: 'connection_id',
@@ -58049,8 +58049,8 @@ export const SDK_REFERENCE = {
58049
58049
  name: 'kind',
58050
58050
  required: true,
58051
58051
  type: 'string',
58052
- description: 'Organization-wide Labelbox access is available only to an exact internal Slack binding.',
58053
- enum: ['internal_slack_binding'],
58052
+ description: 'Organization-wide Labelbox access is available only to one exact binding whose internal or Slack Connect classification is explicit.',
58053
+ enum: ['internal_slack_binding', 'slack_connect_binding'],
58054
58054
  },
58055
58055
  ],
58056
58056
  },
@@ -58177,13 +58177,13 @@ export const SDK_REFERENCE = {
58177
58177
  name: 'labelbox_scope',
58178
58178
  required: false,
58179
58179
  type: 'ManagedAgentsLabelboxToolsScope',
58180
- description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact internal Slack audience. Required for a bearer_token credential whose mcp_server_url is that service; rejected for any other server. Replaced as a whole on update and kept when omitted.',
58180
+ description: 'Labelbox product-state authorization ceiling: either exact projects or organization-wide reads restricted to one exact Slack audience with an explicit internal or Slack Connect classification. Required for a bearer_token credential whose mcp_server_url is that service; rejected for any other server. Replaced as a whole on update and kept when omitted.',
58181
58181
  fields: [
58182
58182
  {
58183
58183
  name: 'audience',
58184
58184
  required: false,
58185
58185
  type: 'ManagedAgentsLabelboxToolsAudience',
58186
- description: 'Organization-mode audience: the exact internal, non-shared Slack binding allowed to use this credential. Forbidden in projects mode.',
58186
+ description: 'Organization-mode audience: the exact Slack binding and internal-or-Slack-Connect classification allowed to use this credential. Forbidden in projects mode.',
58187
58187
  fields: [
58188
58188
  {
58189
58189
  name: 'binding_id',
@@ -58195,7 +58195,7 @@ export const SDK_REFERENCE = {
58195
58195
  name: 'channel_id',
58196
58196
  required: true,
58197
58197
  type: 'string',
58198
- description: 'Exact non-shared Slack channel id used by the binding.',
58198
+ description: "Exact Slack channel id used by the binding. The signed webhook receipt's sharing classification must match kind.",
58199
58199
  },
58200
58200
  {
58201
58201
  name: 'connection_id',
@@ -58207,8 +58207,8 @@ export const SDK_REFERENCE = {
58207
58207
  name: 'kind',
58208
58208
  required: true,
58209
58209
  type: 'string',
58210
- description: 'Trusted session audience kind. Organization-wide scope currently supports only one exact internal Slack trigger binding.',
58211
- enum: ['internal_slack_binding'],
58210
+ description: 'Trusted session audience kind. internal_slack_binding requires a non-shared channel; slack_connect_binding is an explicit opt-in to one externally shared channel.',
58211
+ enum: ['internal_slack_binding', 'slack_connect_binding'],
58212
58212
  },
58213
58213
  ],
58214
58214
  },
@@ -58835,7 +58835,7 @@ export const SDK_REFERENCE = {
58835
58835
  in: 'body',
58836
58836
  required: false,
58837
58837
  type: 'string',
58838
- description: 'Slack event selector: app_mention (channel optional) or message (exact channel required).',
58838
+ description: 'Slack selector: app_mention (exact channel or internal-only fallback), message (exact channel required), or app_mention_ext_shared (empty channel required; opt-in shared-only fallback). Existing exact app_mention bindings take precedence.',
58839
58839
  },
58840
58840
  ],
58841
58841
  response: {
@@ -58870,7 +58870,7 @@ export const SDK_REFERENCE = {
58870
58870
  name: 'channel_id',
58871
58871
  required: false,
58872
58872
  type: 'string',
58873
- description: 'Slack channel this binding is scoped to. Empty matches every channel, which only an app_mention binding may do. Always empty on a GitHub binding.',
58873
+ description: 'Slack channel scope. app_mention may be exact or an internal-only fallback; app_mention_ext_shared requires empty scope and is a separate shared-only fallback. Always empty on a GitHub binding.',
58874
58874
  },
58875
58875
  {
58876
58876
  name: 'connection_id',
@@ -58937,7 +58937,7 @@ export const SDK_REFERENCE = {
58937
58937
  name: 'wake_event',
58938
58938
  required: false,
58939
58939
  type: 'string',
58940
- description: 'Provider event that wakes this binding. Slack values are app_mention and message; retired GitHub values remain readable for migration.',
58940
+ description: 'Slack selector: app_mention, message, or app_mention_ext_shared (explicit shared-only fallback with independent vault grants). Exact app_mention bindings take precedence over either fallback. Retired GitHub values remain readable.',
58941
58941
  },
58942
58942
  ],
58943
58943
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@labelbox/recursion-sdk",
3
- "version": "0.0.173",
3
+ "version": "0.0.175",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",