@seamapi/types 1.602.0 → 1.603.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.
- package/dist/connect.cjs +100 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +151 -2
- package/dist/index.cjs +100 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +121 -2
- package/lib/seam/connect/openapi.js +100 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +110 -4
- package/src/lib/seam/connect/route-types.ts +30 -0
|
@@ -52428,6 +52428,10 @@ declare const _default: {
|
|
|
52428
52428
|
description: string;
|
|
52429
52429
|
type: string;
|
|
52430
52430
|
format?: never;
|
|
52431
|
+
default?: never;
|
|
52432
|
+
exclusiveMinimum?: never;
|
|
52433
|
+
minimum?: never;
|
|
52434
|
+
nullable?: never;
|
|
52431
52435
|
};
|
|
52432
52436
|
} | {
|
|
52433
52437
|
in: string;
|
|
@@ -52436,6 +52440,34 @@ declare const _default: {
|
|
|
52436
52440
|
description: string;
|
|
52437
52441
|
format: string;
|
|
52438
52442
|
type: string;
|
|
52443
|
+
default?: never;
|
|
52444
|
+
exclusiveMinimum?: never;
|
|
52445
|
+
minimum?: never;
|
|
52446
|
+
nullable?: never;
|
|
52447
|
+
};
|
|
52448
|
+
} | {
|
|
52449
|
+
in: string;
|
|
52450
|
+
name: string;
|
|
52451
|
+
schema: {
|
|
52452
|
+
default: number;
|
|
52453
|
+
description: string;
|
|
52454
|
+
exclusiveMinimum: boolean;
|
|
52455
|
+
minimum: number;
|
|
52456
|
+
type: string;
|
|
52457
|
+
format?: never;
|
|
52458
|
+
nullable?: never;
|
|
52459
|
+
};
|
|
52460
|
+
} | {
|
|
52461
|
+
in: string;
|
|
52462
|
+
name: string;
|
|
52463
|
+
schema: {
|
|
52464
|
+
description: string;
|
|
52465
|
+
nullable: boolean;
|
|
52466
|
+
type: string;
|
|
52467
|
+
format?: never;
|
|
52468
|
+
default?: never;
|
|
52469
|
+
exclusiveMinimum?: never;
|
|
52470
|
+
minimum?: never;
|
|
52439
52471
|
};
|
|
52440
52472
|
})[];
|
|
52441
52473
|
responses: {
|
|
@@ -52447,6 +52479,9 @@ declare const _default: {
|
|
|
52447
52479
|
ok: {
|
|
52448
52480
|
type: string;
|
|
52449
52481
|
};
|
|
52482
|
+
pagination: {
|
|
52483
|
+
$ref: string;
|
|
52484
|
+
};
|
|
52450
52485
|
user_identities: {
|
|
52451
52486
|
items: {
|
|
52452
52487
|
$ref: string;
|
|
@@ -52505,11 +52540,28 @@ declare const _default: {
|
|
|
52505
52540
|
'application/json': {
|
|
52506
52541
|
schema: {
|
|
52507
52542
|
properties: {
|
|
52543
|
+
created_before: {
|
|
52544
|
+
description: string;
|
|
52545
|
+
format: string;
|
|
52546
|
+
type: string;
|
|
52547
|
+
};
|
|
52508
52548
|
credential_manager_acs_system_id: {
|
|
52509
52549
|
description: string;
|
|
52510
52550
|
format: string;
|
|
52511
52551
|
type: string;
|
|
52512
52552
|
};
|
|
52553
|
+
limit: {
|
|
52554
|
+
default: number;
|
|
52555
|
+
description: string;
|
|
52556
|
+
exclusiveMinimum: boolean;
|
|
52557
|
+
minimum: number;
|
|
52558
|
+
type: string;
|
|
52559
|
+
};
|
|
52560
|
+
page_cursor: {
|
|
52561
|
+
description: string;
|
|
52562
|
+
nullable: boolean;
|
|
52563
|
+
type: string;
|
|
52564
|
+
};
|
|
52513
52565
|
search: {
|
|
52514
52566
|
description: string;
|
|
52515
52567
|
type: string;
|
|
@@ -52529,6 +52581,9 @@ declare const _default: {
|
|
|
52529
52581
|
ok: {
|
|
52530
52582
|
type: string;
|
|
52531
52583
|
};
|
|
52584
|
+
pagination: {
|
|
52585
|
+
$ref: string;
|
|
52586
|
+
};
|
|
52532
52587
|
user_identities: {
|
|
52533
52588
|
items: {
|
|
52534
52589
|
$ref: string;
|
|
@@ -53656,14 +53711,55 @@ declare const _default: {
|
|
|
53656
53711
|
get: {
|
|
53657
53712
|
description: string;
|
|
53658
53713
|
operationId: string;
|
|
53659
|
-
parameters: {
|
|
53714
|
+
parameters: ({
|
|
53660
53715
|
in: string;
|
|
53661
53716
|
name: string;
|
|
53662
53717
|
schema: {
|
|
53663
53718
|
description: string;
|
|
53664
53719
|
type: string;
|
|
53720
|
+
default?: never;
|
|
53721
|
+
exclusiveMinimum?: never;
|
|
53722
|
+
minimum?: never;
|
|
53723
|
+
format?: never;
|
|
53724
|
+
nullable?: never;
|
|
53665
53725
|
};
|
|
53666
|
-
}
|
|
53726
|
+
} | {
|
|
53727
|
+
in: string;
|
|
53728
|
+
name: string;
|
|
53729
|
+
schema: {
|
|
53730
|
+
default: number;
|
|
53731
|
+
description: string;
|
|
53732
|
+
exclusiveMinimum: boolean;
|
|
53733
|
+
minimum: number;
|
|
53734
|
+
type: string;
|
|
53735
|
+
format?: never;
|
|
53736
|
+
nullable?: never;
|
|
53737
|
+
};
|
|
53738
|
+
} | {
|
|
53739
|
+
in: string;
|
|
53740
|
+
name: string;
|
|
53741
|
+
schema: {
|
|
53742
|
+
description: string;
|
|
53743
|
+
format: string;
|
|
53744
|
+
type: string;
|
|
53745
|
+
default?: never;
|
|
53746
|
+
exclusiveMinimum?: never;
|
|
53747
|
+
minimum?: never;
|
|
53748
|
+
nullable?: never;
|
|
53749
|
+
};
|
|
53750
|
+
} | {
|
|
53751
|
+
in: string;
|
|
53752
|
+
name: string;
|
|
53753
|
+
schema: {
|
|
53754
|
+
description: string;
|
|
53755
|
+
nullable: boolean;
|
|
53756
|
+
type: string;
|
|
53757
|
+
default?: never;
|
|
53758
|
+
exclusiveMinimum?: never;
|
|
53759
|
+
minimum?: never;
|
|
53760
|
+
format?: never;
|
|
53761
|
+
};
|
|
53762
|
+
})[];
|
|
53667
53763
|
responses: {
|
|
53668
53764
|
200: {
|
|
53669
53765
|
content: {
|
|
@@ -53673,6 +53769,9 @@ declare const _default: {
|
|
|
53673
53769
|
ok: {
|
|
53674
53770
|
type: string;
|
|
53675
53771
|
};
|
|
53772
|
+
pagination: {
|
|
53773
|
+
$ref: string;
|
|
53774
|
+
};
|
|
53676
53775
|
user_identities: {
|
|
53677
53776
|
items: {
|
|
53678
53777
|
description: string;
|
|
@@ -53852,6 +53951,23 @@ declare const _default: {
|
|
|
53852
53951
|
'application/json': {
|
|
53853
53952
|
schema: {
|
|
53854
53953
|
properties: {
|
|
53954
|
+
created_before: {
|
|
53955
|
+
description: string;
|
|
53956
|
+
format: string;
|
|
53957
|
+
type: string;
|
|
53958
|
+
};
|
|
53959
|
+
limit: {
|
|
53960
|
+
default: number;
|
|
53961
|
+
description: string;
|
|
53962
|
+
exclusiveMinimum: boolean;
|
|
53963
|
+
minimum: number;
|
|
53964
|
+
type: string;
|
|
53965
|
+
};
|
|
53966
|
+
page_cursor: {
|
|
53967
|
+
description: string;
|
|
53968
|
+
nullable: boolean;
|
|
53969
|
+
type: string;
|
|
53970
|
+
};
|
|
53855
53971
|
search: {
|
|
53856
53972
|
description: string;
|
|
53857
53973
|
type: string;
|
|
@@ -53871,6 +53987,9 @@ declare const _default: {
|
|
|
53871
53987
|
ok: {
|
|
53872
53988
|
type: string;
|
|
53873
53989
|
};
|
|
53990
|
+
pagination: {
|
|
53991
|
+
$ref: string;
|
|
53992
|
+
};
|
|
53874
53993
|
user_identities: {
|
|
53875
53994
|
items: {
|
|
53876
53995
|
description: string;
|
|
@@ -55906,6 +55906,35 @@ export default {
|
|
|
55906
55906
|
type: 'string',
|
|
55907
55907
|
},
|
|
55908
55908
|
},
|
|
55909
|
+
{
|
|
55910
|
+
in: 'query',
|
|
55911
|
+
name: 'limit',
|
|
55912
|
+
schema: {
|
|
55913
|
+
default: 500,
|
|
55914
|
+
description: 'Maximum number of records to return per page.',
|
|
55915
|
+
exclusiveMinimum: true,
|
|
55916
|
+
minimum: 0,
|
|
55917
|
+
type: 'integer',
|
|
55918
|
+
},
|
|
55919
|
+
},
|
|
55920
|
+
{
|
|
55921
|
+
in: 'query',
|
|
55922
|
+
name: 'created_before',
|
|
55923
|
+
schema: {
|
|
55924
|
+
description: 'Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.',
|
|
55925
|
+
format: 'date-time',
|
|
55926
|
+
type: 'string',
|
|
55927
|
+
},
|
|
55928
|
+
},
|
|
55929
|
+
{
|
|
55930
|
+
in: 'query',
|
|
55931
|
+
name: 'page_cursor',
|
|
55932
|
+
schema: {
|
|
55933
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
55934
|
+
nullable: true,
|
|
55935
|
+
type: 'string',
|
|
55936
|
+
},
|
|
55937
|
+
},
|
|
55909
55938
|
],
|
|
55910
55939
|
responses: {
|
|
55911
55940
|
200: {
|
|
@@ -55914,12 +55943,13 @@ export default {
|
|
|
55914
55943
|
schema: {
|
|
55915
55944
|
properties: {
|
|
55916
55945
|
ok: { type: 'boolean' },
|
|
55946
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
55917
55947
|
user_identities: {
|
|
55918
55948
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
55919
55949
|
type: 'array',
|
|
55920
55950
|
},
|
|
55921
55951
|
},
|
|
55922
|
-
required: ['user_identities', 'ok'],
|
|
55952
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
55923
55953
|
type: 'object',
|
|
55924
55954
|
},
|
|
55925
55955
|
},
|
|
@@ -55951,11 +55981,28 @@ export default {
|
|
|
55951
55981
|
'application/json': {
|
|
55952
55982
|
schema: {
|
|
55953
55983
|
properties: {
|
|
55984
|
+
created_before: {
|
|
55985
|
+
description: 'Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.',
|
|
55986
|
+
format: 'date-time',
|
|
55987
|
+
type: 'string',
|
|
55988
|
+
},
|
|
55954
55989
|
credential_manager_acs_system_id: {
|
|
55955
55990
|
description: '`acs_system_id` of the credential manager by which you want to filter the list of user identities.',
|
|
55956
55991
|
format: 'uuid',
|
|
55957
55992
|
type: 'string',
|
|
55958
55993
|
},
|
|
55994
|
+
limit: {
|
|
55995
|
+
default: 500,
|
|
55996
|
+
description: 'Maximum number of records to return per page.',
|
|
55997
|
+
exclusiveMinimum: true,
|
|
55998
|
+
minimum: 0,
|
|
55999
|
+
type: 'integer',
|
|
56000
|
+
},
|
|
56001
|
+
page_cursor: {
|
|
56002
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
56003
|
+
nullable: true,
|
|
56004
|
+
type: 'string',
|
|
56005
|
+
},
|
|
55959
56006
|
search: {
|
|
55960
56007
|
description: 'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
55961
56008
|
type: 'string',
|
|
@@ -55973,12 +56020,13 @@ export default {
|
|
|
55973
56020
|
schema: {
|
|
55974
56021
|
properties: {
|
|
55975
56022
|
ok: { type: 'boolean' },
|
|
56023
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
55976
56024
|
user_identities: {
|
|
55977
56025
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
55978
56026
|
type: 'array',
|
|
55979
56027
|
},
|
|
55980
56028
|
},
|
|
55981
|
-
required: ['user_identities', 'ok'],
|
|
56029
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
55982
56030
|
type: 'object',
|
|
55983
56031
|
},
|
|
55984
56032
|
},
|
|
@@ -56998,6 +57046,35 @@ export default {
|
|
|
56998
57046
|
type: 'string',
|
|
56999
57047
|
},
|
|
57000
57048
|
},
|
|
57049
|
+
{
|
|
57050
|
+
in: 'query',
|
|
57051
|
+
name: 'limit',
|
|
57052
|
+
schema: {
|
|
57053
|
+
default: 500,
|
|
57054
|
+
description: 'Maximum number of records to return per page.',
|
|
57055
|
+
exclusiveMinimum: true,
|
|
57056
|
+
minimum: 0,
|
|
57057
|
+
type: 'integer',
|
|
57058
|
+
},
|
|
57059
|
+
},
|
|
57060
|
+
{
|
|
57061
|
+
in: 'query',
|
|
57062
|
+
name: 'created_before',
|
|
57063
|
+
schema: {
|
|
57064
|
+
description: 'Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.',
|
|
57065
|
+
format: 'date-time',
|
|
57066
|
+
type: 'string',
|
|
57067
|
+
},
|
|
57068
|
+
},
|
|
57069
|
+
{
|
|
57070
|
+
in: 'query',
|
|
57071
|
+
name: 'page_cursor',
|
|
57072
|
+
schema: {
|
|
57073
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
57074
|
+
nullable: true,
|
|
57075
|
+
type: 'string',
|
|
57076
|
+
},
|
|
57077
|
+
},
|
|
57001
57078
|
],
|
|
57002
57079
|
responses: {
|
|
57003
57080
|
200: {
|
|
@@ -57006,6 +57083,7 @@ export default {
|
|
|
57006
57083
|
schema: {
|
|
57007
57084
|
properties: {
|
|
57008
57085
|
ok: { type: 'boolean' },
|
|
57086
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
57009
57087
|
user_identities: {
|
|
57010
57088
|
items: {
|
|
57011
57089
|
description: 'Represents an unmanaged user identity. Unmanaged user identities do not have keys.',
|
|
@@ -57176,7 +57254,7 @@ export default {
|
|
|
57176
57254
|
type: 'array',
|
|
57177
57255
|
},
|
|
57178
57256
|
},
|
|
57179
|
-
required: ['user_identities', 'ok'],
|
|
57257
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
57180
57258
|
type: 'object',
|
|
57181
57259
|
},
|
|
57182
57260
|
},
|
|
@@ -57208,6 +57286,23 @@ export default {
|
|
|
57208
57286
|
'application/json': {
|
|
57209
57287
|
schema: {
|
|
57210
57288
|
properties: {
|
|
57289
|
+
created_before: {
|
|
57290
|
+
description: 'Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.',
|
|
57291
|
+
format: 'date-time',
|
|
57292
|
+
type: 'string',
|
|
57293
|
+
},
|
|
57294
|
+
limit: {
|
|
57295
|
+
default: 500,
|
|
57296
|
+
description: 'Maximum number of records to return per page.',
|
|
57297
|
+
exclusiveMinimum: true,
|
|
57298
|
+
minimum: 0,
|
|
57299
|
+
type: 'integer',
|
|
57300
|
+
},
|
|
57301
|
+
page_cursor: {
|
|
57302
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
57303
|
+
nullable: true,
|
|
57304
|
+
type: 'string',
|
|
57305
|
+
},
|
|
57211
57306
|
search: {
|
|
57212
57307
|
description: 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
57213
57308
|
type: 'string',
|
|
@@ -57225,6 +57320,7 @@ export default {
|
|
|
57225
57320
|
schema: {
|
|
57226
57321
|
properties: {
|
|
57227
57322
|
ok: { type: 'boolean' },
|
|
57323
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
57228
57324
|
user_identities: {
|
|
57229
57325
|
items: {
|
|
57230
57326
|
description: 'Represents an unmanaged user identity. Unmanaged user identities do not have keys.',
|
|
@@ -57395,7 +57491,7 @@ export default {
|
|
|
57395
57491
|
type: 'array',
|
|
57396
57492
|
},
|
|
57397
57493
|
},
|
|
57398
|
-
required: ['user_identities', 'ok'],
|
|
57494
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
57399
57495
|
type: 'object',
|
|
57400
57496
|
},
|
|
57401
57497
|
},
|