@seamapi/types 1.52.1 → 1.53.1

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.
@@ -197,6 +197,7 @@ export default {
197
197
  description: 'deprecated: use external_type_display_name',
198
198
  type: 'string',
199
199
  },
200
+ workspace_id: { format: 'uuid', type: 'string' },
200
201
  },
201
202
  required: [
202
203
  'acs_system_id',
@@ -206,6 +207,7 @@ export default {
206
207
  'system_type_display_name',
207
208
  'name',
208
209
  'created_at',
210
+ 'workspace_id',
209
211
  'connected_account_ids',
210
212
  ],
211
213
  type: 'object',
@@ -9132,6 +9134,118 @@ export default {
9132
9134
  'x-fern-ignore': true,
9133
9135
  },
9134
9136
  },
9137
+ '/user_identities/list': {
9138
+ get: {
9139
+ operationId: 'userIdentitiesListGet',
9140
+ responses: {
9141
+ 200: {
9142
+ content: {
9143
+ 'application/json': {
9144
+ schema: {
9145
+ properties: {
9146
+ ok: { type: 'boolean' },
9147
+ user_identities: {
9148
+ items: {
9149
+ properties: {
9150
+ created_at: { format: 'date-time', type: 'string' },
9151
+ email_address: {
9152
+ format: 'email',
9153
+ nullable: true,
9154
+ type: 'string',
9155
+ },
9156
+ first_name: { nullable: true, type: 'string' },
9157
+ last_name: { nullable: true, type: 'string' },
9158
+ user_identity_id: { format: 'uuid', type: 'string' },
9159
+ user_identity_key: { nullable: true, type: 'string' },
9160
+ workspace_id: { format: 'uuid', type: 'string' },
9161
+ },
9162
+ required: [
9163
+ 'user_identity_id',
9164
+ 'created_at',
9165
+ 'workspace_id',
9166
+ ],
9167
+ type: 'object',
9168
+ },
9169
+ type: 'array',
9170
+ },
9171
+ },
9172
+ required: ['user_identities', 'ok'],
9173
+ type: 'object',
9174
+ },
9175
+ },
9176
+ },
9177
+ description: 'OK',
9178
+ },
9179
+ 400: { description: 'Bad Request' },
9180
+ 401: { description: 'Unauthorized' },
9181
+ },
9182
+ security: [
9183
+ { api_key: [] },
9184
+ { client_session: [] },
9185
+ { pat_with_workspace: [] },
9186
+ { console_session: [] },
9187
+ ],
9188
+ summary: '/user_identities/list',
9189
+ tags: [],
9190
+ 'x-fern-ignore': true,
9191
+ },
9192
+ post: {
9193
+ operationId: 'userIdentitiesListPost',
9194
+ responses: {
9195
+ 200: {
9196
+ content: {
9197
+ 'application/json': {
9198
+ schema: {
9199
+ properties: {
9200
+ ok: { type: 'boolean' },
9201
+ user_identities: {
9202
+ items: {
9203
+ properties: {
9204
+ created_at: { format: 'date-time', type: 'string' },
9205
+ email_address: {
9206
+ format: 'email',
9207
+ nullable: true,
9208
+ type: 'string',
9209
+ },
9210
+ first_name: { nullable: true, type: 'string' },
9211
+ last_name: { nullable: true, type: 'string' },
9212
+ user_identity_id: { format: 'uuid', type: 'string' },
9213
+ user_identity_key: { nullable: true, type: 'string' },
9214
+ workspace_id: { format: 'uuid', type: 'string' },
9215
+ },
9216
+ required: [
9217
+ 'user_identity_id',
9218
+ 'created_at',
9219
+ 'workspace_id',
9220
+ ],
9221
+ type: 'object',
9222
+ },
9223
+ type: 'array',
9224
+ },
9225
+ },
9226
+ required: ['user_identities', 'ok'],
9227
+ type: 'object',
9228
+ },
9229
+ },
9230
+ },
9231
+ description: 'OK',
9232
+ },
9233
+ 400: { description: 'Bad Request' },
9234
+ 401: { description: 'Unauthorized' },
9235
+ },
9236
+ security: [
9237
+ { api_key: [] },
9238
+ { client_session: [] },
9239
+ { pat_with_workspace: [] },
9240
+ { console_session: [] },
9241
+ ],
9242
+ summary: '/user_identities/list',
9243
+ tags: [],
9244
+ 'x-fern-sdk-group-name': ['user_identities'],
9245
+ 'x-fern-sdk-method-name': 'list',
9246
+ 'x-fern-sdk-return-value': 'user_identities',
9247
+ },
9248
+ },
9135
9249
  '/user_identities/list_accessible_devices': {
9136
9250
  post: {
9137
9251
  operationId: 'userIdentitiesListAccessibleDevicesPost',