@seamapi/types 1.40.0 → 1.41.0

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.
@@ -986,6 +986,7 @@ export interface Routes {
986
986
  user_identifier_key?: string | undefined;
987
987
  connect_webview_ids?: string[] | undefined;
988
988
  connected_account_ids?: string[] | undefined;
989
+ user_identity_ids?: string[] | undefined;
989
990
  expires_at?: Date | undefined;
990
991
  };
991
992
  commonParams: {};
@@ -1030,6 +1031,7 @@ export interface Routes {
1030
1031
  device_count: number;
1031
1032
  connected_account_ids: string[];
1032
1033
  connect_webview_ids: string[];
1034
+ user_identity_ids: string[];
1033
1035
  workspace_id: string;
1034
1036
  };
1035
1037
  };
@@ -1042,6 +1044,7 @@ export interface Routes {
1042
1044
  user_identifier_key?: string | undefined;
1043
1045
  connect_webview_ids?: string[] | undefined;
1044
1046
  connected_account_ids?: string[] | undefined;
1047
+ user_identity_ids?: string[] | undefined;
1045
1048
  expires_at?: Date | undefined;
1046
1049
  };
1047
1050
  commonParams: {};
@@ -1066,6 +1069,7 @@ export interface Routes {
1066
1069
  user_identifier_key?: string | undefined;
1067
1070
  connected_account_ids?: string[] | undefined;
1068
1071
  connect_webview_ids?: string[] | undefined;
1072
+ user_identity_ids?: string[] | undefined;
1069
1073
  };
1070
1074
  formData: {};
1071
1075
  jsonResponse: {
@@ -1077,6 +1081,7 @@ export interface Routes {
1077
1081
  device_count: number;
1078
1082
  connected_account_ids: string[];
1079
1083
  connect_webview_ids: string[];
1084
+ user_identity_ids: string[];
1080
1085
  workspace_id: string;
1081
1086
  };
1082
1087
  };
@@ -1101,6 +1106,7 @@ export interface Routes {
1101
1106
  device_count: number;
1102
1107
  connected_account_ids: string[];
1103
1108
  connect_webview_ids: string[];
1109
+ user_identity_ids: string[];
1104
1110
  workspace_id: string;
1105
1111
  }>;
1106
1112
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.40.0",
3
+ "version": "1.41.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -226,6 +226,10 @@ export default {
226
226
  device_count: { type: 'number' },
227
227
  token: { type: 'string' },
228
228
  user_identifier_key: { nullable: true, type: 'string' },
229
+ user_identity_ids: {
230
+ items: { format: 'uuid', type: 'string' },
231
+ type: 'array',
232
+ },
229
233
  workspace_id: { format: 'uuid', type: 'string' },
230
234
  },
231
235
  required: [
@@ -236,6 +240,7 @@ export default {
236
240
  'device_count',
237
241
  'connected_account_ids',
238
242
  'connect_webview_ids',
243
+ 'user_identity_ids',
239
244
  'workspace_id',
240
245
  ],
241
246
  type: 'object',
@@ -4043,6 +4048,10 @@ export default {
4043
4048
  type: 'string',
4044
4049
  },
4045
4050
  user_identifier_key: { minLength: 1, type: 'string' },
4051
+ user_identity_ids: {
4052
+ items: { type: 'string' },
4053
+ type: 'array',
4054
+ },
4046
4055
  },
4047
4056
  type: 'object',
4048
4057
  },
@@ -4097,6 +4106,10 @@ export default {
4097
4106
  type: 'string',
4098
4107
  },
4099
4108
  user_identifier_key: { minLength: 1, type: 'string' },
4109
+ user_identity_ids: {
4110
+ items: { type: 'string' },
4111
+ type: 'array',
4112
+ },
4100
4113
  },
4101
4114
  type: 'object',
4102
4115
  },
@@ -4243,6 +4256,10 @@ export default {
4243
4256
  type: 'string',
4244
4257
  },
4245
4258
  user_identifier_key: { minLength: 1, type: 'string' },
4259
+ user_identity_ids: {
4260
+ items: { type: 'string' },
4261
+ type: 'array',
4262
+ },
4246
4263
  },
4247
4264
  type: 'object',
4248
4265
  },
@@ -4297,6 +4314,10 @@ export default {
4297
4314
  type: 'string',
4298
4315
  },
4299
4316
  user_identifier_key: { minLength: 1, type: 'string' },
4317
+ user_identity_ids: {
4318
+ items: { type: 'string' },
4319
+ type: 'array',
4320
+ },
4300
4321
  },
4301
4322
  type: 'object',
4302
4323
  },
@@ -4347,6 +4368,10 @@ export default {
4347
4368
  type: 'array',
4348
4369
  },
4349
4370
  user_identifier_key: { type: 'string' },
4371
+ user_identity_ids: {
4372
+ items: { type: 'string' },
4373
+ type: 'array',
4374
+ },
4350
4375
  },
4351
4376
  type: 'object',
4352
4377
  },
@@ -4400,6 +4425,10 @@ export default {
4400
4425
  type: 'array',
4401
4426
  },
4402
4427
  user_identifier_key: { type: 'string' },
4428
+ user_identity_ids: {
4429
+ items: { type: 'string' },
4430
+ type: 'array',
4431
+ },
4403
4432
  },
4404
4433
  type: 'object',
4405
4434
  },
@@ -1032,6 +1032,7 @@ export interface Routes {
1032
1032
  user_identifier_key?: string | undefined
1033
1033
  connect_webview_ids?: string[] | undefined
1034
1034
  connected_account_ids?: string[] | undefined
1035
+ user_identity_ids?: string[] | undefined
1035
1036
  expires_at?: Date | undefined
1036
1037
  }
1037
1038
  commonParams: {}
@@ -1076,6 +1077,7 @@ export interface Routes {
1076
1077
  device_count: number
1077
1078
  connected_account_ids: string[]
1078
1079
  connect_webview_ids: string[]
1080
+ user_identity_ids: string[]
1079
1081
  workspace_id: string
1080
1082
  }
1081
1083
  }
@@ -1088,6 +1090,7 @@ export interface Routes {
1088
1090
  user_identifier_key?: string | undefined
1089
1091
  connect_webview_ids?: string[] | undefined
1090
1092
  connected_account_ids?: string[] | undefined
1093
+ user_identity_ids?: string[] | undefined
1091
1094
  expires_at?: Date | undefined
1092
1095
  }
1093
1096
  commonParams: {}
@@ -1112,6 +1115,7 @@ export interface Routes {
1112
1115
  user_identifier_key?: string | undefined
1113
1116
  connected_account_ids?: string[] | undefined
1114
1117
  connect_webview_ids?: string[] | undefined
1118
+ user_identity_ids?: string[] | undefined
1115
1119
  }
1116
1120
  formData: {}
1117
1121
  jsonResponse: {
@@ -1123,6 +1127,7 @@ export interface Routes {
1123
1127
  device_count: number
1124
1128
  connected_account_ids: string[]
1125
1129
  connect_webview_ids: string[]
1130
+ user_identity_ids: string[]
1126
1131
  workspace_id: string
1127
1132
  }
1128
1133
  }
@@ -1147,6 +1152,7 @@ export interface Routes {
1147
1152
  device_count: number
1148
1153
  connected_account_ids: string[]
1149
1154
  connect_webview_ids: string[]
1155
+ user_identity_ids: string[]
1150
1156
  workspace_id: string
1151
1157
  }>
1152
1158
  }