@seamapi/types 1.602.0 → 1.604.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 +125 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +201 -2
- package/dist/index.cjs +125 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +15 -0
- package/lib/seam/connect/openapi.d.ts +145 -2
- package/lib/seam/connect/openapi.js +124 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +136 -4
- package/src/lib/seam/connect/route-types.ts +48 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3548,6 +3548,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3548
3548
|
workspace_id: z.ZodString;
|
|
3549
3549
|
access_grant_id: z.ZodString;
|
|
3550
3550
|
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
3551
|
+
reservation_key: z.ZodOptional<z.ZodString>;
|
|
3551
3552
|
user_identity_id: z.ZodString;
|
|
3552
3553
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
3553
3554
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3618,6 +3619,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3618
3619
|
}[];
|
|
3619
3620
|
access_method_ids: string[];
|
|
3620
3621
|
access_grant_key?: string | undefined;
|
|
3622
|
+
reservation_key?: string | undefined;
|
|
3621
3623
|
client_session_token?: string | undefined;
|
|
3622
3624
|
instant_key_url?: string | undefined;
|
|
3623
3625
|
customization_profile_id?: string | undefined;
|
|
@@ -3646,6 +3648,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3646
3648
|
}[];
|
|
3647
3649
|
access_method_ids: string[];
|
|
3648
3650
|
access_grant_key?: string | undefined;
|
|
3651
|
+
reservation_key?: string | undefined;
|
|
3649
3652
|
client_session_token?: string | undefined;
|
|
3650
3653
|
instant_key_url?: string | undefined;
|
|
3651
3654
|
customization_profile_id?: string | undefined;
|
|
@@ -24698,6 +24701,7 @@ declare const batch: z.ZodObject<{
|
|
|
24698
24701
|
workspace_id: z.ZodString;
|
|
24699
24702
|
access_grant_id: z.ZodString;
|
|
24700
24703
|
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
24704
|
+
reservation_key: z.ZodOptional<z.ZodString>;
|
|
24701
24705
|
user_identity_id: z.ZodString;
|
|
24702
24706
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
24703
24707
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -24768,6 +24772,7 @@ declare const batch: z.ZodObject<{
|
|
|
24768
24772
|
}[];
|
|
24769
24773
|
access_method_ids: string[];
|
|
24770
24774
|
access_grant_key?: string | undefined;
|
|
24775
|
+
reservation_key?: string | undefined;
|
|
24771
24776
|
client_session_token?: string | undefined;
|
|
24772
24777
|
instant_key_url?: string | undefined;
|
|
24773
24778
|
customization_profile_id?: string | undefined;
|
|
@@ -24796,6 +24801,7 @@ declare const batch: z.ZodObject<{
|
|
|
24796
24801
|
}[];
|
|
24797
24802
|
access_method_ids: string[];
|
|
24798
24803
|
access_grant_key?: string | undefined;
|
|
24804
|
+
reservation_key?: string | undefined;
|
|
24799
24805
|
client_session_token?: string | undefined;
|
|
24800
24806
|
instant_key_url?: string | undefined;
|
|
24801
24807
|
customization_profile_id?: string | undefined;
|
|
@@ -31822,6 +31828,7 @@ declare const batch: z.ZodObject<{
|
|
|
31822
31828
|
}[];
|
|
31823
31829
|
access_method_ids: string[];
|
|
31824
31830
|
access_grant_key?: string | undefined;
|
|
31831
|
+
reservation_key?: string | undefined;
|
|
31825
31832
|
client_session_token?: string | undefined;
|
|
31826
31833
|
instant_key_url?: string | undefined;
|
|
31827
31834
|
customization_profile_id?: string | undefined;
|
|
@@ -35731,6 +35738,7 @@ declare const batch: z.ZodObject<{
|
|
|
35731
35738
|
}[];
|
|
35732
35739
|
access_method_ids: string[];
|
|
35733
35740
|
access_grant_key?: string | undefined;
|
|
35741
|
+
reservation_key?: string | undefined;
|
|
35734
35742
|
client_session_token?: string | undefined;
|
|
35735
35743
|
instant_key_url?: string | undefined;
|
|
35736
35744
|
customization_profile_id?: string | undefined;
|
|
@@ -51967,6 +51975,10 @@ declare const _default: {
|
|
|
51967
51975
|
};
|
|
51968
51976
|
type: string;
|
|
51969
51977
|
};
|
|
51978
|
+
reservation_key: {
|
|
51979
|
+
description: string;
|
|
51980
|
+
type: string;
|
|
51981
|
+
};
|
|
51970
51982
|
space_ids: {
|
|
51971
51983
|
description: string;
|
|
51972
51984
|
items: {
|
|
@@ -69140,6 +69152,10 @@ declare const _default: {
|
|
|
69140
69152
|
};
|
|
69141
69153
|
type: string;
|
|
69142
69154
|
};
|
|
69155
|
+
reservation_key: {
|
|
69156
|
+
description: string;
|
|
69157
|
+
type: string;
|
|
69158
|
+
};
|
|
69143
69159
|
space_ids: {
|
|
69144
69160
|
description: string;
|
|
69145
69161
|
items: {
|
|
@@ -70196,6 +70212,10 @@ declare const _default: {
|
|
|
70196
70212
|
};
|
|
70197
70213
|
type: string;
|
|
70198
70214
|
};
|
|
70215
|
+
reservation_key: {
|
|
70216
|
+
description: string;
|
|
70217
|
+
type: string;
|
|
70218
|
+
};
|
|
70199
70219
|
space_ids: {
|
|
70200
70220
|
description: string;
|
|
70201
70221
|
items: {
|
|
@@ -70414,6 +70434,10 @@ declare const _default: {
|
|
|
70414
70434
|
};
|
|
70415
70435
|
type: string;
|
|
70416
70436
|
};
|
|
70437
|
+
reservation_key: {
|
|
70438
|
+
description: string;
|
|
70439
|
+
type: string;
|
|
70440
|
+
};
|
|
70417
70441
|
space_ids: {
|
|
70418
70442
|
description: string;
|
|
70419
70443
|
items: {
|
|
@@ -70627,6 +70651,10 @@ declare const _default: {
|
|
|
70627
70651
|
};
|
|
70628
70652
|
type: string;
|
|
70629
70653
|
};
|
|
70654
|
+
reservation_key: {
|
|
70655
|
+
description: string;
|
|
70656
|
+
type: string;
|
|
70657
|
+
};
|
|
70630
70658
|
space_ids: {
|
|
70631
70659
|
description: string;
|
|
70632
70660
|
items: {
|
|
@@ -70857,6 +70885,10 @@ declare const _default: {
|
|
|
70857
70885
|
};
|
|
70858
70886
|
type: string;
|
|
70859
70887
|
};
|
|
70888
|
+
reservation_key: {
|
|
70889
|
+
description: string;
|
|
70890
|
+
type: string;
|
|
70891
|
+
};
|
|
70860
70892
|
space_ids: {
|
|
70861
70893
|
description: string;
|
|
70862
70894
|
items: {
|
|
@@ -103916,6 +103948,10 @@ declare const _default: {
|
|
|
103916
103948
|
description: string;
|
|
103917
103949
|
type: string;
|
|
103918
103950
|
format?: never;
|
|
103951
|
+
default?: never;
|
|
103952
|
+
exclusiveMinimum?: never;
|
|
103953
|
+
minimum?: never;
|
|
103954
|
+
nullable?: never;
|
|
103919
103955
|
};
|
|
103920
103956
|
} | {
|
|
103921
103957
|
in: string;
|
|
@@ -103924,6 +103960,34 @@ declare const _default: {
|
|
|
103924
103960
|
description: string;
|
|
103925
103961
|
format: string;
|
|
103926
103962
|
type: string;
|
|
103963
|
+
default?: never;
|
|
103964
|
+
exclusiveMinimum?: never;
|
|
103965
|
+
minimum?: never;
|
|
103966
|
+
nullable?: never;
|
|
103967
|
+
};
|
|
103968
|
+
} | {
|
|
103969
|
+
in: string;
|
|
103970
|
+
name: string;
|
|
103971
|
+
schema: {
|
|
103972
|
+
default: number;
|
|
103973
|
+
description: string;
|
|
103974
|
+
exclusiveMinimum: boolean;
|
|
103975
|
+
minimum: number;
|
|
103976
|
+
type: string;
|
|
103977
|
+
format?: never;
|
|
103978
|
+
nullable?: never;
|
|
103979
|
+
};
|
|
103980
|
+
} | {
|
|
103981
|
+
in: string;
|
|
103982
|
+
name: string;
|
|
103983
|
+
schema: {
|
|
103984
|
+
description: string;
|
|
103985
|
+
nullable: boolean;
|
|
103986
|
+
type: string;
|
|
103987
|
+
format?: never;
|
|
103988
|
+
default?: never;
|
|
103989
|
+
exclusiveMinimum?: never;
|
|
103990
|
+
minimum?: never;
|
|
103927
103991
|
};
|
|
103928
103992
|
})[];
|
|
103929
103993
|
responses: {
|
|
@@ -103935,6 +103999,9 @@ declare const _default: {
|
|
|
103935
103999
|
ok: {
|
|
103936
104000
|
type: string;
|
|
103937
104001
|
};
|
|
104002
|
+
pagination: {
|
|
104003
|
+
$ref: string;
|
|
104004
|
+
};
|
|
103938
104005
|
user_identities: {
|
|
103939
104006
|
items: {
|
|
103940
104007
|
$ref: string;
|
|
@@ -103993,11 +104060,28 @@ declare const _default: {
|
|
|
103993
104060
|
'application/json': {
|
|
103994
104061
|
schema: {
|
|
103995
104062
|
properties: {
|
|
104063
|
+
created_before: {
|
|
104064
|
+
description: string;
|
|
104065
|
+
format: string;
|
|
104066
|
+
type: string;
|
|
104067
|
+
};
|
|
103996
104068
|
credential_manager_acs_system_id: {
|
|
103997
104069
|
description: string;
|
|
103998
104070
|
format: string;
|
|
103999
104071
|
type: string;
|
|
104000
104072
|
};
|
|
104073
|
+
limit: {
|
|
104074
|
+
default: number;
|
|
104075
|
+
description: string;
|
|
104076
|
+
exclusiveMinimum: boolean;
|
|
104077
|
+
minimum: number;
|
|
104078
|
+
type: string;
|
|
104079
|
+
};
|
|
104080
|
+
page_cursor: {
|
|
104081
|
+
description: string;
|
|
104082
|
+
nullable: boolean;
|
|
104083
|
+
type: string;
|
|
104084
|
+
};
|
|
104001
104085
|
search: {
|
|
104002
104086
|
description: string;
|
|
104003
104087
|
type: string;
|
|
@@ -104017,6 +104101,9 @@ declare const _default: {
|
|
|
104017
104101
|
ok: {
|
|
104018
104102
|
type: string;
|
|
104019
104103
|
};
|
|
104104
|
+
pagination: {
|
|
104105
|
+
$ref: string;
|
|
104106
|
+
};
|
|
104020
104107
|
user_identities: {
|
|
104021
104108
|
items: {
|
|
104022
104109
|
$ref: string;
|
|
@@ -105144,14 +105231,55 @@ declare const _default: {
|
|
|
105144
105231
|
get: {
|
|
105145
105232
|
description: string;
|
|
105146
105233
|
operationId: string;
|
|
105147
|
-
parameters: {
|
|
105234
|
+
parameters: ({
|
|
105148
105235
|
in: string;
|
|
105149
105236
|
name: string;
|
|
105150
105237
|
schema: {
|
|
105151
105238
|
description: string;
|
|
105152
105239
|
type: string;
|
|
105240
|
+
default?: never;
|
|
105241
|
+
exclusiveMinimum?: never;
|
|
105242
|
+
minimum?: never;
|
|
105243
|
+
format?: never;
|
|
105244
|
+
nullable?: never;
|
|
105153
105245
|
};
|
|
105154
|
-
}
|
|
105246
|
+
} | {
|
|
105247
|
+
in: string;
|
|
105248
|
+
name: string;
|
|
105249
|
+
schema: {
|
|
105250
|
+
default: number;
|
|
105251
|
+
description: string;
|
|
105252
|
+
exclusiveMinimum: boolean;
|
|
105253
|
+
minimum: number;
|
|
105254
|
+
type: string;
|
|
105255
|
+
format?: never;
|
|
105256
|
+
nullable?: never;
|
|
105257
|
+
};
|
|
105258
|
+
} | {
|
|
105259
|
+
in: string;
|
|
105260
|
+
name: string;
|
|
105261
|
+
schema: {
|
|
105262
|
+
description: string;
|
|
105263
|
+
format: string;
|
|
105264
|
+
type: string;
|
|
105265
|
+
default?: never;
|
|
105266
|
+
exclusiveMinimum?: never;
|
|
105267
|
+
minimum?: never;
|
|
105268
|
+
nullable?: never;
|
|
105269
|
+
};
|
|
105270
|
+
} | {
|
|
105271
|
+
in: string;
|
|
105272
|
+
name: string;
|
|
105273
|
+
schema: {
|
|
105274
|
+
description: string;
|
|
105275
|
+
nullable: boolean;
|
|
105276
|
+
type: string;
|
|
105277
|
+
default?: never;
|
|
105278
|
+
exclusiveMinimum?: never;
|
|
105279
|
+
minimum?: never;
|
|
105280
|
+
format?: never;
|
|
105281
|
+
};
|
|
105282
|
+
})[];
|
|
105155
105283
|
responses: {
|
|
105156
105284
|
200: {
|
|
105157
105285
|
content: {
|
|
@@ -105161,6 +105289,9 @@ declare const _default: {
|
|
|
105161
105289
|
ok: {
|
|
105162
105290
|
type: string;
|
|
105163
105291
|
};
|
|
105292
|
+
pagination: {
|
|
105293
|
+
$ref: string;
|
|
105294
|
+
};
|
|
105164
105295
|
user_identities: {
|
|
105165
105296
|
items: {
|
|
105166
105297
|
description: string;
|
|
@@ -105340,6 +105471,23 @@ declare const _default: {
|
|
|
105340
105471
|
'application/json': {
|
|
105341
105472
|
schema: {
|
|
105342
105473
|
properties: {
|
|
105474
|
+
created_before: {
|
|
105475
|
+
description: string;
|
|
105476
|
+
format: string;
|
|
105477
|
+
type: string;
|
|
105478
|
+
};
|
|
105479
|
+
limit: {
|
|
105480
|
+
default: number;
|
|
105481
|
+
description: string;
|
|
105482
|
+
exclusiveMinimum: boolean;
|
|
105483
|
+
minimum: number;
|
|
105484
|
+
type: string;
|
|
105485
|
+
};
|
|
105486
|
+
page_cursor: {
|
|
105487
|
+
description: string;
|
|
105488
|
+
nullable: boolean;
|
|
105489
|
+
type: string;
|
|
105490
|
+
};
|
|
105343
105491
|
search: {
|
|
105344
105492
|
description: string;
|
|
105345
105493
|
type: string;
|
|
@@ -105359,6 +105507,9 @@ declare const _default: {
|
|
|
105359
105507
|
ok: {
|
|
105360
105508
|
type: string;
|
|
105361
105509
|
};
|
|
105510
|
+
pagination: {
|
|
105511
|
+
$ref: string;
|
|
105512
|
+
};
|
|
105362
105513
|
user_identities: {
|
|
105363
105514
|
items: {
|
|
105364
105515
|
description: string;
|
|
@@ -118130,6 +118281,8 @@ type Routes = {
|
|
|
118130
118281
|
name?: (string | undefined) | null;
|
|
118131
118282
|
/** Unique key for the access grant within the workspace. */
|
|
118132
118283
|
access_grant_key?: string | undefined;
|
|
118284
|
+
/** Reservation key for the access grant. */
|
|
118285
|
+
reservation_key?: string | undefined;
|
|
118133
118286
|
/**
|
|
118134
118287
|
* @deprecated Use `space_ids`.*/
|
|
118135
118288
|
location_ids?: string[] | undefined;
|
|
@@ -118175,6 +118328,8 @@ type Routes = {
|
|
|
118175
118328
|
access_grant_id: string;
|
|
118176
118329
|
/** Unique key for the access grant within the workspace. */
|
|
118177
118330
|
access_grant_key?: string | undefined;
|
|
118331
|
+
/** Reservation key for the access grant. */
|
|
118332
|
+
reservation_key?: string | undefined;
|
|
118178
118333
|
/** ID of user identity to which the Access Grant gives access. */
|
|
118179
118334
|
user_identity_id: string;
|
|
118180
118335
|
/**
|
|
@@ -118259,6 +118414,8 @@ type Routes = {
|
|
|
118259
118414
|
access_grant_id: string;
|
|
118260
118415
|
/** Unique key for the access grant within the workspace. */
|
|
118261
118416
|
access_grant_key?: string | undefined;
|
|
118417
|
+
/** Reservation key for the access grant. */
|
|
118418
|
+
reservation_key?: string | undefined;
|
|
118262
118419
|
/** ID of user identity to which the Access Grant gives access. */
|
|
118263
118420
|
user_identity_id: string;
|
|
118264
118421
|
/**
|
|
@@ -120038,6 +120195,8 @@ type Routes = {
|
|
|
120038
120195
|
access_grant_id: string;
|
|
120039
120196
|
/** Unique key for the access grant within the workspace. */
|
|
120040
120197
|
access_grant_key?: string | undefined;
|
|
120198
|
+
/** Reservation key for the access grant. */
|
|
120199
|
+
reservation_key?: string | undefined;
|
|
120041
120200
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120042
120201
|
user_identity_id: string;
|
|
120043
120202
|
/**
|
|
@@ -120114,6 +120273,8 @@ type Routes = {
|
|
|
120114
120273
|
access_grant_id: string;
|
|
120115
120274
|
/** Unique key for the access grant within the workspace. */
|
|
120116
120275
|
access_grant_key?: string | undefined;
|
|
120276
|
+
/** Reservation key for the access grant. */
|
|
120277
|
+
reservation_key?: string | undefined;
|
|
120117
120278
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120118
120279
|
user_identity_id: string;
|
|
120119
120280
|
/**
|
|
@@ -120181,6 +120342,8 @@ type Routes = {
|
|
|
120181
120342
|
workspace_id: string;
|
|
120182
120343
|
/** ID of the Access Grant. */
|
|
120183
120344
|
access_grant_id: string;
|
|
120345
|
+
/** Reservation key for the access grant. */
|
|
120346
|
+
reservation_key?: string | undefined;
|
|
120184
120347
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120185
120348
|
user_identity_id: string;
|
|
120186
120349
|
/**
|
|
@@ -120245,6 +120408,8 @@ type Routes = {
|
|
|
120245
120408
|
workspace_id: string;
|
|
120246
120409
|
/** ID of the Access Grant. */
|
|
120247
120410
|
access_grant_id: string;
|
|
120411
|
+
/** Reservation key for the access grant. */
|
|
120412
|
+
reservation_key?: string | undefined;
|
|
120248
120413
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120249
120414
|
user_identity_id: string;
|
|
120250
120415
|
/**
|
|
@@ -125740,6 +125905,8 @@ type Routes = {
|
|
|
125740
125905
|
access_grant_id: string;
|
|
125741
125906
|
/** Unique key for the access grant within the workspace. */
|
|
125742
125907
|
access_grant_key?: string | undefined;
|
|
125908
|
+
/** Reservation key for the access grant. */
|
|
125909
|
+
reservation_key?: string | undefined;
|
|
125743
125910
|
/** ID of user identity to which the Access Grant gives access. */
|
|
125744
125911
|
user_identity_id: string;
|
|
125745
125912
|
/**
|
|
@@ -185910,6 +186077,12 @@ type Routes = {
|
|
|
185910
186077
|
search?: string | undefined;
|
|
185911
186078
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
185912
186079
|
credential_manager_acs_system_id?: string | undefined;
|
|
186080
|
+
/** Maximum number of records to return per page. */
|
|
186081
|
+
limit?: number;
|
|
186082
|
+
/** Timestamp by which to limit returned user identities. Returns user identities created before this timestamp. */
|
|
186083
|
+
created_before?: Date | undefined;
|
|
186084
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
186085
|
+
page_cursor?: (string | undefined) | null;
|
|
185913
186086
|
};
|
|
185914
186087
|
formData: {};
|
|
185915
186088
|
jsonResponse: {
|
|
@@ -185960,6 +186133,15 @@ type Routes = {
|
|
|
185960
186133
|
/** Array of access system user IDs associated with the user identity. */
|
|
185961
186134
|
acs_user_ids: string[];
|
|
185962
186135
|
}[];
|
|
186136
|
+
/** Information about the current page of results. */
|
|
186137
|
+
pagination: {
|
|
186138
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
186139
|
+
next_page_cursor: string | null;
|
|
186140
|
+
/** Indicates whether there is another page of results after this one. */
|
|
186141
|
+
has_next_page: boolean;
|
|
186142
|
+
/** URL to get the next page of results. */
|
|
186143
|
+
next_page_url: string | null;
|
|
186144
|
+
};
|
|
185963
186145
|
};
|
|
185964
186146
|
};
|
|
185965
186147
|
'/user_identities/list_accessible_devices': {
|
|
@@ -188850,6 +189032,12 @@ type Routes = {
|
|
|
188850
189032
|
commonParams: {
|
|
188851
189033
|
/** 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`. */
|
|
188852
189034
|
search?: string | undefined;
|
|
189035
|
+
/** Maximum number of records to return per page. */
|
|
189036
|
+
limit?: number;
|
|
189037
|
+
/** Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp. */
|
|
189038
|
+
created_before?: Date | undefined;
|
|
189039
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
189040
|
+
page_cursor?: (string | undefined) | null;
|
|
188853
189041
|
};
|
|
188854
189042
|
formData: {};
|
|
188855
189043
|
jsonResponse: {
|
|
@@ -188898,6 +189086,15 @@ type Routes = {
|
|
|
188898
189086
|
/** Array of access system user IDs associated with the user identity. */
|
|
188899
189087
|
acs_user_ids: string[];
|
|
188900
189088
|
}[];
|
|
189089
|
+
/** Information about the current page of results. */
|
|
189090
|
+
pagination: {
|
|
189091
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
189092
|
+
next_page_cursor: string | null;
|
|
189093
|
+
/** Indicates whether there is another page of results after this one. */
|
|
189094
|
+
has_next_page: boolean;
|
|
189095
|
+
/** URL to get the next page of results. */
|
|
189096
|
+
next_page_url: string | null;
|
|
189097
|
+
};
|
|
188901
189098
|
};
|
|
188902
189099
|
};
|
|
188903
189100
|
'/user_identities/unmanaged/update': {
|
|
@@ -193280,6 +193477,8 @@ type Routes = {
|
|
|
193280
193477
|
access_grant_id: string;
|
|
193281
193478
|
/** Unique key for the access grant within the workspace. */
|
|
193282
193479
|
access_grant_key?: string | undefined;
|
|
193480
|
+
/** Reservation key for the access grant. */
|
|
193481
|
+
reservation_key?: string | undefined;
|
|
193283
193482
|
/** ID of user identity to which the Access Grant gives access. */
|
|
193284
193483
|
user_identity_id: string;
|
|
193285
193484
|
/**
|