@seamapi/types 1.751.0 → 1.753.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 +76 -53
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +193 -149
- package/dist/index.cjs +76 -53
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-method.js +4 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +42 -42
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +37 -37
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js +9 -9
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +63 -58
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +62 -42
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -49
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.ts +14 -14
- package/src/lib/seam/connect/openapi.ts +73 -48
- package/src/lib/seam/connect/route-types.ts +72 -56
package/dist/connect.d.cts
CHANGED
|
@@ -3974,6 +3974,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3974
3974
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3975
3975
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
3976
3976
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
3977
|
+
is_ready_for_encoding: z.ZodOptional<z.ZodBoolean>;
|
|
3977
3978
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3978
3979
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
3979
3980
|
created_at: z.ZodString;
|
|
@@ -4207,6 +4208,7 @@ declare const access_method: z.ZodObject<{
|
|
|
4207
4208
|
instant_key_url?: string | undefined;
|
|
4208
4209
|
customization_profile_id?: string | undefined;
|
|
4209
4210
|
is_encoding_required?: boolean | undefined;
|
|
4211
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
4210
4212
|
}, {
|
|
4211
4213
|
display_name: string;
|
|
4212
4214
|
workspace_id: string;
|
|
@@ -4267,6 +4269,7 @@ declare const access_method: z.ZodObject<{
|
|
|
4267
4269
|
instant_key_url?: string | undefined;
|
|
4268
4270
|
customization_profile_id?: string | undefined;
|
|
4269
4271
|
is_encoding_required?: boolean | undefined;
|
|
4272
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
4270
4273
|
}>;
|
|
4271
4274
|
type AccessMethod = z.infer<typeof access_method>;
|
|
4272
4275
|
|
|
@@ -4348,6 +4351,19 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4348
4351
|
}>, z.ZodObject<{
|
|
4349
4352
|
created_at: z.ZodString;
|
|
4350
4353
|
message: z.ZodString;
|
|
4354
|
+
} & {
|
|
4355
|
+
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
4356
|
+
}, "strip", z.ZodTypeAny, {
|
|
4357
|
+
message: string;
|
|
4358
|
+
created_at: string;
|
|
4359
|
+
mutation_code: "deferring_deletion";
|
|
4360
|
+
}, {
|
|
4361
|
+
message: string;
|
|
4362
|
+
created_at: string;
|
|
4363
|
+
mutation_code: "deferring_deletion";
|
|
4364
|
+
}>, z.ZodObject<{
|
|
4365
|
+
created_at: z.ZodString;
|
|
4366
|
+
message: z.ZodString;
|
|
4351
4367
|
} & {
|
|
4352
4368
|
mutation_code: z.ZodLiteral<"updating_group_information">;
|
|
4353
4369
|
from: z.ZodObject<{
|
|
@@ -4530,19 +4546,6 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4530
4546
|
mutation_code: "deferring_user_membership_update";
|
|
4531
4547
|
acs_user_id: string;
|
|
4532
4548
|
variant: "removing" | "adding";
|
|
4533
|
-
}>, z.ZodObject<{
|
|
4534
|
-
created_at: z.ZodString;
|
|
4535
|
-
message: z.ZodString;
|
|
4536
|
-
} & {
|
|
4537
|
-
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
4538
|
-
}, "strip", z.ZodTypeAny, {
|
|
4539
|
-
message: string;
|
|
4540
|
-
created_at: string;
|
|
4541
|
-
mutation_code: "deferring_deletion";
|
|
4542
|
-
}, {
|
|
4543
|
-
message: string;
|
|
4544
|
-
created_at: string;
|
|
4545
|
-
mutation_code: "deferring_deletion";
|
|
4546
4549
|
}>]>, "many">;
|
|
4547
4550
|
} & {
|
|
4548
4551
|
is_managed: z.ZodLiteral<true>;
|
|
@@ -4615,13 +4618,13 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4615
4618
|
} | {
|
|
4616
4619
|
message: string;
|
|
4617
4620
|
created_at: string;
|
|
4618
|
-
mutation_code: "
|
|
4619
|
-
acs_user_id: string;
|
|
4620
|
-
variant: "removing" | "adding";
|
|
4621
|
+
mutation_code: "deferring_deletion";
|
|
4621
4622
|
} | {
|
|
4622
4623
|
message: string;
|
|
4623
4624
|
created_at: string;
|
|
4624
|
-
mutation_code: "
|
|
4625
|
+
mutation_code: "deferring_user_membership_update";
|
|
4626
|
+
acs_user_id: string;
|
|
4627
|
+
variant: "removing" | "adding";
|
|
4625
4628
|
})[];
|
|
4626
4629
|
acs_access_group_id: string;
|
|
4627
4630
|
acs_system_id: string;
|
|
@@ -4702,13 +4705,13 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4702
4705
|
} | {
|
|
4703
4706
|
message: string;
|
|
4704
4707
|
created_at: string;
|
|
4705
|
-
mutation_code: "
|
|
4706
|
-
acs_user_id: string;
|
|
4707
|
-
variant: "removing" | "adding";
|
|
4708
|
+
mutation_code: "deferring_deletion";
|
|
4708
4709
|
} | {
|
|
4709
4710
|
message: string;
|
|
4710
4711
|
created_at: string;
|
|
4711
|
-
mutation_code: "
|
|
4712
|
+
mutation_code: "deferring_user_membership_update";
|
|
4713
|
+
acs_user_id: string;
|
|
4714
|
+
variant: "removing" | "adding";
|
|
4712
4715
|
})[];
|
|
4713
4716
|
acs_access_group_id: string;
|
|
4714
4717
|
acs_system_id: string;
|
|
@@ -4799,6 +4802,19 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4799
4802
|
}>, z.ZodObject<{
|
|
4800
4803
|
created_at: z.ZodString;
|
|
4801
4804
|
message: z.ZodString;
|
|
4805
|
+
} & {
|
|
4806
|
+
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
4807
|
+
}, "strip", z.ZodTypeAny, {
|
|
4808
|
+
message: string;
|
|
4809
|
+
created_at: string;
|
|
4810
|
+
mutation_code: "deferring_deletion";
|
|
4811
|
+
}, {
|
|
4812
|
+
message: string;
|
|
4813
|
+
created_at: string;
|
|
4814
|
+
mutation_code: "deferring_deletion";
|
|
4815
|
+
}>, z.ZodObject<{
|
|
4816
|
+
created_at: z.ZodString;
|
|
4817
|
+
message: z.ZodString;
|
|
4802
4818
|
} & {
|
|
4803
4819
|
mutation_code: z.ZodLiteral<"updating_group_information">;
|
|
4804
4820
|
from: z.ZodObject<{
|
|
@@ -4981,19 +4997,6 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4981
4997
|
mutation_code: "deferring_user_membership_update";
|
|
4982
4998
|
acs_user_id: string;
|
|
4983
4999
|
variant: "removing" | "adding";
|
|
4984
|
-
}>, z.ZodObject<{
|
|
4985
|
-
created_at: z.ZodString;
|
|
4986
|
-
message: z.ZodString;
|
|
4987
|
-
} & {
|
|
4988
|
-
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
4989
|
-
}, "strip", z.ZodTypeAny, {
|
|
4990
|
-
message: string;
|
|
4991
|
-
created_at: string;
|
|
4992
|
-
mutation_code: "deferring_deletion";
|
|
4993
|
-
}, {
|
|
4994
|
-
message: string;
|
|
4995
|
-
created_at: string;
|
|
4996
|
-
mutation_code: "deferring_deletion";
|
|
4997
5000
|
}>]>, "many">;
|
|
4998
5001
|
} & {
|
|
4999
5002
|
is_managed: z.ZodLiteral<false>;
|
|
@@ -5066,13 +5069,13 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
5066
5069
|
} | {
|
|
5067
5070
|
message: string;
|
|
5068
5071
|
created_at: string;
|
|
5069
|
-
mutation_code: "
|
|
5070
|
-
acs_user_id: string;
|
|
5071
|
-
variant: "removing" | "adding";
|
|
5072
|
+
mutation_code: "deferring_deletion";
|
|
5072
5073
|
} | {
|
|
5073
5074
|
message: string;
|
|
5074
5075
|
created_at: string;
|
|
5075
|
-
mutation_code: "
|
|
5076
|
+
mutation_code: "deferring_user_membership_update";
|
|
5077
|
+
acs_user_id: string;
|
|
5078
|
+
variant: "removing" | "adding";
|
|
5076
5079
|
})[];
|
|
5077
5080
|
acs_access_group_id: string;
|
|
5078
5081
|
acs_system_id: string;
|
|
@@ -5153,13 +5156,13 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
5153
5156
|
} | {
|
|
5154
5157
|
message: string;
|
|
5155
5158
|
created_at: string;
|
|
5156
|
-
mutation_code: "
|
|
5157
|
-
acs_user_id: string;
|
|
5158
|
-
variant: "removing" | "adding";
|
|
5159
|
+
mutation_code: "deferring_deletion";
|
|
5159
5160
|
} | {
|
|
5160
5161
|
message: string;
|
|
5161
5162
|
created_at: string;
|
|
5162
|
-
mutation_code: "
|
|
5163
|
+
mutation_code: "deferring_user_membership_update";
|
|
5164
|
+
acs_user_id: string;
|
|
5165
|
+
variant: "removing" | "adding";
|
|
5163
5166
|
})[];
|
|
5164
5167
|
acs_access_group_id: string;
|
|
5165
5168
|
acs_system_id: string;
|
|
@@ -18202,6 +18205,19 @@ declare const batch: z.ZodObject<{
|
|
|
18202
18205
|
}>, z.ZodObject<{
|
|
18203
18206
|
created_at: z.ZodString;
|
|
18204
18207
|
message: z.ZodString;
|
|
18208
|
+
} & {
|
|
18209
|
+
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
18210
|
+
}, "strip", z.ZodTypeAny, {
|
|
18211
|
+
message: string;
|
|
18212
|
+
created_at: string;
|
|
18213
|
+
mutation_code: "deferring_deletion";
|
|
18214
|
+
}, {
|
|
18215
|
+
message: string;
|
|
18216
|
+
created_at: string;
|
|
18217
|
+
mutation_code: "deferring_deletion";
|
|
18218
|
+
}>, z.ZodObject<{
|
|
18219
|
+
created_at: z.ZodString;
|
|
18220
|
+
message: z.ZodString;
|
|
18205
18221
|
} & {
|
|
18206
18222
|
mutation_code: z.ZodLiteral<"updating_group_information">;
|
|
18207
18223
|
from: z.ZodObject<{
|
|
@@ -18384,19 +18400,6 @@ declare const batch: z.ZodObject<{
|
|
|
18384
18400
|
mutation_code: "deferring_user_membership_update";
|
|
18385
18401
|
acs_user_id: string;
|
|
18386
18402
|
variant: "removing" | "adding";
|
|
18387
|
-
}>, z.ZodObject<{
|
|
18388
|
-
created_at: z.ZodString;
|
|
18389
|
-
message: z.ZodString;
|
|
18390
|
-
} & {
|
|
18391
|
-
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
18392
|
-
}, "strip", z.ZodTypeAny, {
|
|
18393
|
-
message: string;
|
|
18394
|
-
created_at: string;
|
|
18395
|
-
mutation_code: "deferring_deletion";
|
|
18396
|
-
}, {
|
|
18397
|
-
message: string;
|
|
18398
|
-
created_at: string;
|
|
18399
|
-
mutation_code: "deferring_deletion";
|
|
18400
18403
|
}>]>, "many">;
|
|
18401
18404
|
} & {
|
|
18402
18405
|
is_managed: z.ZodLiteral<true>;
|
|
@@ -18469,13 +18472,13 @@ declare const batch: z.ZodObject<{
|
|
|
18469
18472
|
} | {
|
|
18470
18473
|
message: string;
|
|
18471
18474
|
created_at: string;
|
|
18472
|
-
mutation_code: "
|
|
18473
|
-
acs_user_id: string;
|
|
18474
|
-
variant: "removing" | "adding";
|
|
18475
|
+
mutation_code: "deferring_deletion";
|
|
18475
18476
|
} | {
|
|
18476
18477
|
message: string;
|
|
18477
18478
|
created_at: string;
|
|
18478
|
-
mutation_code: "
|
|
18479
|
+
mutation_code: "deferring_user_membership_update";
|
|
18480
|
+
acs_user_id: string;
|
|
18481
|
+
variant: "removing" | "adding";
|
|
18479
18482
|
})[];
|
|
18480
18483
|
acs_access_group_id: string;
|
|
18481
18484
|
acs_system_id: string;
|
|
@@ -18556,13 +18559,13 @@ declare const batch: z.ZodObject<{
|
|
|
18556
18559
|
} | {
|
|
18557
18560
|
message: string;
|
|
18558
18561
|
created_at: string;
|
|
18559
|
-
mutation_code: "
|
|
18560
|
-
acs_user_id: string;
|
|
18561
|
-
variant: "removing" | "adding";
|
|
18562
|
+
mutation_code: "deferring_deletion";
|
|
18562
18563
|
} | {
|
|
18563
18564
|
message: string;
|
|
18564
18565
|
created_at: string;
|
|
18565
|
-
mutation_code: "
|
|
18566
|
+
mutation_code: "deferring_user_membership_update";
|
|
18567
|
+
acs_user_id: string;
|
|
18568
|
+
variant: "removing" | "adding";
|
|
18566
18569
|
})[];
|
|
18567
18570
|
acs_access_group_id: string;
|
|
18568
18571
|
acs_system_id: string;
|
|
@@ -23895,6 +23898,19 @@ declare const batch: z.ZodObject<{
|
|
|
23895
23898
|
}>, z.ZodObject<{
|
|
23896
23899
|
created_at: z.ZodString;
|
|
23897
23900
|
message: z.ZodString;
|
|
23901
|
+
} & {
|
|
23902
|
+
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
23903
|
+
}, "strip", z.ZodTypeAny, {
|
|
23904
|
+
message: string;
|
|
23905
|
+
created_at: string;
|
|
23906
|
+
mutation_code: "deferring_deletion";
|
|
23907
|
+
}, {
|
|
23908
|
+
message: string;
|
|
23909
|
+
created_at: string;
|
|
23910
|
+
mutation_code: "deferring_deletion";
|
|
23911
|
+
}>, z.ZodObject<{
|
|
23912
|
+
created_at: z.ZodString;
|
|
23913
|
+
message: z.ZodString;
|
|
23898
23914
|
} & {
|
|
23899
23915
|
mutation_code: z.ZodLiteral<"updating_group_information">;
|
|
23900
23916
|
from: z.ZodObject<{
|
|
@@ -24077,19 +24093,6 @@ declare const batch: z.ZodObject<{
|
|
|
24077
24093
|
mutation_code: "deferring_user_membership_update";
|
|
24078
24094
|
acs_user_id: string;
|
|
24079
24095
|
variant: "removing" | "adding";
|
|
24080
|
-
}>, z.ZodObject<{
|
|
24081
|
-
created_at: z.ZodString;
|
|
24082
|
-
message: z.ZodString;
|
|
24083
|
-
} & {
|
|
24084
|
-
mutation_code: z.ZodLiteral<"deferring_deletion">;
|
|
24085
|
-
}, "strip", z.ZodTypeAny, {
|
|
24086
|
-
message: string;
|
|
24087
|
-
created_at: string;
|
|
24088
|
-
mutation_code: "deferring_deletion";
|
|
24089
|
-
}, {
|
|
24090
|
-
message: string;
|
|
24091
|
-
created_at: string;
|
|
24092
|
-
mutation_code: "deferring_deletion";
|
|
24093
24096
|
}>]>, "many">;
|
|
24094
24097
|
} & {
|
|
24095
24098
|
is_managed: z.ZodLiteral<false>;
|
|
@@ -24162,13 +24165,13 @@ declare const batch: z.ZodObject<{
|
|
|
24162
24165
|
} | {
|
|
24163
24166
|
message: string;
|
|
24164
24167
|
created_at: string;
|
|
24165
|
-
mutation_code: "
|
|
24166
|
-
acs_user_id: string;
|
|
24167
|
-
variant: "removing" | "adding";
|
|
24168
|
+
mutation_code: "deferring_deletion";
|
|
24168
24169
|
} | {
|
|
24169
24170
|
message: string;
|
|
24170
24171
|
created_at: string;
|
|
24171
|
-
mutation_code: "
|
|
24172
|
+
mutation_code: "deferring_user_membership_update";
|
|
24173
|
+
acs_user_id: string;
|
|
24174
|
+
variant: "removing" | "adding";
|
|
24172
24175
|
})[];
|
|
24173
24176
|
acs_access_group_id: string;
|
|
24174
24177
|
acs_system_id: string;
|
|
@@ -24249,13 +24252,13 @@ declare const batch: z.ZodObject<{
|
|
|
24249
24252
|
} | {
|
|
24250
24253
|
message: string;
|
|
24251
24254
|
created_at: string;
|
|
24252
|
-
mutation_code: "
|
|
24253
|
-
acs_user_id: string;
|
|
24254
|
-
variant: "removing" | "adding";
|
|
24255
|
+
mutation_code: "deferring_deletion";
|
|
24255
24256
|
} | {
|
|
24256
24257
|
message: string;
|
|
24257
24258
|
created_at: string;
|
|
24258
|
-
mutation_code: "
|
|
24259
|
+
mutation_code: "deferring_user_membership_update";
|
|
24260
|
+
acs_user_id: string;
|
|
24261
|
+
variant: "removing" | "adding";
|
|
24259
24262
|
})[];
|
|
24260
24263
|
acs_access_group_id: string;
|
|
24261
24264
|
acs_system_id: string;
|
|
@@ -28043,6 +28046,7 @@ declare const batch: z.ZodObject<{
|
|
|
28043
28046
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
28044
28047
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
28045
28048
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
28049
|
+
is_ready_for_encoding: z.ZodOptional<z.ZodBoolean>;
|
|
28046
28050
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28047
28051
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
28048
28052
|
created_at: z.ZodString;
|
|
@@ -28276,6 +28280,7 @@ declare const batch: z.ZodObject<{
|
|
|
28276
28280
|
instant_key_url?: string | undefined;
|
|
28277
28281
|
customization_profile_id?: string | undefined;
|
|
28278
28282
|
is_encoding_required?: boolean | undefined;
|
|
28283
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
28279
28284
|
}, {
|
|
28280
28285
|
display_name: string;
|
|
28281
28286
|
workspace_id: string;
|
|
@@ -28336,6 +28341,7 @@ declare const batch: z.ZodObject<{
|
|
|
28336
28341
|
instant_key_url?: string | undefined;
|
|
28337
28342
|
customization_profile_id?: string | undefined;
|
|
28338
28343
|
is_encoding_required?: boolean | undefined;
|
|
28344
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
28339
28345
|
}>, "many">>;
|
|
28340
28346
|
access_grants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28341
28347
|
workspace_id: z.ZodString;
|
|
@@ -38055,13 +38061,13 @@ declare const batch: z.ZodObject<{
|
|
|
38055
38061
|
} | {
|
|
38056
38062
|
message: string;
|
|
38057
38063
|
created_at: string;
|
|
38058
|
-
mutation_code: "
|
|
38059
|
-
acs_user_id: string;
|
|
38060
|
-
variant: "removing" | "adding";
|
|
38064
|
+
mutation_code: "deferring_deletion";
|
|
38061
38065
|
} | {
|
|
38062
38066
|
message: string;
|
|
38063
38067
|
created_at: string;
|
|
38064
|
-
mutation_code: "
|
|
38068
|
+
mutation_code: "deferring_user_membership_update";
|
|
38069
|
+
acs_user_id: string;
|
|
38070
|
+
variant: "removing" | "adding";
|
|
38065
38071
|
})[];
|
|
38066
38072
|
acs_access_group_id: string;
|
|
38067
38073
|
acs_system_id: string;
|
|
@@ -39184,13 +39190,13 @@ declare const batch: z.ZodObject<{
|
|
|
39184
39190
|
} | {
|
|
39185
39191
|
message: string;
|
|
39186
39192
|
created_at: string;
|
|
39187
|
-
mutation_code: "
|
|
39188
|
-
acs_user_id: string;
|
|
39189
|
-
variant: "removing" | "adding";
|
|
39193
|
+
mutation_code: "deferring_deletion";
|
|
39190
39194
|
} | {
|
|
39191
39195
|
message: string;
|
|
39192
39196
|
created_at: string;
|
|
39193
|
-
mutation_code: "
|
|
39197
|
+
mutation_code: "deferring_user_membership_update";
|
|
39198
|
+
acs_user_id: string;
|
|
39199
|
+
variant: "removing" | "adding";
|
|
39194
39200
|
})[];
|
|
39195
39201
|
acs_access_group_id: string;
|
|
39196
39202
|
acs_system_id: string;
|
|
@@ -39538,6 +39544,7 @@ declare const batch: z.ZodObject<{
|
|
|
39538
39544
|
instant_key_url?: string | undefined;
|
|
39539
39545
|
customization_profile_id?: string | undefined;
|
|
39540
39546
|
is_encoding_required?: boolean | undefined;
|
|
39547
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
39541
39548
|
}[] | undefined;
|
|
39542
39549
|
access_grants?: {
|
|
39543
39550
|
name: string | null;
|
|
@@ -42858,13 +42865,13 @@ declare const batch: z.ZodObject<{
|
|
|
42858
42865
|
} | {
|
|
42859
42866
|
message: string;
|
|
42860
42867
|
created_at: string;
|
|
42861
|
-
mutation_code: "
|
|
42862
|
-
acs_user_id: string;
|
|
42863
|
-
variant: "removing" | "adding";
|
|
42868
|
+
mutation_code: "deferring_deletion";
|
|
42864
42869
|
} | {
|
|
42865
42870
|
message: string;
|
|
42866
42871
|
created_at: string;
|
|
42867
|
-
mutation_code: "
|
|
42872
|
+
mutation_code: "deferring_user_membership_update";
|
|
42873
|
+
acs_user_id: string;
|
|
42874
|
+
variant: "removing" | "adding";
|
|
42868
42875
|
})[];
|
|
42869
42876
|
acs_access_group_id: string;
|
|
42870
42877
|
acs_system_id: string;
|
|
@@ -43987,13 +43994,13 @@ declare const batch: z.ZodObject<{
|
|
|
43987
43994
|
} | {
|
|
43988
43995
|
message: string;
|
|
43989
43996
|
created_at: string;
|
|
43990
|
-
mutation_code: "
|
|
43991
|
-
acs_user_id: string;
|
|
43992
|
-
variant: "removing" | "adding";
|
|
43997
|
+
mutation_code: "deferring_deletion";
|
|
43993
43998
|
} | {
|
|
43994
43999
|
message: string;
|
|
43995
44000
|
created_at: string;
|
|
43996
|
-
mutation_code: "
|
|
44001
|
+
mutation_code: "deferring_user_membership_update";
|
|
44002
|
+
acs_user_id: string;
|
|
44003
|
+
variant: "removing" | "adding";
|
|
43997
44004
|
})[];
|
|
43998
44005
|
acs_access_group_id: string;
|
|
43999
44006
|
acs_system_id: string;
|
|
@@ -44341,6 +44348,7 @@ declare const batch: z.ZodObject<{
|
|
|
44341
44348
|
instant_key_url?: string | undefined;
|
|
44342
44349
|
customization_profile_id?: string | undefined;
|
|
44343
44350
|
is_encoding_required?: boolean | undefined;
|
|
44351
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
44344
44352
|
}[] | undefined;
|
|
44345
44353
|
access_grants?: {
|
|
44346
44354
|
name: string | null;
|
|
@@ -62614,6 +62622,10 @@ declare const _default: {
|
|
|
62614
62622
|
description: string;
|
|
62615
62623
|
type: string;
|
|
62616
62624
|
};
|
|
62625
|
+
is_ready_for_encoding: {
|
|
62626
|
+
description: string;
|
|
62627
|
+
type: string;
|
|
62628
|
+
};
|
|
62617
62629
|
issued_at: {
|
|
62618
62630
|
description: string;
|
|
62619
62631
|
format: string;
|
|
@@ -88741,6 +88753,10 @@ declare const _default: {
|
|
|
88741
88753
|
description: string;
|
|
88742
88754
|
type: string;
|
|
88743
88755
|
};
|
|
88756
|
+
is_ready_for_encoding: {
|
|
88757
|
+
description: string;
|
|
88758
|
+
type: string;
|
|
88759
|
+
};
|
|
88744
88760
|
issued_at: {
|
|
88745
88761
|
description: string;
|
|
88746
88762
|
format: string;
|
|
@@ -89040,6 +89056,10 @@ declare const _default: {
|
|
|
89040
89056
|
description: string;
|
|
89041
89057
|
type: string;
|
|
89042
89058
|
};
|
|
89059
|
+
is_ready_for_encoding: {
|
|
89060
|
+
description: string;
|
|
89061
|
+
type: string;
|
|
89062
|
+
};
|
|
89043
89063
|
issued_at: {
|
|
89044
89064
|
description: string;
|
|
89045
89065
|
format: string;
|
|
@@ -89335,6 +89355,10 @@ declare const _default: {
|
|
|
89335
89355
|
description: string;
|
|
89336
89356
|
type: string;
|
|
89337
89357
|
};
|
|
89358
|
+
is_ready_for_encoding: {
|
|
89359
|
+
description: string;
|
|
89360
|
+
type: string;
|
|
89361
|
+
};
|
|
89338
89362
|
issued_at: {
|
|
89339
89363
|
description: string;
|
|
89340
89364
|
format: string;
|
|
@@ -89652,6 +89676,10 @@ declare const _default: {
|
|
|
89652
89676
|
description: string;
|
|
89653
89677
|
type: string;
|
|
89654
89678
|
};
|
|
89679
|
+
is_ready_for_encoding: {
|
|
89680
|
+
description: string;
|
|
89681
|
+
type: string;
|
|
89682
|
+
};
|
|
89655
89683
|
issued_at: {
|
|
89656
89684
|
description: string;
|
|
89657
89685
|
format: string;
|
|
@@ -145054,6 +145082,13 @@ type Routes = {
|
|
|
145054
145082
|
message: string;
|
|
145055
145083
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
145056
145084
|
mutation_code: 'deleting';
|
|
145085
|
+
} | {
|
|
145086
|
+
/** Date and time at which the mutation was created. */
|
|
145087
|
+
created_at: string;
|
|
145088
|
+
/** Detailed description of the mutation. */
|
|
145089
|
+
message: string;
|
|
145090
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
145091
|
+
mutation_code: 'deferring_deletion';
|
|
145057
145092
|
} | {
|
|
145058
145093
|
/** Date and time at which the mutation was created. */
|
|
145059
145094
|
created_at: string;
|
|
@@ -145137,13 +145172,6 @@ type Routes = {
|
|
|
145137
145172
|
acs_user_id: string;
|
|
145138
145173
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
145139
145174
|
variant: 'adding' | 'removing';
|
|
145140
|
-
} | {
|
|
145141
|
-
/** Date and time at which the mutation was created. */
|
|
145142
|
-
created_at: string;
|
|
145143
|
-
/** Detailed description of the mutation. */
|
|
145144
|
-
message: string;
|
|
145145
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
145146
|
-
mutation_code: 'deferring_deletion';
|
|
145147
145175
|
})[];
|
|
145148
145176
|
is_managed: true;
|
|
145149
145177
|
}[] | undefined;
|
|
@@ -145168,6 +145196,8 @@ type Routes = {
|
|
|
145168
145196
|
client_session_token?: string | undefined;
|
|
145169
145197
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
145170
145198
|
is_encoding_required?: boolean | undefined;
|
|
145199
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
145200
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
145171
145201
|
/** The actual PIN code for code access methods. */
|
|
145172
145202
|
code?: (string | null) | undefined;
|
|
145173
145203
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -147339,6 +147369,8 @@ type Routes = {
|
|
|
147339
147369
|
client_session_token?: string | undefined;
|
|
147340
147370
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
147341
147371
|
is_encoding_required?: boolean | undefined;
|
|
147372
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
147373
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
147342
147374
|
/** The actual PIN code for code access methods. */
|
|
147343
147375
|
code?: (string | null) | undefined;
|
|
147344
147376
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -149080,6 +149112,8 @@ type Routes = {
|
|
|
149080
149112
|
client_session_token?: string | undefined;
|
|
149081
149113
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
149082
149114
|
is_encoding_required?: boolean | undefined;
|
|
149115
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
149116
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
149083
149117
|
/** The actual PIN code for code access methods. */
|
|
149084
149118
|
code?: (string | null) | undefined;
|
|
149085
149119
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -149394,6 +149428,8 @@ type Routes = {
|
|
|
149394
149428
|
client_session_token?: string | undefined;
|
|
149395
149429
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
149396
149430
|
is_encoding_required?: boolean | undefined;
|
|
149431
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
149432
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
149397
149433
|
/** The actual PIN code for code access methods. */
|
|
149398
149434
|
code?: (string | null) | undefined;
|
|
149399
149435
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -149513,6 +149549,8 @@ type Routes = {
|
|
|
149513
149549
|
is_issued: boolean;
|
|
149514
149550
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
149515
149551
|
is_encoding_required?: boolean | undefined;
|
|
149552
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
149553
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
149516
149554
|
/** The actual PIN code for code access methods. */
|
|
149517
149555
|
code?: (string | null) | undefined;
|
|
149518
149556
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -149635,6 +149673,8 @@ type Routes = {
|
|
|
149635
149673
|
is_issued: boolean;
|
|
149636
149674
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
149637
149675
|
is_encoding_required?: boolean | undefined;
|
|
149676
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
149677
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
149638
149678
|
/** The actual PIN code for code access methods. */
|
|
149639
149679
|
code?: (string | null) | undefined;
|
|
149640
149680
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -149831,6 +149871,13 @@ type Routes = {
|
|
|
149831
149871
|
message: string;
|
|
149832
149872
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
149833
149873
|
mutation_code: 'deleting';
|
|
149874
|
+
} | {
|
|
149875
|
+
/** Date and time at which the mutation was created. */
|
|
149876
|
+
created_at: string;
|
|
149877
|
+
/** Detailed description of the mutation. */
|
|
149878
|
+
message: string;
|
|
149879
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
149880
|
+
mutation_code: 'deferring_deletion';
|
|
149834
149881
|
} | {
|
|
149835
149882
|
/** Date and time at which the mutation was created. */
|
|
149836
149883
|
created_at: string;
|
|
@@ -149914,13 +149961,6 @@ type Routes = {
|
|
|
149914
149961
|
acs_user_id: string;
|
|
149915
149962
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
149916
149963
|
variant: 'adding' | 'removing';
|
|
149917
|
-
} | {
|
|
149918
|
-
/** Date and time at which the mutation was created. */
|
|
149919
|
-
created_at: string;
|
|
149920
|
-
/** Detailed description of the mutation. */
|
|
149921
|
-
message: string;
|
|
149922
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
149923
|
-
mutation_code: 'deferring_deletion';
|
|
149924
149964
|
})[];
|
|
149925
149965
|
is_managed: true;
|
|
149926
149966
|
};
|
|
@@ -150006,6 +150046,13 @@ type Routes = {
|
|
|
150006
150046
|
message: string;
|
|
150007
150047
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
150008
150048
|
mutation_code: 'deleting';
|
|
150049
|
+
} | {
|
|
150050
|
+
/** Date and time at which the mutation was created. */
|
|
150051
|
+
created_at: string;
|
|
150052
|
+
/** Detailed description of the mutation. */
|
|
150053
|
+
message: string;
|
|
150054
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
150055
|
+
mutation_code: 'deferring_deletion';
|
|
150009
150056
|
} | {
|
|
150010
150057
|
/** Date and time at which the mutation was created. */
|
|
150011
150058
|
created_at: string;
|
|
@@ -150089,13 +150136,6 @@ type Routes = {
|
|
|
150089
150136
|
acs_user_id: string;
|
|
150090
150137
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
150091
150138
|
variant: 'adding' | 'removing';
|
|
150092
|
-
} | {
|
|
150093
|
-
/** Date and time at which the mutation was created. */
|
|
150094
|
-
created_at: string;
|
|
150095
|
-
/** Detailed description of the mutation. */
|
|
150096
|
-
message: string;
|
|
150097
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
150098
|
-
mutation_code: 'deferring_deletion';
|
|
150099
150139
|
})[];
|
|
150100
150140
|
is_managed: true;
|
|
150101
150141
|
}[];
|
|
@@ -150587,6 +150627,13 @@ type Routes = {
|
|
|
150587
150627
|
message: string;
|
|
150588
150628
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
150589
150629
|
mutation_code: 'deleting';
|
|
150630
|
+
} | {
|
|
150631
|
+
/** Date and time at which the mutation was created. */
|
|
150632
|
+
created_at: string;
|
|
150633
|
+
/** Detailed description of the mutation. */
|
|
150634
|
+
message: string;
|
|
150635
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
150636
|
+
mutation_code: 'deferring_deletion';
|
|
150590
150637
|
} | {
|
|
150591
150638
|
/** Date and time at which the mutation was created. */
|
|
150592
150639
|
created_at: string;
|
|
@@ -150670,13 +150717,6 @@ type Routes = {
|
|
|
150670
150717
|
acs_user_id: string;
|
|
150671
150718
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
150672
150719
|
variant: 'adding' | 'removing';
|
|
150673
|
-
} | {
|
|
150674
|
-
/** Date and time at which the mutation was created. */
|
|
150675
|
-
created_at: string;
|
|
150676
|
-
/** Detailed description of the mutation. */
|
|
150677
|
-
message: string;
|
|
150678
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
150679
|
-
mutation_code: 'deferring_deletion';
|
|
150680
150720
|
})[];
|
|
150681
150721
|
is_managed: false;
|
|
150682
150722
|
};
|
|
@@ -150760,6 +150800,13 @@ type Routes = {
|
|
|
150760
150800
|
message: string;
|
|
150761
150801
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
150762
150802
|
mutation_code: 'deleting';
|
|
150803
|
+
} | {
|
|
150804
|
+
/** Date and time at which the mutation was created. */
|
|
150805
|
+
created_at: string;
|
|
150806
|
+
/** Detailed description of the mutation. */
|
|
150807
|
+
message: string;
|
|
150808
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
150809
|
+
mutation_code: 'deferring_deletion';
|
|
150763
150810
|
} | {
|
|
150764
150811
|
/** Date and time at which the mutation was created. */
|
|
150765
150812
|
created_at: string;
|
|
@@ -150843,13 +150890,6 @@ type Routes = {
|
|
|
150843
150890
|
acs_user_id: string;
|
|
150844
150891
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
150845
150892
|
variant: 'adding' | 'removing';
|
|
150846
|
-
} | {
|
|
150847
|
-
/** Date and time at which the mutation was created. */
|
|
150848
|
-
created_at: string;
|
|
150849
|
-
/** Detailed description of the mutation. */
|
|
150850
|
-
message: string;
|
|
150851
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
150852
|
-
mutation_code: 'deferring_deletion';
|
|
150853
150893
|
})[];
|
|
150854
150894
|
is_managed: false;
|
|
150855
150895
|
}[];
|
|
@@ -199106,6 +199146,8 @@ type Routes = {
|
|
|
199106
199146
|
client_session_token?: string | undefined;
|
|
199107
199147
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
199108
199148
|
is_encoding_required?: boolean | undefined;
|
|
199149
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
199150
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
199109
199151
|
/** The actual PIN code for code access methods. */
|
|
199110
199152
|
code?: (string | null) | undefined;
|
|
199111
199153
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -221311,6 +221353,13 @@ type Routes = {
|
|
|
221311
221353
|
message: string;
|
|
221312
221354
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
221313
221355
|
mutation_code: 'deleting';
|
|
221356
|
+
} | {
|
|
221357
|
+
/** Date and time at which the mutation was created. */
|
|
221358
|
+
created_at: string;
|
|
221359
|
+
/** Detailed description of the mutation. */
|
|
221360
|
+
message: string;
|
|
221361
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
221362
|
+
mutation_code: 'deferring_deletion';
|
|
221314
221363
|
} | {
|
|
221315
221364
|
/** Date and time at which the mutation was created. */
|
|
221316
221365
|
created_at: string;
|
|
@@ -221394,13 +221443,6 @@ type Routes = {
|
|
|
221394
221443
|
acs_user_id: string;
|
|
221395
221444
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
221396
221445
|
variant: 'adding' | 'removing';
|
|
221397
|
-
} | {
|
|
221398
|
-
/** Date and time at which the mutation was created. */
|
|
221399
|
-
created_at: string;
|
|
221400
|
-
/** Detailed description of the mutation. */
|
|
221401
|
-
message: string;
|
|
221402
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
221403
|
-
mutation_code: 'deferring_deletion';
|
|
221404
221446
|
})[];
|
|
221405
221447
|
is_managed: true;
|
|
221406
221448
|
}[] | undefined;
|
|
@@ -223007,6 +223049,13 @@ type Routes = {
|
|
|
223007
223049
|
message: string;
|
|
223008
223050
|
/** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
|
|
223009
223051
|
mutation_code: 'deleting';
|
|
223052
|
+
} | {
|
|
223053
|
+
/** Date and time at which the mutation was created. */
|
|
223054
|
+
created_at: string;
|
|
223055
|
+
/** Detailed description of the mutation. */
|
|
223056
|
+
message: string;
|
|
223057
|
+
/** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
|
|
223058
|
+
mutation_code: 'deferring_deletion';
|
|
223010
223059
|
} | {
|
|
223011
223060
|
/** Date and time at which the mutation was created. */
|
|
223012
223061
|
created_at: string;
|
|
@@ -223090,13 +223139,6 @@ type Routes = {
|
|
|
223090
223139
|
acs_user_id: string;
|
|
223091
223140
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
223092
223141
|
variant: 'adding' | 'removing';
|
|
223093
|
-
} | {
|
|
223094
|
-
/** Date and time at which the mutation was created. */
|
|
223095
|
-
created_at: string;
|
|
223096
|
-
/** Detailed description of the mutation. */
|
|
223097
|
-
message: string;
|
|
223098
|
-
/** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
|
|
223099
|
-
mutation_code: 'deferring_deletion';
|
|
223100
223142
|
})[];
|
|
223101
223143
|
is_managed: false;
|
|
223102
223144
|
}[] | undefined;
|
|
@@ -223612,6 +223654,8 @@ type Routes = {
|
|
|
223612
223654
|
client_session_token?: string | undefined;
|
|
223613
223655
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
223614
223656
|
is_encoding_required?: boolean | undefined;
|
|
223657
|
+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
223658
|
+
is_ready_for_encoding?: boolean | undefined;
|
|
223615
223659
|
/** The actual PIN code for code access methods. */
|
|
223616
223660
|
code?: (string | null) | undefined;
|
|
223617
223661
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|