@seamapi/types 1.827.0 → 1.828.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 +38 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +50 -0
- package/dist/index.cjs +38 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +18 -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 +12 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +6 -0
- package/lib/seam/connect/models/events/access-grants.js +4 -0
- package/lib/seam/connect/models/events/access-grants.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -0
- package/lib/seam/connect/openapi.js +30 -0
- 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/models/access-grants/access-grant.ts +6 -0
- package/src/lib/seam/connect/models/events/access-grants.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +36 -0
- package/src/lib/seam/connect/route-types.ts +30 -0
|
@@ -4,14 +4,17 @@ declare const access_grant_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodOb
|
|
|
4
4
|
message: z.ZodString;
|
|
5
5
|
} & {
|
|
6
6
|
error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
|
|
7
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
message: string;
|
|
9
10
|
created_at: string;
|
|
10
11
|
error_code: "cannot_create_requested_access_methods";
|
|
12
|
+
missing_device_ids?: string[] | undefined;
|
|
11
13
|
}, {
|
|
12
14
|
message: string;
|
|
13
15
|
created_at: string;
|
|
14
16
|
error_code: "cannot_create_requested_access_methods";
|
|
17
|
+
missing_device_ids?: string[] | undefined;
|
|
15
18
|
}>]>;
|
|
16
19
|
export type AccessGrantError = z.infer<typeof access_grant_error>;
|
|
17
20
|
export declare const _access_grant_error_map: z.ZodObject<{
|
|
@@ -20,26 +23,31 @@ export declare const _access_grant_error_map: z.ZodObject<{
|
|
|
20
23
|
message: z.ZodString;
|
|
21
24
|
} & {
|
|
22
25
|
error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
|
|
26
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23
27
|
}, "strip", z.ZodTypeAny, {
|
|
24
28
|
message: string;
|
|
25
29
|
created_at: string;
|
|
26
30
|
error_code: "cannot_create_requested_access_methods";
|
|
31
|
+
missing_device_ids?: string[] | undefined;
|
|
27
32
|
}, {
|
|
28
33
|
message: string;
|
|
29
34
|
created_at: string;
|
|
30
35
|
error_code: "cannot_create_requested_access_methods";
|
|
36
|
+
missing_device_ids?: string[] | undefined;
|
|
31
37
|
}>>>;
|
|
32
38
|
}, "strip", z.ZodTypeAny, {
|
|
33
39
|
cannot_create_requested_access_methods?: {
|
|
34
40
|
message: string;
|
|
35
41
|
created_at: string;
|
|
36
42
|
error_code: "cannot_create_requested_access_methods";
|
|
43
|
+
missing_device_ids?: string[] | undefined;
|
|
37
44
|
} | null | undefined;
|
|
38
45
|
}, {
|
|
39
46
|
cannot_create_requested_access_methods?: {
|
|
40
47
|
message: string;
|
|
41
48
|
created_at: string;
|
|
42
49
|
error_code: "cannot_create_requested_access_methods";
|
|
50
|
+
missing_device_ids?: string[] | undefined;
|
|
43
51
|
} | null | undefined;
|
|
44
52
|
}>;
|
|
45
53
|
export type AccessGrantErrorMap = z.infer<typeof _access_grant_error_map>;
|
|
@@ -463,14 +471,17 @@ export declare const access_grant: z.ZodObject<{
|
|
|
463
471
|
message: z.ZodString;
|
|
464
472
|
} & {
|
|
465
473
|
error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
|
|
474
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
466
475
|
}, "strip", z.ZodTypeAny, {
|
|
467
476
|
message: string;
|
|
468
477
|
created_at: string;
|
|
469
478
|
error_code: "cannot_create_requested_access_methods";
|
|
479
|
+
missing_device_ids?: string[] | undefined;
|
|
470
480
|
}, {
|
|
471
481
|
message: string;
|
|
472
482
|
created_at: string;
|
|
473
483
|
error_code: "cannot_create_requested_access_methods";
|
|
484
|
+
missing_device_ids?: string[] | undefined;
|
|
474
485
|
}>]>, "many">;
|
|
475
486
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
476
487
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
@@ -581,6 +592,7 @@ export declare const access_grant: z.ZodObject<{
|
|
|
581
592
|
message: string;
|
|
582
593
|
created_at: string;
|
|
583
594
|
error_code: "cannot_create_requested_access_methods";
|
|
595
|
+
missing_device_ids?: string[] | undefined;
|
|
584
596
|
}[];
|
|
585
597
|
warnings: ({
|
|
586
598
|
message: string;
|
|
@@ -677,6 +689,7 @@ export declare const access_grant: z.ZodObject<{
|
|
|
677
689
|
message: string;
|
|
678
690
|
created_at: string;
|
|
679
691
|
error_code: "cannot_create_requested_access_methods";
|
|
692
|
+
missing_device_ids?: string[] | undefined;
|
|
680
693
|
}[];
|
|
681
694
|
warnings: ({
|
|
682
695
|
message: string;
|
|
@@ -943,14 +956,17 @@ export declare const unmanaged_access_grant: z.ZodObject<Omit<{
|
|
|
943
956
|
message: z.ZodString;
|
|
944
957
|
} & {
|
|
945
958
|
error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
|
|
959
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
946
960
|
}, "strip", z.ZodTypeAny, {
|
|
947
961
|
message: string;
|
|
948
962
|
created_at: string;
|
|
949
963
|
error_code: "cannot_create_requested_access_methods";
|
|
964
|
+
missing_device_ids?: string[] | undefined;
|
|
950
965
|
}, {
|
|
951
966
|
message: string;
|
|
952
967
|
created_at: string;
|
|
953
968
|
error_code: "cannot_create_requested_access_methods";
|
|
969
|
+
missing_device_ids?: string[] | undefined;
|
|
954
970
|
}>]>, "many">;
|
|
955
971
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
956
972
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
@@ -1063,6 +1079,7 @@ export declare const unmanaged_access_grant: z.ZodObject<Omit<{
|
|
|
1063
1079
|
message: string;
|
|
1064
1080
|
created_at: string;
|
|
1065
1081
|
error_code: "cannot_create_requested_access_methods";
|
|
1082
|
+
missing_device_ids?: string[] | undefined;
|
|
1066
1083
|
}[];
|
|
1067
1084
|
warnings: ({
|
|
1068
1085
|
message: string;
|
|
@@ -1155,6 +1172,7 @@ export declare const unmanaged_access_grant: z.ZodObject<Omit<{
|
|
|
1155
1172
|
message: string;
|
|
1156
1173
|
created_at: string;
|
|
1157
1174
|
error_code: "cannot_create_requested_access_methods";
|
|
1175
|
+
missing_device_ids?: string[] | undefined;
|
|
1158
1176
|
}[];
|
|
1159
1177
|
warnings: ({
|
|
1160
1178
|
message: string;
|
|
@@ -15,6 +15,10 @@ const cannot_create_requested_access_methods_error = common_access_grant_error.e
|
|
|
15
15
|
error_code: z
|
|
16
16
|
.literal('cannot_create_requested_access_methods')
|
|
17
17
|
.describe(error_code_description),
|
|
18
|
+
missing_device_ids: z
|
|
19
|
+
.array(z.string().uuid())
|
|
20
|
+
.optional()
|
|
21
|
+
.describe('IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.'),
|
|
18
22
|
});
|
|
19
23
|
const common_access_grant_warning = z.object({
|
|
20
24
|
created_at: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-grant.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-grant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAA;AACvE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AAEtE,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,4CAA4C,GAChD,yBAAyB,CAAC,MAAM,CAAC;IAC/B,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,wCAAwC,CAAC;SACjD,QAAQ,CAAC,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"access-grant.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-grant.ts"],"names":[],"mappings":"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"}
|
|
@@ -17158,14 +17158,17 @@ export declare const batch: z.ZodObject<{
|
|
|
17158
17158
|
message: z.ZodString;
|
|
17159
17159
|
} & {
|
|
17160
17160
|
error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
|
|
17161
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17161
17162
|
}, "strip", z.ZodTypeAny, {
|
|
17162
17163
|
message: string;
|
|
17163
17164
|
created_at: string;
|
|
17164
17165
|
error_code: "cannot_create_requested_access_methods";
|
|
17166
|
+
missing_device_ids?: string[] | undefined;
|
|
17165
17167
|
}, {
|
|
17166
17168
|
message: string;
|
|
17167
17169
|
created_at: string;
|
|
17168
17170
|
error_code: "cannot_create_requested_access_methods";
|
|
17171
|
+
missing_device_ids?: string[] | undefined;
|
|
17169
17172
|
}>]>, "many">;
|
|
17170
17173
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
17171
17174
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
@@ -17276,6 +17279,7 @@ export declare const batch: z.ZodObject<{
|
|
|
17276
17279
|
message: string;
|
|
17277
17280
|
created_at: string;
|
|
17278
17281
|
error_code: "cannot_create_requested_access_methods";
|
|
17282
|
+
missing_device_ids?: string[] | undefined;
|
|
17279
17283
|
}[];
|
|
17280
17284
|
warnings: ({
|
|
17281
17285
|
message: string;
|
|
@@ -17372,6 +17376,7 @@ export declare const batch: z.ZodObject<{
|
|
|
17372
17376
|
message: string;
|
|
17373
17377
|
created_at: string;
|
|
17374
17378
|
error_code: "cannot_create_requested_access_methods";
|
|
17379
|
+
missing_device_ids?: string[] | undefined;
|
|
17375
17380
|
}[];
|
|
17376
17381
|
warnings: ({
|
|
17377
17382
|
message: string;
|
|
@@ -18923,6 +18928,7 @@ export declare const batch: z.ZodObject<{
|
|
|
18923
18928
|
} & {
|
|
18924
18929
|
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
18925
18930
|
error_message: z.ZodString;
|
|
18931
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18926
18932
|
}, "strip", z.ZodTypeAny, {
|
|
18927
18933
|
workspace_id: string;
|
|
18928
18934
|
created_at: string;
|
|
@@ -18931,6 +18937,7 @@ export declare const batch: z.ZodObject<{
|
|
|
18931
18937
|
occurred_at: string;
|
|
18932
18938
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
18933
18939
|
error_message: string;
|
|
18940
|
+
missing_device_ids?: string[] | undefined;
|
|
18934
18941
|
}, {
|
|
18935
18942
|
workspace_id: string;
|
|
18936
18943
|
created_at: string;
|
|
@@ -18939,6 +18946,7 @@ export declare const batch: z.ZodObject<{
|
|
|
18939
18946
|
occurred_at: string;
|
|
18940
18947
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
18941
18948
|
error_message: string;
|
|
18949
|
+
missing_device_ids?: string[] | undefined;
|
|
18942
18950
|
}>, z.ZodObject<{
|
|
18943
18951
|
event_id: z.ZodString;
|
|
18944
18952
|
workspace_id: z.ZodString;
|
|
@@ -28714,6 +28722,7 @@ export declare const batch: z.ZodObject<{
|
|
|
28714
28722
|
message: string;
|
|
28715
28723
|
created_at: string;
|
|
28716
28724
|
error_code: "cannot_create_requested_access_methods";
|
|
28725
|
+
missing_device_ids?: string[] | undefined;
|
|
28717
28726
|
}[];
|
|
28718
28727
|
warnings: ({
|
|
28719
28728
|
message: string;
|
|
@@ -29196,6 +29205,7 @@ export declare const batch: z.ZodObject<{
|
|
|
29196
29205
|
occurred_at: string;
|
|
29197
29206
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
29198
29207
|
error_message: string;
|
|
29208
|
+
missing_device_ids?: string[] | undefined;
|
|
29199
29209
|
} | {
|
|
29200
29210
|
workspace_id: string;
|
|
29201
29211
|
created_at: string;
|
|
@@ -33678,6 +33688,7 @@ export declare const batch: z.ZodObject<{
|
|
|
33678
33688
|
message: string;
|
|
33679
33689
|
created_at: string;
|
|
33680
33690
|
error_code: "cannot_create_requested_access_methods";
|
|
33691
|
+
missing_device_ids?: string[] | undefined;
|
|
33681
33692
|
}[];
|
|
33682
33693
|
warnings: ({
|
|
33683
33694
|
message: string;
|
|
@@ -34160,6 +34171,7 @@ export declare const batch: z.ZodObject<{
|
|
|
34160
34171
|
occurred_at: string;
|
|
34161
34172
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
34162
34173
|
error_message: string;
|
|
34174
|
+
missing_device_ids?: string[] | undefined;
|
|
34163
34175
|
} | {
|
|
34164
34176
|
workspace_id: string;
|
|
34165
34177
|
created_at: string;
|
|
@@ -172,6 +172,7 @@ export declare const access_grant_could_not_create_requested_access_methods_even
|
|
|
172
172
|
} & {
|
|
173
173
|
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
174
174
|
error_message: z.ZodString;
|
|
175
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
175
176
|
}, "strip", z.ZodTypeAny, {
|
|
176
177
|
workspace_id: string;
|
|
177
178
|
created_at: string;
|
|
@@ -180,6 +181,7 @@ export declare const access_grant_could_not_create_requested_access_methods_even
|
|
|
180
181
|
occurred_at: string;
|
|
181
182
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
182
183
|
error_message: string;
|
|
184
|
+
missing_device_ids?: string[] | undefined;
|
|
183
185
|
}, {
|
|
184
186
|
workspace_id: string;
|
|
185
187
|
created_at: string;
|
|
@@ -188,6 +190,7 @@ export declare const access_grant_could_not_create_requested_access_methods_even
|
|
|
188
190
|
occurred_at: string;
|
|
189
191
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
190
192
|
error_message: string;
|
|
193
|
+
missing_device_ids?: string[] | undefined;
|
|
191
194
|
}>;
|
|
192
195
|
export type AccessGrantCouldNotCreateRequestedAccessMethodsEvent = z.infer<typeof access_grant_could_not_create_requested_access_methods_event>;
|
|
193
196
|
export declare const access_grant_events: readonly [z.ZodObject<{
|
|
@@ -353,6 +356,7 @@ export declare const access_grant_events: readonly [z.ZodObject<{
|
|
|
353
356
|
} & {
|
|
354
357
|
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
355
358
|
error_message: z.ZodString;
|
|
359
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
356
360
|
}, "strip", z.ZodTypeAny, {
|
|
357
361
|
workspace_id: string;
|
|
358
362
|
created_at: string;
|
|
@@ -361,6 +365,7 @@ export declare const access_grant_events: readonly [z.ZodObject<{
|
|
|
361
365
|
occurred_at: string;
|
|
362
366
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
363
367
|
error_message: string;
|
|
368
|
+
missing_device_ids?: string[] | undefined;
|
|
364
369
|
}, {
|
|
365
370
|
workspace_id: string;
|
|
366
371
|
created_at: string;
|
|
@@ -369,4 +374,5 @@ export declare const access_grant_events: readonly [z.ZodObject<{
|
|
|
369
374
|
occurred_at: string;
|
|
370
375
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
371
376
|
error_message: string;
|
|
377
|
+
missing_device_ids?: string[] | undefined;
|
|
372
378
|
}>];
|
|
@@ -77,6 +77,10 @@ export const access_grant_could_not_create_requested_access_methods_event = acce
|
|
|
77
77
|
error_message: z
|
|
78
78
|
.string()
|
|
79
79
|
.describe('Description of why the access methods could not be created.'),
|
|
80
|
+
missing_device_ids: z
|
|
81
|
+
.array(z.string().uuid())
|
|
82
|
+
.optional()
|
|
83
|
+
.describe('IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant.'),
|
|
80
84
|
}).describe(`
|
|
81
85
|
---
|
|
82
86
|
route_path: /access_grants
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-grants.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-grants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,kBAAkB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC7C,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,kCAAkC,CAAC;CAChD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,8CAA8C,GACzD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC;CAClE,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,EAAE;KACR,IAAI,EAAE;KACN,QAAQ,CACP,0HAA0H,CAC3H,CAAA;AAEH,MAAM,CAAC,MAAM,yCAAyC,GACpD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC;IAC5D,eAAe;CAChB,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,sCAAsC,GAAG,kBAAkB,CAAC,MAAM,CAC7E;IACE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;IACzD,eAAe;CAChB,CACF,CAAC,QAAQ,CAAC;;;;;GAKR,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,uCAAuC,GAClD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,mCAAmC,CAAC;IAC1D,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,4DAA4D,GACvE,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CACnB,wDAAwD,CACzD;IACD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,CAAC,6DAA6D,CAAC;
|
|
1
|
+
{"version":3,"file":"access-grants.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-grants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,kBAAkB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC7C,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,kCAAkC,CAAC;CAChD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,8CAA8C,GACzD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC;CAClE,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,EAAE;KACR,IAAI,EAAE;KACN,QAAQ,CACP,0HAA0H,CAC3H,CAAA;AAEH,MAAM,CAAC,MAAM,yCAAyC,GACpD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC;IAC5D,eAAe;CAChB,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,sCAAsC,GAAG,kBAAkB,CAAC,MAAM,CAC7E;IACE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;IACzD,eAAe;CAChB,CACF,CAAC,QAAQ,CAAC;;;;;GAKR,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,uCAAuC,GAClD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,mCAAmC,CAAC;IAC1D,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,4DAA4D,GACvE,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CACnB,wDAAwD,CACzD;IACD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CACP,kKAAkK,CACnK;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,0BAA0B;IAC1B,0BAA0B;IAC1B,8CAA8C;IAC9C,yCAAyC;IACzC,sCAAsC;IACtC,uCAAuC;IACvC,4DAA4D;CACpD,CAAA"}
|
|
@@ -1464,6 +1464,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1464
1464
|
} & {
|
|
1465
1465
|
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
1466
1466
|
error_message: z.ZodString;
|
|
1467
|
+
missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1467
1468
|
}, "strip", z.ZodTypeAny, {
|
|
1468
1469
|
workspace_id: string;
|
|
1469
1470
|
created_at: string;
|
|
@@ -1472,6 +1473,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1472
1473
|
occurred_at: string;
|
|
1473
1474
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
1474
1475
|
error_message: string;
|
|
1476
|
+
missing_device_ids?: string[] | undefined;
|
|
1475
1477
|
}, {
|
|
1476
1478
|
workspace_id: string;
|
|
1477
1479
|
created_at: string;
|
|
@@ -1480,6 +1482,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1480
1482
|
occurred_at: string;
|
|
1481
1483
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
1482
1484
|
error_message: string;
|
|
1485
|
+
missing_device_ids?: string[] | undefined;
|
|
1483
1486
|
}>, z.ZodObject<{
|
|
1484
1487
|
event_id: z.ZodString;
|
|
1485
1488
|
workspace_id: z.ZodString;
|
|
@@ -1913,6 +1913,11 @@ const openapi = {
|
|
|
1913
1913
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1914
1914
|
type: 'string',
|
|
1915
1915
|
},
|
|
1916
|
+
missing_device_ids: {
|
|
1917
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
1918
|
+
items: { format: 'uuid', type: 'string' },
|
|
1919
|
+
type: 'array',
|
|
1920
|
+
},
|
|
1916
1921
|
},
|
|
1917
1922
|
required: ['created_at', 'message', 'error_code'],
|
|
1918
1923
|
type: 'object',
|
|
@@ -16198,6 +16203,11 @@ const openapi = {
|
|
|
16198
16203
|
],
|
|
16199
16204
|
type: 'string',
|
|
16200
16205
|
},
|
|
16206
|
+
missing_device_ids: {
|
|
16207
|
+
description: 'IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant.',
|
|
16208
|
+
items: { format: 'uuid', type: 'string' },
|
|
16209
|
+
type: 'array',
|
|
16210
|
+
},
|
|
16201
16211
|
occurred_at: {
|
|
16202
16212
|
description: 'Date and time at which the event occurred.',
|
|
16203
16213
|
format: 'date-time',
|
|
@@ -32334,6 +32344,11 @@ const openapi = {
|
|
|
32334
32344
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32335
32345
|
type: 'string',
|
|
32336
32346
|
},
|
|
32347
|
+
missing_device_ids: {
|
|
32348
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
32349
|
+
items: { format: 'uuid', type: 'string' },
|
|
32350
|
+
type: 'array',
|
|
32351
|
+
},
|
|
32337
32352
|
},
|
|
32338
32353
|
required: [
|
|
32339
32354
|
'created_at',
|
|
@@ -32956,6 +32971,11 @@ const openapi = {
|
|
|
32956
32971
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32957
32972
|
type: 'string',
|
|
32958
32973
|
},
|
|
32974
|
+
missing_device_ids: {
|
|
32975
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
32976
|
+
items: { format: 'uuid', type: 'string' },
|
|
32977
|
+
type: 'array',
|
|
32978
|
+
},
|
|
32959
32979
|
},
|
|
32960
32980
|
required: [
|
|
32961
32981
|
'created_at',
|
|
@@ -33620,6 +33640,11 @@ const openapi = {
|
|
|
33620
33640
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33621
33641
|
type: 'string',
|
|
33622
33642
|
},
|
|
33643
|
+
missing_device_ids: {
|
|
33644
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
33645
|
+
items: { format: 'uuid', type: 'string' },
|
|
33646
|
+
type: 'array',
|
|
33647
|
+
},
|
|
33623
33648
|
},
|
|
33624
33649
|
required: [
|
|
33625
33650
|
'created_at',
|
|
@@ -34272,6 +34297,11 @@ const openapi = {
|
|
|
34272
34297
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
34273
34298
|
type: 'string',
|
|
34274
34299
|
},
|
|
34300
|
+
missing_device_ids: {
|
|
34301
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
34302
|
+
items: { format: 'uuid', type: 'string' },
|
|
34303
|
+
type: 'array',
|
|
34304
|
+
},
|
|
34275
34305
|
},
|
|
34276
34306
|
required: [
|
|
34277
34307
|
'created_at',
|