@seamapi/types 1.365.0 → 1.366.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.
Files changed (28) hide show
  1. package/dist/connect.cjs +370 -2
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1304 -14
  4. package/lib/seam/connect/models/acs/{acs-user.d.ts → acs-users/acs-user.d.ts} +540 -18
  5. package/lib/seam/connect/models/acs/{acs-user.js → acs-users/acs-user.js} +9 -2
  6. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -0
  7. package/lib/seam/connect/models/acs/acs-users/index.d.ts +2 -0
  8. package/lib/seam/connect/models/acs/acs-users/index.js +3 -0
  9. package/lib/seam/connect/models/acs/acs-users/index.js.map +1 -0
  10. package/lib/seam/connect/models/acs/acs-users/pending-modifications.d.ts +176 -0
  11. package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +42 -0
  12. package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +1 -0
  13. package/lib/seam/connect/models/acs/index.d.ts +1 -1
  14. package/lib/seam/connect/models/acs/index.js +1 -1
  15. package/lib/seam/connect/models/acs/index.js.map +1 -1
  16. package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
  17. package/lib/seam/connect/openapi.d.ts +432 -0
  18. package/lib/seam/connect/openapi.js +320 -0
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +336 -0
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/acs/{acs-user.ts → acs-users/acs-user.ts} +9 -2
  23. package/src/lib/seam/connect/models/acs/acs-users/index.ts +2 -0
  24. package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +56 -0
  25. package/src/lib/seam/connect/models/acs/index.ts +1 -1
  26. package/src/lib/seam/connect/openapi.ts +328 -0
  27. package/src/lib/seam/connect/route-types.ts +385 -0
  28. package/lib/seam/connect/models/acs/acs-user.js.map +0 -1
@@ -1179,6 +1179,222 @@ declare const _default: {
1179
1179
  type: string;
1180
1180
  'x-undocumented': string;
1181
1181
  };
