@labelbox/recursion-sdk 0.0.173 → 0.0.174

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.
@@ -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;
@@ -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
  },
@@ -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
  },
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.174",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",