@seamapi/types 1.612.0 → 1.614.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 +66 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +289 -0
- package/dist/index.cjs +66 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +52 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +15 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +144 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +66 -0
- package/lib/seam/connect/openapi.js +54 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +20 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +62 -0
- package/src/lib/seam/connect/route-types.ts +110 -0
|
@@ -517,6 +517,22 @@ export declare const acs_user: z.ZodObject<{
|
|
|
517
517
|
}>, z.ZodObject<{
|
|
518
518
|
created_at: z.ZodString;
|
|
519
519
|
message: z.ZodString;
|
|
520
|
+
} & {
|
|
521
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
522
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
523
|
+
}, "strip", z.ZodTypeAny, {
|
|
524
|
+
message: string;
|
|
525
|
+
created_at: string;
|
|
526
|
+
mutation_code: "deferring_creation";
|
|
527
|
+
scheduled_at?: string | null | undefined;
|
|
528
|
+
}, {
|
|
529
|
+
message: string;
|
|
530
|
+
created_at: string;
|
|
531
|
+
mutation_code: "deferring_creation";
|
|
532
|
+
scheduled_at?: string | null | undefined;
|
|
533
|
+
}>, z.ZodObject<{
|
|
534
|
+
created_at: z.ZodString;
|
|
535
|
+
message: z.ZodString;
|
|
520
536
|
} & {
|
|
521
537
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
522
538
|
from: z.ZodObject<{
|
|
@@ -785,6 +801,11 @@ export declare const acs_user: z.ZodObject<{
|
|
|
785
801
|
message: string;
|
|
786
802
|
created_at: string;
|
|
787
803
|
mutation_code: "deleting";
|
|
804
|
+
} | {
|
|
805
|
+
message: string;
|
|
806
|
+
created_at: string;
|
|
807
|
+
mutation_code: "deferring_creation";
|
|
808
|
+
scheduled_at?: string | null | undefined;
|
|
788
809
|
} | {
|
|
789
810
|
message: string;
|
|
790
811
|
created_at: string;
|
|
@@ -907,6 +928,11 @@ export declare const acs_user: z.ZodObject<{
|
|
|
907
928
|
message: string;
|
|
908
929
|
created_at: string;
|
|
909
930
|
mutation_code: "deleting";
|
|
931
|
+
} | {
|
|
932
|
+
message: string;
|
|
933
|
+
created_at: string;
|
|
934
|
+
mutation_code: "deferring_creation";
|
|
935
|
+
scheduled_at?: string | null | undefined;
|
|
910
936
|
} | {
|
|
911
937
|
message: string;
|
|
912
938
|
created_at: string;
|
|
@@ -1140,6 +1166,22 @@ export declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
1140
1166
|
}>, z.ZodObject<{
|
|
1141
1167
|
created_at: z.ZodString;
|
|
1142
1168
|
message: z.ZodString;
|
|
1169
|
+
} & {
|
|
1170
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
1171
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1172
|
+
}, "strip", z.ZodTypeAny, {
|
|
1173
|
+
message: string;
|
|
1174
|
+
created_at: string;
|
|
1175
|
+
mutation_code: "deferring_creation";
|
|
1176
|
+
scheduled_at?: string | null | undefined;
|
|
1177
|
+
}, {
|
|
1178
|
+
message: string;
|
|
1179
|
+
created_at: string;
|
|
1180
|
+
mutation_code: "deferring_creation";
|
|
1181
|
+
scheduled_at?: string | null | undefined;
|
|
1182
|
+
}>, z.ZodObject<{
|
|
1183
|
+
created_at: z.ZodString;
|
|
1184
|
+
message: z.ZodString;
|
|
1143
1185
|
} & {
|
|
1144
1186
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
1145
1187
|
from: z.ZodObject<{
|
|
@@ -1408,6 +1450,11 @@ export declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
1408
1450
|
message: string;
|
|
1409
1451
|
created_at: string;
|
|
1410
1452
|
mutation_code: "deleting";
|
|
1453
|
+
} | {
|
|
1454
|
+
message: string;
|
|
1455
|
+
created_at: string;
|
|
1456
|
+
mutation_code: "deferring_creation";
|
|
1457
|
+
scheduled_at?: string | null | undefined;
|
|
1411
1458
|
} | {
|
|
1412
1459
|
message: string;
|
|
1413
1460
|
created_at: string;
|
|
@@ -1530,6 +1577,11 @@ export declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
1530
1577
|
message: string;
|
|
1531
1578
|
created_at: string;
|
|
1532
1579
|
mutation_code: "deleting";
|
|
1580
|
+
} | {
|
|
1581
|
+
message: string;
|
|
1582
|
+
created_at: string;
|
|
1583
|
+
mutation_code: "deferring_creation";
|
|
1584
|
+
scheduled_at?: string | null | undefined;
|
|
1533
1585
|
} | {
|
|
1534
1586
|
message: string;
|
|
1535
1587
|
created_at: string;
|
|
@@ -88,6 +88,22 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
88
88
|
}>, z.ZodObject<{
|
|
89
89
|
created_at: z.ZodString;
|
|
90
90
|
message: z.ZodString;
|
|
91
|
+
} & {
|
|
92
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
93
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
94
|
+
}, "strip", z.ZodTypeAny, {
|
|
95
|
+
message: string;
|
|
96
|
+
created_at: string;
|
|
97
|
+
mutation_code: "deferring_creation";
|
|
98
|
+
scheduled_at?: string | null | undefined;
|
|
99
|
+
}, {
|
|
100
|
+
message: string;
|
|
101
|
+
created_at: string;
|
|
102
|
+
mutation_code: "deferring_creation";
|
|
103
|
+
scheduled_at?: string | null | undefined;
|
|
104
|
+
}>, z.ZodObject<{
|
|
105
|
+
created_at: z.ZodString;
|
|
106
|
+
message: z.ZodString;
|
|
91
107
|
} & {
|
|
92
108
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
93
109
|
from: z.ZodObject<{
|
|
@@ -302,6 +318,23 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
302
318
|
created_at: string;
|
|
303
319
|
mutation_code: "deleting";
|
|
304
320
|
}>>>;
|
|
321
|
+
deferring_creation: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
322
|
+
created_at: z.ZodString;
|
|
323
|
+
message: z.ZodString;
|
|
324
|
+
} & {
|
|
325
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
326
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
327
|
+
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
message: string;
|
|
329
|
+
created_at: string;
|
|
330
|
+
mutation_code: "deferring_creation";
|
|
331
|
+
scheduled_at?: string | null | undefined;
|
|
332
|
+
}, {
|
|
333
|
+
message: string;
|
|
334
|
+
created_at: string;
|
|
335
|
+
mutation_code: "deferring_creation";
|
|
336
|
+
scheduled_at?: string | null | undefined;
|
|
337
|
+
}>>>;
|
|
305
338
|
updating_access_schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
306
339
|
created_at: z.ZodString;
|
|
307
340
|
message: z.ZodString;
|
|
@@ -563,6 +596,12 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
563
596
|
created_at: string;
|
|
564
597
|
mutation_code: "deleting";
|
|
565
598
|
} | null | undefined;
|
|
599
|
+
deferring_creation?: {
|
|
600
|
+
message: string;
|
|
601
|
+
created_at: string;
|
|
602
|
+
mutation_code: "deferring_creation";
|
|
603
|
+
scheduled_at?: string | null | undefined;
|
|
604
|
+
} | null | undefined;
|
|
566
605
|
updating_access_schedule?: {
|
|
567
606
|
message: string;
|
|
568
607
|
created_at: string;
|
|
@@ -642,6 +681,12 @@ declare const _acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
642
681
|
created_at: string;
|
|
643
682
|
mutation_code: "deleting";
|
|
644
683
|
} | null | undefined;
|
|
684
|
+
deferring_creation?: {
|
|
685
|
+
message: string;
|
|
686
|
+
created_at: string;
|
|
687
|
+
mutation_code: "deferring_creation";
|
|
688
|
+
scheduled_at?: string | null | undefined;
|
|
689
|
+
} | null | undefined;
|
|
645
690
|
updating_access_schedule?: {
|
|
646
691
|
message: string;
|
|
647
692
|
created_at: string;
|
|
@@ -21,6 +21,19 @@ const deleting = common_pending_mutation
|
|
|
21
21
|
.describe('Mutation code to indicate that Seam is in the process of pushing a user deletion to the integrated access system.'),
|
|
22
22
|
})
|
|
23
23
|
.describe('Seam is in the process of pushing a user deletion to the integrated access system.');
|
|
24
|
+
const deferring_creation = common_pending_mutation
|
|
25
|
+
.extend({
|
|
26
|
+
mutation_code: z
|
|
27
|
+
.literal('deferring_creation')
|
|
28
|
+
.describe('Mutation code to indicate that Seam is intentionally deferring the creation of the user on the access control system until the appropriate time.'),
|
|
29
|
+
scheduled_at: z
|
|
30
|
+
.string()
|
|
31
|
+
.datetime()
|
|
32
|
+
.optional()
|
|
33
|
+
.nullable()
|
|
34
|
+
.describe('Optional: When the user creation is scheduled to occur.'),
|
|
35
|
+
})
|
|
36
|
+
.describe('User exists in Seam but has not been pushed to the provider yet. Will be created when a credential is issued.');
|
|
24
37
|
const acs_user_info = z.object({
|
|
25
38
|
email_address: z
|
|
26
39
|
.string()
|
|
@@ -109,6 +122,7 @@ const updating_group_membership_mutation = common_pending_mutation
|
|
|
109
122
|
export const acs_user_pending_mutations = z.discriminatedUnion('mutation_code', [
|
|
110
123
|
creating,
|
|
111
124
|
deleting,
|
|
125
|
+
deferring_creation,
|
|
112
126
|
updating_user_information_mutation,
|
|
113
127
|
updating_access_schedule_mutation,
|
|
114
128
|
updating_suspension_state_mutation,
|
|
@@ -117,6 +131,7 @@ export const acs_user_pending_mutations = z.discriminatedUnion('mutation_code',
|
|
|
117
131
|
const _acs_user_pending_mutations_map = z.object({
|
|
118
132
|
creating: creating.optional().nullable(),
|
|
119
133
|
deleting: deleting.optional().nullable(),
|
|
134
|
+
deferring_creation: deferring_creation.optional().nullable(),
|
|
120
135
|
updating_access_schedule: updating_access_schedule_mutation
|
|
121
136
|
.optional()
|
|
122
137
|
.nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pending-mutations.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpD,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CACtE,CAAC,CAAA;AAEF,MAAM,QAAQ,GAAG,uBAAuB;KACrC,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,UAAU,CAAC;SACnB,QAAQ,CACP,mHAAmH,CACpH;CACJ,CAAC;KACD,QAAQ,CACP,oFAAoF,CACrF,CAAA;AAEH,MAAM,QAAQ,GAAG,uBAAuB;KACrC,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,UAAU,CAAC;SACnB,QAAQ,CACP,mHAAmH,CACpH;CACJ,CAAC;KACD,QAAQ,CACP,oFAAoF,CACrF,CAAA;AAEH,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;IACnD,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;CACvD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kCAAkC,GAC7C,uBAAuB,CAAC,MAAM,CAAC;IAC7B,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CACP,4HAA4H,CAC7H;IACH,IAAI,EAAE,aAAa;SAChB,OAAO,EAAE;SACT,QAAQ,CAAC,qCAAqC,CAAC;IAClD,EAAE,EAAE,aAAa,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;CAC5E,CAAC,CAAA;AAEJ,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;IACrD,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,QAAQ,CAAC,2CAA2C,CAAC,CAAA;AAExD,MAAM,iCAAiC,GAAG,uBAAuB;KAC9D,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,uIAAuI,CACxI;IACH,IAAI,EAAE,eAAe,CAAC,QAAQ,CAAC,kCAAkC,CAAC;IAClE,EAAE,EAAE,eAAe,CAAC,QAAQ,CAAC,kCAAkC,CAAC;CACjE,CAAC;KACD,QAAQ,CACP,8FAA8F,CAC/F,CAAA;AAEH,MAAM,kCAAkC,GAAG,uBAAuB;KAC/D,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CACP,6IAA6I,CAC9I;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC;SACrC,QAAQ,CAAC,wCAAwC,CAAC;IACrD,EAAE,EAAE,CAAC;SACF,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC;SACrC,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,QAAQ,CACP,8FAA8F,CAC/F,CAAA;AAEH,MAAM,kCAAkC,GAAG,uBAAuB;KAC/D,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CACP,+IAA+I,CAChJ;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,CAAC;QACN,mBAAmB,EAAE,CAAC;aACnB,MAAM,EAAE;aACR,IAAI,EAAE;aACN,QAAQ,EAAE;aACV,QAAQ,CAAC,sBAAsB,CAAC;KACpC,CAAC;SACD,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,EAAE,EAAE,CAAC;SACF,MAAM,CAAC;QACN,mBAAmB,EAAE,CAAC;aACnB,MAAM,EAAE;aACR,IAAI,EAAE;aACN,QAAQ,EAAE;aACV,QAAQ,CAAC,sBAAsB,CAAC;KACpC,CAAC;SACD,QAAQ,CAAC,8BAA8B,CAAC;CAC5C,CAAC;KACD,QAAQ,CACP,sGAAsG,CACvG,CAAA;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,kBAAkB,CAC5D,eAAe,EACf;IACE,QAAQ;IACR,QAAQ;IACR,kCAAkC;IAClC,iCAAiC;IACjC,kCAAkC;IAClC,kCAAkC;CACnC,CACF,CAAA;AAID,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACxC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACxC,wBAAwB,EAAE,iCAAiC;SACxD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yBAAyB,EAAE,CAAC;SACzB,GAAG,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE,kCAAkC,CAAC;SAC1D,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yBAAyB,EAAE,kCAAkC;SAC1D,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,qCAAqC,EAAE,uBAAuB;SAC3D,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;QACrD,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;YACb,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACjC,CAAC;QACF,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC;YACX,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACjC,CAAC;KACH,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yCAAyC,EAAE,uBAAuB;SAC/D,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;QACrD,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;YACb,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;SAC7C,CAAC;QACF,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC;YACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;SAC7C,CAAC;KACH,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,wCAAwC,EAAE,uBAAuB;SAC9D,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;QACrD,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;YACb,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;SACtC,CAAC;QACF,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC;YACX,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;SACtC,CAAC;KACH,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"pending-mutations.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpD,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CACtE,CAAC,CAAA;AAEF,MAAM,QAAQ,GAAG,uBAAuB;KACrC,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,UAAU,CAAC;SACnB,QAAQ,CACP,mHAAmH,CACpH;CACJ,CAAC;KACD,QAAQ,CACP,oFAAoF,CACrF,CAAA;AAEH,MAAM,QAAQ,GAAG,uBAAuB;KACrC,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,UAAU,CAAC;SACnB,QAAQ,CACP,mHAAmH,CACpH;CACJ,CAAC;KACD,QAAQ,CACP,oFAAoF,CACrF,CAAA;AAEH,MAAM,kBAAkB,GAAG,uBAAuB;KAC/C,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,oBAAoB,CAAC;SAC7B,QAAQ,CACP,kJAAkJ,CACnJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,yDAAyD,CAAC;CACvE,CAAC;KACD,QAAQ,CACP,+GAA+G,CAChH,CAAA;AAEH,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;IACnD,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;CACvD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kCAAkC,GAC7C,uBAAuB,CAAC,MAAM,CAAC;IAC7B,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CACP,4HAA4H,CAC7H;IACH,IAAI,EAAE,aAAa;SAChB,OAAO,EAAE;SACT,QAAQ,CAAC,qCAAqC,CAAC;IAClD,EAAE,EAAE,aAAa,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;CAC5E,CAAC,CAAA;AAEJ,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;IACrD,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,QAAQ,CAAC,2CAA2C,CAAC,CAAA;AAExD,MAAM,iCAAiC,GAAG,uBAAuB;KAC9D,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,uIAAuI,CACxI;IACH,IAAI,EAAE,eAAe,CAAC,QAAQ,CAAC,kCAAkC,CAAC;IAClE,EAAE,EAAE,eAAe,CAAC,QAAQ,CAAC,kCAAkC,CAAC;CACjE,CAAC;KACD,QAAQ,CACP,8FAA8F,CAC/F,CAAA;AAEH,MAAM,kCAAkC,GAAG,uBAAuB;KAC/D,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CACP,6IAA6I,CAC9I;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC;SACrC,QAAQ,CAAC,wCAAwC,CAAC;IACrD,EAAE,EAAE,CAAC;SACF,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC;SACrC,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,QAAQ,CACP,8FAA8F,CAC/F,CAAA;AAEH,MAAM,kCAAkC,GAAG,uBAAuB;KAC/D,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CACP,+IAA+I,CAChJ;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,CAAC;QACN,mBAAmB,EAAE,CAAC;aACnB,MAAM,EAAE;aACR,IAAI,EAAE;aACN,QAAQ,EAAE;aACV,QAAQ,CAAC,sBAAsB,CAAC;KACpC,CAAC;SACD,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,EAAE,EAAE,CAAC;SACF,MAAM,CAAC;QACN,mBAAmB,EAAE,CAAC;aACnB,MAAM,EAAE;aACR,IAAI,EAAE;aACN,QAAQ,EAAE;aACV,QAAQ,CAAC,sBAAsB,CAAC;KACpC,CAAC;SACD,QAAQ,CAAC,8BAA8B,CAAC;CAC5C,CAAC;KACD,QAAQ,CACP,sGAAsG,CACvG,CAAA;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,kBAAkB,CAC5D,eAAe,EACf;IACE,QAAQ;IACR,QAAQ;IACR,kBAAkB;IAClB,kCAAkC;IAClC,iCAAiC;IACjC,kCAAkC;IAClC,kCAAkC;CACnC,CACF,CAAA;AAID,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACxC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACxC,kBAAkB,EAAE,kBAAkB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC5D,wBAAwB,EAAE,iCAAiC;SACxD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yBAAyB,EAAE,CAAC;SACzB,GAAG,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE,kCAAkC,CAAC;SAC1D,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yBAAyB,EAAE,kCAAkC;SAC1D,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,qCAAqC,EAAE,uBAAuB;SAC3D,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;QACrD,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;YACb,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACjC,CAAC;QACF,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC;YACX,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACjC,CAAC;KACH,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yCAAyC,EAAE,uBAAuB;SAC/D,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;QACrD,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;YACb,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;SAC7C,CAAC;QACF,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC;YACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;SAC7C,CAAC;KACH,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,wCAAwC,EAAE,uBAAuB;SAC9D,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;QACrD,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;YACb,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;SACtC,CAAC;QACF,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC;YACX,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;SACtC,CAAC;KACH,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA"}
|
|
@@ -25716,6 +25716,22 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25716
25716
|
}>, z.ZodObject<{
|
|
25717
25717
|
created_at: z.ZodString;
|
|
25718
25718
|
message: z.ZodString;
|
|
25719
|
+
} & {
|
|
25720
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
25721
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25722
|
+
}, "strip", z.ZodTypeAny, {
|
|
25723
|
+
message: string;
|
|
25724
|
+
created_at: string;
|
|
25725
|
+
mutation_code: "deferring_creation";
|
|
25726
|
+
scheduled_at?: string | null | undefined;
|
|
25727
|
+
}, {
|
|
25728
|
+
message: string;
|
|
25729
|
+
created_at: string;
|
|
25730
|
+
mutation_code: "deferring_creation";
|
|
25731
|
+
scheduled_at?: string | null | undefined;
|
|
25732
|
+
}>, z.ZodObject<{
|
|
25733
|
+
created_at: z.ZodString;
|
|
25734
|
+
message: z.ZodString;
|
|
25719
25735
|
} & {
|
|
25720
25736
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
25721
25737
|
from: z.ZodObject<{
|
|
@@ -25984,6 +26000,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25984
26000
|
message: string;
|
|
25985
26001
|
created_at: string;
|
|
25986
26002
|
mutation_code: "deleting";
|
|
26003
|
+
} | {
|
|
26004
|
+
message: string;
|
|
26005
|
+
created_at: string;
|
|
26006
|
+
mutation_code: "deferring_creation";
|
|
26007
|
+
scheduled_at?: string | null | undefined;
|
|
25987
26008
|
} | {
|
|
25988
26009
|
message: string;
|
|
25989
26010
|
created_at: string;
|
|
@@ -26106,6 +26127,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26106
26127
|
message: string;
|
|
26107
26128
|
created_at: string;
|
|
26108
26129
|
mutation_code: "deleting";
|
|
26130
|
+
} | {
|
|
26131
|
+
message: string;
|
|
26132
|
+
created_at: string;
|
|
26133
|
+
mutation_code: "deferring_creation";
|
|
26134
|
+
scheduled_at?: string | null | undefined;
|
|
26109
26135
|
} | {
|
|
26110
26136
|
message: string;
|
|
26111
26137
|
created_at: string;
|
|
@@ -30928,6 +30954,22 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
30928
30954
|
}>, z.ZodObject<{
|
|
30929
30955
|
created_at: z.ZodString;
|
|
30930
30956
|
message: z.ZodString;
|
|
30957
|
+
} & {
|
|
30958
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
30959
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30960
|
+
}, "strip", z.ZodTypeAny, {
|
|
30961
|
+
message: string;
|
|
30962
|
+
created_at: string;
|
|
30963
|
+
mutation_code: "deferring_creation";
|
|
30964
|
+
scheduled_at?: string | null | undefined;
|
|
30965
|
+
}, {
|
|
30966
|
+
message: string;
|
|
30967
|
+
created_at: string;
|
|
30968
|
+
mutation_code: "deferring_creation";
|
|
30969
|
+
scheduled_at?: string | null | undefined;
|
|
30970
|
+
}>, z.ZodObject<{
|
|
30971
|
+
created_at: z.ZodString;
|
|
30972
|
+
message: z.ZodString;
|
|
30931
30973
|
} & {
|
|
30932
30974
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
30933
30975
|
from: z.ZodObject<{
|
|
@@ -31196,6 +31238,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31196
31238
|
message: string;
|
|
31197
31239
|
created_at: string;
|
|
31198
31240
|
mutation_code: "deleting";
|
|
31241
|
+
} | {
|
|
31242
|
+
message: string;
|
|
31243
|
+
created_at: string;
|
|
31244
|
+
mutation_code: "deferring_creation";
|
|
31245
|
+
scheduled_at?: string | null | undefined;
|
|
31199
31246
|
} | {
|
|
31200
31247
|
message: string;
|
|
31201
31248
|
created_at: string;
|
|
@@ -31318,6 +31365,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31318
31365
|
message: string;
|
|
31319
31366
|
created_at: string;
|
|
31320
31367
|
mutation_code: "deleting";
|
|
31368
|
+
} | {
|
|
31369
|
+
message: string;
|
|
31370
|
+
created_at: string;
|
|
31371
|
+
mutation_code: "deferring_creation";
|
|
31372
|
+
scheduled_at?: string | null | undefined;
|
|
31321
31373
|
} | {
|
|
31322
31374
|
message: string;
|
|
31323
31375
|
created_at: string;
|
|
@@ -42848,6 +42900,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42848
42900
|
message: string;
|
|
42849
42901
|
created_at: string;
|
|
42850
42902
|
mutation_code: "deleting";
|
|
42903
|
+
} | {
|
|
42904
|
+
message: string;
|
|
42905
|
+
created_at: string;
|
|
42906
|
+
mutation_code: "deferring_creation";
|
|
42907
|
+
scheduled_at?: string | null | undefined;
|
|
42851
42908
|
} | {
|
|
42852
42909
|
message: string;
|
|
42853
42910
|
created_at: string;
|
|
@@ -43856,6 +43913,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
43856
43913
|
message: string;
|
|
43857
43914
|
created_at: string;
|
|
43858
43915
|
mutation_code: "deleting";
|
|
43916
|
+
} | {
|
|
43917
|
+
message: string;
|
|
43918
|
+
created_at: string;
|
|
43919
|
+
mutation_code: "deferring_creation";
|
|
43920
|
+
scheduled_at?: string | null | undefined;
|
|
43859
43921
|
} | {
|
|
43860
43922
|
message: string;
|
|
43861
43923
|
created_at: string;
|
|
@@ -46838,6 +46900,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46838
46900
|
message: string;
|
|
46839
46901
|
created_at: string;
|
|
46840
46902
|
mutation_code: "deleting";
|
|
46903
|
+
} | {
|
|
46904
|
+
message: string;
|
|
46905
|
+
created_at: string;
|
|
46906
|
+
mutation_code: "deferring_creation";
|
|
46907
|
+
scheduled_at?: string | null | undefined;
|
|
46841
46908
|
} | {
|
|
46842
46909
|
message: string;
|
|
46843
46910
|
created_at: string;
|
|
@@ -47846,6 +47913,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
47846
47913
|
message: string;
|
|
47847
47914
|
created_at: string;
|
|
47848
47915
|
mutation_code: "deleting";
|
|
47916
|
+
} | {
|
|
47917
|
+
message: string;
|
|
47918
|
+
created_at: string;
|
|
47919
|
+
mutation_code: "deferring_creation";
|
|
47920
|
+
scheduled_at?: string | null | undefined;
|
|
47849
47921
|
} | {
|
|
47850
47922
|
message: string;
|
|
47851
47923
|
created_at: string;
|
|
@@ -54883,6 +54955,22 @@ export declare const batch: z.ZodObject<{
|
|
|
54883
54955
|
}>, z.ZodObject<{
|
|
54884
54956
|
created_at: z.ZodString;
|
|
54885
54957
|
message: z.ZodString;
|
|
54958
|
+
} & {
|
|
54959
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
54960
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
54961
|
+
}, "strip", z.ZodTypeAny, {
|
|
54962
|
+
message: string;
|
|
54963
|
+
created_at: string;
|
|
54964
|
+
mutation_code: "deferring_creation";
|
|
54965
|
+
scheduled_at?: string | null | undefined;
|
|
54966
|
+
}, {
|
|
54967
|
+
message: string;
|
|
54968
|
+
created_at: string;
|
|
54969
|
+
mutation_code: "deferring_creation";
|
|
54970
|
+
scheduled_at?: string | null | undefined;
|
|
54971
|
+
}>, z.ZodObject<{
|
|
54972
|
+
created_at: z.ZodString;
|
|
54973
|
+
message: z.ZodString;
|
|
54886
54974
|
} & {
|
|
54887
54975
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
54888
54976
|
from: z.ZodObject<{
|
|
@@ -55151,6 +55239,11 @@ export declare const batch: z.ZodObject<{
|
|
|
55151
55239
|
message: string;
|
|
55152
55240
|
created_at: string;
|
|
55153
55241
|
mutation_code: "deleting";
|
|
55242
|
+
} | {
|
|
55243
|
+
message: string;
|
|
55244
|
+
created_at: string;
|
|
55245
|
+
mutation_code: "deferring_creation";
|
|
55246
|
+
scheduled_at?: string | null | undefined;
|
|
55154
55247
|
} | {
|
|
55155
55248
|
message: string;
|
|
55156
55249
|
created_at: string;
|
|
@@ -55273,6 +55366,11 @@ export declare const batch: z.ZodObject<{
|
|
|
55273
55366
|
message: string;
|
|
55274
55367
|
created_at: string;
|
|
55275
55368
|
mutation_code: "deleting";
|
|
55369
|
+
} | {
|
|
55370
|
+
message: string;
|
|
55371
|
+
created_at: string;
|
|
55372
|
+
mutation_code: "deferring_creation";
|
|
55373
|
+
scheduled_at?: string | null | undefined;
|
|
55276
55374
|
} | {
|
|
55277
55375
|
message: string;
|
|
55278
55376
|
created_at: string;
|
|
@@ -60095,6 +60193,22 @@ export declare const batch: z.ZodObject<{
|
|
|
60095
60193
|
}>, z.ZodObject<{
|
|
60096
60194
|
created_at: z.ZodString;
|
|
60097
60195
|
message: z.ZodString;
|
|
60196
|
+
} & {
|
|
60197
|
+
mutation_code: z.ZodLiteral<"deferring_creation">;
|
|
60198
|
+
scheduled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
60199
|
+
}, "strip", z.ZodTypeAny, {
|
|
60200
|
+
message: string;
|
|
60201
|
+
created_at: string;
|
|
60202
|
+
mutation_code: "deferring_creation";
|
|
60203
|
+
scheduled_at?: string | null | undefined;
|
|
60204
|
+
}, {
|
|
60205
|
+
message: string;
|
|
60206
|
+
created_at: string;
|
|
60207
|
+
mutation_code: "deferring_creation";
|
|
60208
|
+
scheduled_at?: string | null | undefined;
|
|
60209
|
+
}>, z.ZodObject<{
|
|
60210
|
+
created_at: z.ZodString;
|
|
60211
|
+
message: z.ZodString;
|
|
60098
60212
|
} & {
|
|
60099
60213
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
60100
60214
|
from: z.ZodObject<{
|
|
@@ -60363,6 +60477,11 @@ export declare const batch: z.ZodObject<{
|
|
|
60363
60477
|
message: string;
|
|
60364
60478
|
created_at: string;
|
|
60365
60479
|
mutation_code: "deleting";
|
|
60480
|
+
} | {
|
|
60481
|
+
message: string;
|
|
60482
|
+
created_at: string;
|
|
60483
|
+
mutation_code: "deferring_creation";
|
|
60484
|
+
scheduled_at?: string | null | undefined;
|
|
60366
60485
|
} | {
|
|
60367
60486
|
message: string;
|
|
60368
60487
|
created_at: string;
|
|
@@ -60485,6 +60604,11 @@ export declare const batch: z.ZodObject<{
|
|
|
60485
60604
|
message: string;
|
|
60486
60605
|
created_at: string;
|
|
60487
60606
|
mutation_code: "deleting";
|
|
60607
|
+
} | {
|
|
60608
|
+
message: string;
|
|
60609
|
+
created_at: string;
|
|
60610
|
+
mutation_code: "deferring_creation";
|
|
60611
|
+
scheduled_at?: string | null | undefined;
|
|
60488
60612
|
} | {
|
|
60489
60613
|
message: string;
|
|
60490
60614
|
created_at: string;
|
|
@@ -71574,6 +71698,11 @@ export declare const batch: z.ZodObject<{
|
|
|
71574
71698
|
message: string;
|
|
71575
71699
|
created_at: string;
|
|
71576
71700
|
mutation_code: "deleting";
|
|
71701
|
+
} | {
|
|
71702
|
+
message: string;
|
|
71703
|
+
created_at: string;
|
|
71704
|
+
mutation_code: "deferring_creation";
|
|
71705
|
+
scheduled_at?: string | null | undefined;
|
|
71577
71706
|
} | {
|
|
71578
71707
|
message: string;
|
|
71579
71708
|
created_at: string;
|
|
@@ -72582,6 +72711,11 @@ export declare const batch: z.ZodObject<{
|
|
|
72582
72711
|
message: string;
|
|
72583
72712
|
created_at: string;
|
|
72584
72713
|
mutation_code: "deleting";
|
|
72714
|
+
} | {
|
|
72715
|
+
message: string;
|
|
72716
|
+
created_at: string;
|
|
72717
|
+
mutation_code: "deferring_creation";
|
|
72718
|
+
scheduled_at?: string | null | undefined;
|
|
72585
72719
|
} | {
|
|
72586
72720
|
message: string;
|
|
72587
72721
|
created_at: string;
|
|
@@ -75495,6 +75629,11 @@ export declare const batch: z.ZodObject<{
|
|
|
75495
75629
|
message: string;
|
|
75496
75630
|
created_at: string;
|
|
75497
75631
|
mutation_code: "deleting";
|
|
75632
|
+
} | {
|
|
75633
|
+
message: string;
|
|
75634
|
+
created_at: string;
|
|
75635
|
+
mutation_code: "deferring_creation";
|
|
75636
|
+
scheduled_at?: string | null | undefined;
|
|
75498
75637
|
} | {
|
|
75499
75638
|
message: string;
|
|
75500
75639
|
created_at: string;
|
|
@@ -76503,6 +76642,11 @@ export declare const batch: z.ZodObject<{
|
|
|
76503
76642
|
message: string;
|
|
76504
76643
|
created_at: string;
|
|
76505
76644
|
mutation_code: "deleting";
|
|
76645
|
+
} | {
|
|
76646
|
+
message: string;
|
|
76647
|
+
created_at: string;
|
|
76648
|
+
mutation_code: "deferring_creation";
|
|
76649
|
+
scheduled_at?: string | null | undefined;
|
|
76506
76650
|
} | {
|
|
76507
76651
|
message: string;
|
|
76508
76652
|
created_at: string;
|
|
@@ -59,7 +59,7 @@ export declare const ALL_DEVICE_PROVIDERS: [
|
|
|
59
59
|
];
|
|
60
60
|
export type ProviderCategory = keyof typeof PROVIDER_CATEGORY_MAP;
|
|
61
61
|
export declare const PROVIDER_CATEGORY_MAP: {
|
|
62
|
-
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto_ks", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "latch", "akiles", "sensi", "assa_abloy_vostio", "avigilon_alta"];
|
|
62
|
+
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto_ks", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "latch", "akiles", "sensi", "assa_abloy_vostio", "avigilon_alta", "keynest"];
|
|
63
63
|
readonly consumer_smartlocks: readonly ["akiles", "august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee"];
|
|
64
64
|
readonly thermostats: readonly ["ecobee", "nest", "sensi", "honeywell_resideo"];
|
|
65
65
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,OAAO;IACd,mBAAmB,EAAE,qBAAqB;IAC1C,aAAa,EAAE,eAAe;IAC9B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,gBAAgB,EAAE,kBAAkB;IACpC,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,cAAc;IAC5B,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,6BAA6B,EAAE,+BAA+B;IAC9D,KAAK,EAAE,OAAO;IACd,iBAAiB,EAAE,mBAAmB;IACtC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,mBAAmB;IAC3B,oCAAoC,EAAE,sCAAsC;IAC5E,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,kBAAkB,EAAE,oBAAoB;IACxC,QAAQ,EAAE,UAAU;CACZ,CAAA;AAKV,MAAM,CAAC,MAAM,oBAAoB,GAG7B,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAQ,CAAA;AAI1C,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,MAAM,EAAE;QACN,QAAQ;QACR,OAAO;QACP,SAAS;QACT,aAAa;QACb,MAAM;QACN,MAAM;QACN,UAAU;QACV,aAAa;QACb,OAAO;QACP,OAAO;QACP,SAAS;QACT,QAAQ;QACR,YAAY;QACZ,WAAW;QACX,QAAQ;QACR,QAAQ;QACR,MAAM;QACN,MAAM;QACN,OAAO;QACP,mBAAmB;QACnB,YAAY;QACZ,+BAA+B;QAC/B,OAAO;QACP,QAAQ;QACR,OAAO;QACP,mBAAmB;QACnB,eAAe;
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -1761,6 +1761,35 @@ declare const _default: {
|
|
|
1761
1761
|
enum: string[];
|
|
1762
1762
|
type: string;
|
|
1763
1763
|
};
|
|
1764
|
+
scheduled_at?: never;
|
|
1765
|
+
from?: never;
|
|
1766
|
+
to?: never;
|
|
1767
|
+
};
|
|
1768
|
+
required: string[];
|
|
1769
|
+
type: string;
|
|
1770
|
+
} | {
|
|
1771
|
+
description: string;
|
|
1772
|
+
properties: {
|
|
1773
|
+
created_at: {
|
|
1774
|
+
description: string;
|
|
1775
|
+
format: string;
|
|
1776
|
+
type: string;
|
|
1777
|
+
};
|
|
1778
|
+
message: {
|
|
1779
|
+
description: string;
|
|
1780
|
+
type: string;
|
|
1781
|
+
};
|
|
1782
|
+
mutation_code: {
|
|
1783
|
+
description: string;
|
|
1784
|
+
enum: string[];
|
|
1785
|
+
type: string;
|
|
1786
|
+
};
|
|
1787
|
+
scheduled_at: {
|
|
1788
|
+
description: string;
|
|
1789
|
+
format: string;
|
|
1790
|
+
nullable: boolean;
|
|
1791
|
+
type: string;
|
|
1792
|
+
};
|
|
1764
1793
|
from?: never;
|
|
1765
1794
|
to?: never;
|
|
1766
1795
|
};
|
|
@@ -1836,6 +1865,7 @@ declare const _default: {
|
|
|
1836
1865
|
type: string;
|
|
1837
1866
|
required?: never;
|
|
1838
1867
|
};
|
|
1868
|
+
scheduled_at?: never;
|
|
1839
1869
|
};
|
|
1840
1870
|
required: string[];
|
|
1841
1871
|
type: string;
|
|
@@ -1905,6 +1935,7 @@ declare const _default: {
|
|
|
1905
1935
|
required: string[];
|
|
1906
1936
|
type: string;
|
|
1907
1937
|
};
|
|
1938
|
+
scheduled_at?: never;
|
|
1908
1939
|
};
|
|
1909
1940
|
required: string[];
|
|
1910
1941
|
type: string;
|
|
@@ -1957,6 +1988,7 @@ declare const _default: {
|
|
|
1957
1988
|
required: string[];
|
|
1958
1989
|
type: string;
|
|
1959
1990
|
};
|
|
1991
|
+
scheduled_at?: never;
|
|
1960
1992
|
};
|
|
1961
1993
|
required: string[];
|
|
1962
1994
|
type: string;
|
|
@@ -2015,6 +2047,7 @@ declare const _default: {
|
|
|
2015
2047
|
required: string[];
|
|
2016
2048
|
type: string;
|
|
2017
2049
|
};
|
|
2050
|
+
scheduled_at?: never;
|
|
2018
2051
|
};
|
|
2019
2052
|
required: string[];
|
|
2020
2053
|
type: string;
|
|
@@ -13204,6 +13237,35 @@ declare const _default: {
|
|
|
13204
13237
|
enum: string[];
|
|
13205
13238
|
type: string;
|
|
13206
13239
|
};
|
|
13240
|
+
scheduled_at?: never;
|
|
13241
|
+
from?: never;
|
|
13242
|
+
to?: never;
|
|
13243
|
+
};
|
|
13244
|
+
required: string[];
|
|
13245
|
+
type: string;
|
|
13246
|
+
} | {
|
|
13247
|
+
description: string;
|
|
13248
|
+
properties: {
|
|
13249
|
+
created_at: {
|
|
13250
|
+
description: string;
|
|
13251
|
+
format: string;
|
|
13252
|
+
type: string;
|
|
13253
|
+
};
|
|
13254
|
+
message: {
|
|
13255
|
+
description: string;
|
|
13256
|
+
type: string;
|
|
13257
|
+
};
|
|
13258
|
+
mutation_code: {
|
|
13259
|
+
description: string;
|
|
13260
|
+
enum: string[];
|
|
13261
|
+
type: string;
|
|
13262
|
+
};
|
|
13263
|
+
scheduled_at: {
|
|
13264
|
+
description: string;
|
|
13265
|
+
format: string;
|
|
13266
|
+
nullable: boolean;
|
|
13267
|
+
type: string;
|
|
13268
|
+
};
|
|
13207
13269
|
from?: never;
|
|
13208
13270
|
to?: never;
|
|
13209
13271
|
};
|
|
@@ -13279,6 +13341,7 @@ declare const _default: {
|
|
|
13279
13341
|
type: string;
|
|
13280
13342
|
required?: never;
|
|
13281
13343
|
};
|
|
13344
|
+
scheduled_at?: never;
|
|
13282
13345
|
};
|
|
13283
13346
|
required: string[];
|
|
13284
13347
|
type: string;
|
|
@@ -13348,6 +13411,7 @@ declare const _default: {
|
|
|
13348
13411
|
required: string[];
|
|
13349
13412
|
type: string;
|
|
13350
13413
|
};
|
|
13414
|
+
scheduled_at?: never;
|
|
13351
13415
|
};
|
|
13352
13416
|
required: string[];
|
|
13353
13417
|
type: string;
|
|
@@ -13400,6 +13464,7 @@ declare const _default: {
|
|
|
13400
13464
|
required: string[];
|
|
13401
13465
|
type: string;
|
|
13402
13466
|
};
|
|
13467
|
+
scheduled_at?: never;
|
|
13403
13468
|
};
|
|
13404
13469
|
required: string[];
|
|
13405
13470
|
type: string;
|
|
@@ -13458,6 +13523,7 @@ declare const _default: {
|
|
|
13458
13523
|
required: string[];
|
|
13459
13524
|
type: string;
|
|
13460
13525
|
};
|
|
13526
|
+
scheduled_at?: never;
|
|
13461
13527
|
};
|
|
13462
13528
|
required: string[];
|
|
13463
13529
|
type: string;
|