1182
+ pending_modifications: {
1183
+ items: {
1184
+ discriminator: {
1185
+ propertyName: string;
1186
+ };
1187
+ oneOf: ({
1188
+ properties: {
1189
+ created_at: {
1190
+ format: string;
1191
+ type: string;
1192
+ };
1193
+ modification_code: {
1194
+ enum: string[];
1195
+ type: string;
1196
+ };
1197
+ modified_from: {
1198
+ properties: {
1199
+ email_address: {
1200
+ format: string;
1201
+ nullable: boolean;
1202
+ type: string;
1203
+ };
1204
+ full_name: {
1205
+ nullable: boolean;
1206
+ type: string;
1207
+ };
1208
+ phone_number: {
1209
+ nullable: boolean;
1210
+ type: string;
1211
+ };
1212
+ ends_at?: never;
1213
+ starts_at?: never;
1214
+ is_suspended?: never;
1215
+ acs_access_group_id?: never;
1216
+ };
1217
+ type: string;
1218
+ required?: never;
1219
+ };
1220
+ modified_to: {
1221
+ properties: {
1222
+ email_address: {
1223
+ format: string;
1224
+ nullable: boolean;
1225
+ type: string;
1226
+ };
1227
+ full_name: {
1228
+ nullable: boolean;
1229
+ type: string;
1230
+ };
1231
+ phone_number: {
1232
+ nullable: boolean;
1233
+ type: string;
1234
+ };
1235
+ ends_at?: never;
1236
+ starts_at?: never;
1237
+ is_suspended?: never;
1238
+ acs_access_group_id?: never;
1239
+ };
1240
+ type: string;
1241
+ required?: never;
1242
+ };
1243
+ };
1244
+ required: string[];
1245
+ type: string;
1246
+ } | {
1247
+ properties: {
1248
+ created_at: {
1249
+ format: string;
1250
+ type: string;
1251
+ };
1252
+ modification_code: {
1253
+ enum: string[];
1254
+ type: string;
1255
+ };
1256
+ modified_from: {
1257
+ properties: {
1258
+ ends_at: {
1259
+ description: string;
1260
+ format: string;
1261
+ nullable: boolean;
1262
+ type: string;
1263
+ };
1264
+ starts_at: {
1265
+ description: string;
1266
+ format: string;
1267
+ type: string;
1268
+ };
1269
+ email_address?: never;
1270
+ full_name?: never;
1271
+ phone_number?: never;
1272
+ is_suspended?: never;
1273
+ acs_access_group_id?: never;
1274
+ };
1275
+ required: string[];
1276
+ type: string;
1277
+ };
1278
+ modified_to: {
1279
+ properties: {
1280
+ ends_at: {
1281
+ description: string;
1282
+ format: string;
1283
+ nullable: boolean;
1284
+ type: string;
1285
+ };
1286
+ starts_at: {
1287
+ description: string;
1288
+ format: string;
1289
+ type: string;
1290
+ };
1291
+ email_address?: never;
1292
+ full_name?: never;
1293
+ phone_number?: never;
1294
+ is_suspended?: never;
1295
+ acs_access_group_id?: never;
1296
+ };
1297
+ required: string[];
1298
+ type: string;
1299
+ };
1300
+ };
1301
+ required: string[];
1302
+ type: string;
1303
+ } | {
1304
+ properties: {
1305
+ created_at: {
1306
+ format: string;
1307
+ type: string;
1308
+ };
1309
+ modification_code: {
1310
+ enum: string[];
1311
+ type: string;
1312
+ };
1313
+ modified_from: {
1314
+ properties: {
1315
+ is_suspended: {
1316
+ type: string;
1317
+ };
1318
+ email_address?: never;
1319
+ full_name?: never;
1320
+ phone_number?: never;
1321
+ ends_at?: never;
1322
+ starts_at?: never;
1323
+ acs_access_group_id?: never;
1324
+ };
1325
+ required: string[];
1326
+ type: string;
1327
+ };
1328
+ modified_to: {
1329
+ properties: {
1330
+ is_suspended: {
1331
+ type: string;
1332
+ };
1333
+ email_address?: never;
1334
+ full_name?: never;
1335
+ phone_number?: never;
1336
+ ends_at?: never;
1337
+ starts_at?: never;
1338
+ acs_access_group_id?: never;
1339
+ };
1340
+ required: string[];
1341
+ type: string;
1342
+ };
1343
+ };
1344
+ required: string[];
1345
+ type: string;
1346
+ } | {
1347
+ properties: {
1348
+ created_at: {
1349
+ format: string;
1350
+ type: string;
1351
+ };
1352
+ modification_code: {
1353
+ enum: string[];
1354
+ type: string;
1355
+ };
1356
+ modified_from: {
1357
+ properties: {
1358
+ acs_access_group_id: {
1359
+ format: string;
1360
+ nullable: boolean;
1361
+ type: string;
1362
+ };
1363
+ email_address?: never;
1364
+ full_name?: never;
1365
+ phone_number?: never;
1366
+ ends_at?: never;
1367
+ starts_at?: never;
1368
+ is_suspended?: never;
1369
+ };
1370
+ required: string[];
1371
+ type: string;
1372
+ };
1373
+ modified_to: {
1374
+ properties: {
1375
+ acs_access_group_id: {
1376
+ format: string;
1377
+ nullable: boolean;
1378
+ type: string;
1379
+ };
1380
+ email_address?: never;
1381
+ full_name?: never;
1382
+ phone_number?: never;
1383
+ ends_at?: never;
1384
+ starts_at?: never;
1385
+ is_suspended?: never;
1386
+ };
1387
+ required: string[];
1388
+ type: string;
1389
+ };
1390
+ };
1391
+ required: string[];
1392
+ type: string;
1393
+ })[];
1394
+ };
1395
+ type: string;
1396
+ 'x-undocumented': string;
1397
+ };
1182
1398
  phone_number: {
1183
1399
  description: string;
1184
1400
  type: string;
@@ -8081,6 +8297,222 @@ declare const _default: {
8081
8297
  type: string;
8082
8298
  'x-undocumented': string;
8083
8299
  };
8300
+ pending_modifications: {
8301
+ items: {
8302
+ discriminator: {
8303
+ propertyName: string;
8304
+ };
8305
+ oneOf: ({
8306
+ properties: {
8307
+ created_at: {
8308
+ format: string;
8309
+ type: string;
8310
+ };
8311
+ modification_code: {
8312
+ enum: string[];
8313
+ type: string;
8314
+ };
8315
+ modified_from: {
8316
+ properties: {
8317
+ email_address: {
8318
+ format: string;
8319
+ nullable: boolean;
8320
+ type: string;
8321
+ };
8322
+ full_name: {
8323
+ nullable: boolean;
8324
+ type: string;
8325
+ };
8326
+ phone_number: {
8327
+ nullable: boolean;
8328
+ type: string;
8329
+ };
8330
+ ends_at?: never;
8331
+ starts_at?: never;
8332
+ is_suspended?: never;
8333
+ acs_access_group_id?: never;
8334
+ };
8335
+ type: string;
8336
+ required?: never;
8337
+ };
8338
+ modified_to: {
8339
+ properties: {
8340
+ email_address: {
8341
+ format: string;
8342
+ nullable: boolean;
8343
+ type: string;
8344
+ };
8345
+ full_name: {
8346
+ nullable: boolean;
8347
+ type: string;
8348
+ };
8349
+ phone_number: {
8350
+ nullable: boolean;
8351
+ type: string;
8352
+ };
8353
+ ends_at?: never;
8354
+ starts_at?: never;
8355
+ is_suspended?: never;
8356
+ acs_access_group_id?: never;
8357
+ };
8358
+ type: string;
8359
+ required?: never;
8360
+ };
8361
+ };
8362
+ required: string[];
8363
+ type: string;
8364
+ } | {
8365
+ properties: {
8366
+ created_at: {
8367
+ format: string;
8368
+ type: string;
8369
+ };
8370
+ modification_code: {
8371
+ enum: string[];
8372
+ type: string;
8373
+ };
8374
+ modified_from: {
8375
+ properties: {
8376
+ ends_at: {
8377
+ description: string;
8378
+ format: string;
8379
+ nullable: boolean;
8380
+ type: string;
8381
+ };
8382
+ starts_at: {
8383
+ description: string;
8384
+ format: string;
8385
+ type: string;
8386
+ };
8387
+ email_address?: never;
8388
+ full_name?: never;
8389
+ phone_number?: never;
8390
+ is_suspended?: never;
8391
+ acs_access_group_id?: never;
8392
+ };
8393
+ required: string[];
8394
+ type: string;
8395
+ };
8396
+ modified_to: {
8397
+ properties: {
8398
+ ends_at: {
8399
+ description: string;
8400
+ format: string;
8401
+ nullable: boolean;
8402
+ type: string;
8403
+ };
8404
+ starts_at: {
8405
+ description: string;
8406
+ format: string;
8407
+ type: string;
8408
+ };
8409
+ email_address?: never;
8410
+ full_name?: never;
8411
+ phone_number?: never;
8412
+ is_suspended?: never;
8413
+ acs_access_group_id?: never;
8414
+ };
8415
+ required: string[];
8416
+ type: string;
8417
+ };
8418
+ };
8419
+ required: string[];
8420
+ type: string;
8421
+ } | {
8422
+ properties: {
8423
+ created_at: {
8424
+ format: string;
8425
+ type: string;
8426
+ };
8427
+ modification_code: {
8428
+ enum: string[];
8429
+ type: string;
8430
+ };
8431
+ modified_from: {
8432
+ properties: {
8433
+ is_suspended: {
8434
+ type: string;
8435
+ };
8436
+ email_address?: never;
8437
+ full_name?: never;
8438
+ phone_number?: never;
8439
+ ends_at?: never;
8440
+ starts_at?: never;
8441
+ acs_access_group_id?: never;
8442
+ };
8443
+ required: string[];
8444
+ type: string;
8445
+ };
8446
+ modified_to: {
8447
+ properties: {
8448
+ is_suspended: {
8449
+ type: string;
8450
+ };
8451
+ email_address?: never;
8452
+ full_name?: never;
8453
+ phone_number?: never;
8454
+ ends_at?: never;
8455
+ starts_at?: never;
8456
+ acs_access_group_id?: never;
8457
+ };
8458
+ required: string[];
8459
+ type: string;
8460
+ };
8461
+ };
8462
+ required: string[];
8463
+ type: string;
8464
+ } | {
8465
+ properties: {
8466
+ created_at: {
8467
+ format: string;
8468
+ type: string;
8469
+ };
8470
+ modification_code: {
8471
+ enum: string[];
8472
+ type: string;
8473
+ };
8474
+ modified_from: {
8475
+ properties: {
8476
+ acs_access_group_id: {
8477
+ format: string;
8478
+ nullable: boolean;
8479
+ type: string;
8480
+ };
8481
+ email_address?: never;
8482
+ full_name?: never;
8483
+ phone_number?: never;
8484
+ ends_at?: never;
8485
+ starts_at?: never;
8486
+ is_suspended?: never;
8487
+ };
8488
+ required: string[];
8489
+ type: string;
8490
+ };
8491
+ modified_to: {
8492
+ properties: {
8493
+ acs_access_group_id: {
8494
+ format: string;
8495
+ nullable: boolean;
8496
+ type: string;
8497
+ };
8498
+ email_address?: never;
8499
+ full_name?: never;
8500
+ phone_number?: never;
8501
+ ends_at?: never;
8502
+ starts_at?: never;
8503
+ is_suspended?: never;
8504
+ };
8505
+ required: string[];
8506
+ type: string;
8507
+ };
8508
+ };
8509
+ required: string[];
8510
+ type: string;
8511
+ })[];
8512
+ };
8513
+ type: string;
8514
+ 'x-undocumented': string;
8515
+ };
8084
8516
  phone_number: {
8085
8517
  description: string;
8086
8518
  type: string;