@seamapi/types 1.555.0 → 1.557.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 +30 -93
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -294
- package/dist/index.cjs +30 -93
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +24 -110
- package/lib/seam/connect/models/events/access-methods.d.ts +4 -71
- package/lib/seam/connect/models/events/access-methods.js +2 -22
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -36
- package/lib/seam/connect/models/workspaces/workspace.d.ts +6 -0
- package/lib/seam/connect/models/workspaces/workspace.js +7 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -110
- package/lib/seam/connect/openapi.js +18 -69
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +26 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-methods.ts +2 -29
- package/src/lib/seam/connect/models/workspaces/workspace.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +22 -74
- package/src/lib/seam/connect/route-types.ts +22 -99
|
@@ -20209,6 +20209,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
20209
20209
|
}>;
|
|
20210
20210
|
is_suspended: z.ZodBoolean;
|
|
20211
20211
|
connect_partner_name: z.ZodNullable<z.ZodNullable<z.ZodString>>;
|
|
20212
|
+
publishable_key: z.ZodOptional<z.ZodString>;
|
|
20213
|
+
is_publishable_key_auth_enabled: z.ZodBoolean;
|
|
20212
20214
|
}, "strip", z.ZodTypeAny, {
|
|
20213
20215
|
name: string;
|
|
20214
20216
|
workspace_id: string;
|
|
@@ -20223,6 +20225,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
20223
20225
|
inviter_logo_url?: string | undefined;
|
|
20224
20226
|
};
|
|
20225
20227
|
connect_partner_name: string | null;
|
|
20228
|
+
is_publishable_key_auth_enabled: boolean;
|
|
20229
|
+
publishable_key?: string | undefined;
|
|
20226
20230
|
}, {
|
|
20227
20231
|
name: string;
|
|
20228
20232
|
workspace_id: string;
|
|
@@ -20237,6 +20241,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
20237
20241
|
inviter_logo_url?: string | undefined;
|
|
20238
20242
|
};
|
|
20239
20243
|
connect_partner_name: string | null;
|
|
20244
|
+
is_publishable_key_auth_enabled: boolean;
|
|
20245
|
+
publishable_key?: string | undefined;
|
|
20240
20246
|
}>, "many">>;
|
|
20241
20247
|
spaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20242
20248
|
space_id: z.ZodString;
|
|
@@ -35864,14 +35870,13 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35864
35870
|
workspace_id: z.ZodString;
|
|
35865
35871
|
created_at: z.ZodString;
|
|
35866
35872
|
occurred_at: z.ZodString;
|
|
35867
|
-
} & {
|
|
35868
35873
|
access_method_id: z.ZodString;
|
|
35869
35874
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
35870
35875
|
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
35871
|
-
} & {
|
|
35872
|
-
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
35873
35876
|
code: z.ZodOptional<z.ZodString>;
|
|
35874
35877
|
is_backup_code: z.ZodOptional<z.ZodBoolean>;
|
|
35878
|
+
} & {
|
|
35879
|
+
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
35875
35880
|
}, "strip", z.ZodTypeAny, {
|
|
35876
35881
|
workspace_id: string;
|
|
35877
35882
|
created_at: string;
|
|
@@ -35899,38 +35904,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35899
35904
|
workspace_id: z.ZodString;
|
|
35900
35905
|
created_at: z.ZodString;
|
|
35901
35906
|
occurred_at: z.ZodString;
|
|
35902
|
-
} & {
|
|
35903
|
-
access_method_id: z.ZodString;
|
|
35904
|
-
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
35905
|
-
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
35906
|
-
} & {
|
|
35907
|
-
event_type: z.ZodLiteral<"access_method.code_changed">;
|
|
35908
|
-
code: z.ZodString;
|
|
35909
|
-
}, "strip", z.ZodTypeAny, {
|
|
35910
|
-
code: string;
|
|
35911
|
-
workspace_id: string;
|
|
35912
|
-
created_at: string;
|
|
35913
|
-
access_method_id: string;
|
|
35914
|
-
event_id: string;
|
|
35915
|
-
occurred_at: string;
|
|
35916
|
-
event_type: "access_method.code_changed";
|
|
35917
|
-
access_grant_ids: string[];
|
|
35918
|
-
access_grant_keys?: string[] | undefined;
|
|
35919
|
-
}, {
|
|
35920
|
-
code: string;
|
|
35921
|
-
workspace_id: string;
|
|
35922
|
-
created_at: string;
|
|
35923
|
-
access_method_id: string;
|
|
35924
|
-
event_id: string;
|
|
35925
|
-
occurred_at: string;
|
|
35926
|
-
event_type: "access_method.code_changed";
|
|
35927
|
-
access_grant_ids: string[];
|
|
35928
|
-
access_grant_keys?: string[] | undefined;
|
|
35929
|
-
}>, z.ZodObject<{
|
|
35930
|
-
event_id: z.ZodString;
|
|
35931
|
-
workspace_id: z.ZodString;
|
|
35932
|
-
created_at: z.ZodString;
|
|
35933
|
-
occurred_at: z.ZodString;
|
|
35934
35907
|
} & {
|
|
35935
35908
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
35936
35909
|
acs_system_id: z.ZodString;
|
|
@@ -42217,6 +42190,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42217
42190
|
inviter_logo_url?: string | undefined;
|
|
42218
42191
|
};
|
|
42219
42192
|
connect_partner_name: string | null;
|
|
42193
|
+
is_publishable_key_auth_enabled: boolean;
|
|
42194
|
+
publishable_key?: string | undefined;
|
|
42220
42195
|
}[] | undefined;
|
|
42221
42196
|
acs_users?: {
|
|
42222
42197
|
display_name: string;
|
|
@@ -43919,16 +43894,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
43919
43894
|
code?: string | undefined;
|
|
43920
43895
|
access_grant_keys?: string[] | undefined;
|
|
43921
43896
|
is_backup_code?: boolean | undefined;
|
|
43922
|
-
} | {
|
|
43923
|
-
code: string;
|
|
43924
|
-
workspace_id: string;
|
|
43925
|
-
created_at: string;
|
|
43926
|
-
access_method_id: string;
|
|
43927
|
-
event_id: string;
|
|
43928
|
-
occurred_at: string;
|
|
43929
|
-
event_type: "access_method.code_changed";
|
|
43930
|
-
access_grant_ids: string[];
|
|
43931
|
-
access_grant_keys?: string[] | undefined;
|
|
43932
43897
|
} | {
|
|
43933
43898
|
workspace_id: string;
|
|
43934
43899
|
created_at: string;
|
|
@@ -46201,6 +46166,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46201
46166
|
inviter_logo_url?: string | undefined;
|
|
46202
46167
|
};
|
|
46203
46168
|
connect_partner_name: string | null;
|
|
46169
|
+
is_publishable_key_auth_enabled: boolean;
|
|
46170
|
+
publishable_key?: string | undefined;
|
|
46204
46171
|
}[] | undefined;
|
|
46205
46172
|
acs_users?: {
|
|
46206
46173
|
display_name: string;
|
|
@@ -47903,16 +47870,6 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
47903
47870
|
code?: string | undefined;
|
|
47904
47871
|
access_grant_keys?: string[] | undefined;
|
|
47905
47872
|
is_backup_code?: boolean | undefined;
|
|
47906
|
-
} | {
|
|
47907
|
-
code: string;
|
|
47908
|
-
workspace_id: string;
|
|
47909
|
-
created_at: string;
|
|
47910
|
-
access_method_id: string;
|
|
47911
|
-
event_id: string;
|
|
47912
|
-
occurred_at: string;
|
|
47913
|
-
event_type: "access_method.code_changed";
|
|
47914
|
-
access_grant_ids: string[];
|
|
47915
|
-
access_grant_keys?: string[] | undefined;
|
|
47916
47873
|
} | {
|
|
47917
47874
|
workspace_id: string;
|
|
47918
47875
|
created_at: string;
|
|
@@ -49330,6 +49287,8 @@ export declare const batch: z.ZodObject<{
|
|
|
49330
49287
|
}>;
|
|
49331
49288
|
is_suspended: z.ZodBoolean;
|
|
49332
49289
|
connect_partner_name: z.ZodNullable<z.ZodNullable<z.ZodString>>;
|
|
49290
|
+
publishable_key: z.ZodOptional<z.ZodString>;
|
|
49291
|
+
is_publishable_key_auth_enabled: z.ZodBoolean;
|
|
49333
49292
|
}, "strip", z.ZodTypeAny, {
|
|
49334
49293
|
name: string;
|
|
49335
49294
|
workspace_id: string;
|
|
@@ -49344,6 +49303,8 @@ export declare const batch: z.ZodObject<{
|
|
|
49344
49303
|
inviter_logo_url?: string | undefined;
|
|
49345
49304
|
};
|
|
49346
49305
|
connect_partner_name: string | null;
|
|
49306
|
+
is_publishable_key_auth_enabled: boolean;
|
|
49307
|
+
publishable_key?: string | undefined;
|
|
49347
49308
|
}, {
|
|
49348
49309
|
name: string;
|
|
49349
49310
|
workspace_id: string;
|
|
@@ -49358,6 +49319,8 @@ export declare const batch: z.ZodObject<{
|
|
|
49358
49319
|
inviter_logo_url?: string | undefined;
|
|
49359
49320
|
};
|
|
49360
49321
|
connect_partner_name: string | null;
|
|
49322
|
+
is_publishable_key_auth_enabled: boolean;
|
|
49323
|
+
publishable_key?: string | undefined;
|
|
49361
49324
|
}>, "many">>;
|
|
49362
49325
|
spaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49363
49326
|
space_id: z.ZodString;
|
|
@@ -64603,14 +64566,13 @@ export declare const batch: z.ZodObject<{
|
|
|
64603
64566
|
workspace_id: z.ZodString;
|
|
64604
64567
|
created_at: z.ZodString;
|
|
64605
64568
|
occurred_at: z.ZodString;
|
|
64606
|
-
} & {
|
|
64607
64569
|
access_method_id: z.ZodString;
|
|
64608
64570
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
64609
64571
|
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
64610
|
-
} & {
|
|
64611
|
-
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
64612
64572
|
code: z.ZodOptional<z.ZodString>;
|
|
64613
64573
|
is_backup_code: z.ZodOptional<z.ZodBoolean>;
|
|
64574
|
+
} & {
|
|
64575
|
+
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
64614
64576
|
}, "strip", z.ZodTypeAny, {
|
|
64615
64577
|
workspace_id: string;
|
|
64616
64578
|
created_at: string;
|
|
@@ -64638,38 +64600,6 @@ export declare const batch: z.ZodObject<{
|
|
|
64638
64600
|
workspace_id: z.ZodString;
|
|
64639
64601
|
created_at: z.ZodString;
|
|
64640
64602
|
occurred_at: z.ZodString;
|
|
64641
|
-
} & {
|
|
64642
|
-
access_method_id: z.ZodString;
|
|
64643
|
-
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
64644
|
-
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
64645
|
-
} & {
|
|
64646
|
-
event_type: z.ZodLiteral<"access_method.code_changed">;
|
|
64647
|
-
code: z.ZodString;
|
|
64648
|
-
}, "strip", z.ZodTypeAny, {
|
|
64649
|
-
code: string;
|
|
64650
|
-
workspace_id: string;
|
|
64651
|
-
created_at: string;
|
|
64652
|
-
access_method_id: string;
|
|
64653
|
-
event_id: string;
|
|
64654
|
-
occurred_at: string;
|
|
64655
|
-
event_type: "access_method.code_changed";
|
|
64656
|
-
access_grant_ids: string[];
|
|
64657
|
-
access_grant_keys?: string[] | undefined;
|
|
64658
|
-
}, {
|
|
64659
|
-
code: string;
|
|
64660
|
-
workspace_id: string;
|
|
64661
|
-
created_at: string;
|
|
64662
|
-
access_method_id: string;
|
|
64663
|
-
event_id: string;
|
|
64664
|
-
occurred_at: string;
|
|
64665
|
-
event_type: "access_method.code_changed";
|
|
64666
|
-
access_grant_ids: string[];
|
|
64667
|
-
access_grant_keys?: string[] | undefined;
|
|
64668
|
-
}>, z.ZodObject<{
|
|
64669
|
-
event_id: z.ZodString;
|
|
64670
|
-
workspace_id: z.ZodString;
|
|
64671
|
-
created_at: z.ZodString;
|
|
64672
|
-
occurred_at: z.ZodString;
|
|
64673
64603
|
} & {
|
|
64674
64604
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
64675
64605
|
acs_system_id: z.ZodString;
|
|
@@ -70885,6 +70815,8 @@ export declare const batch: z.ZodObject<{
|
|
|
70885
70815
|
inviter_logo_url?: string | undefined;
|
|
70886
70816
|
};
|
|
70887
70817
|
connect_partner_name: string | null;
|
|
70818
|
+
is_publishable_key_auth_enabled: boolean;
|
|
70819
|
+
publishable_key?: string | undefined;
|
|
70888
70820
|
}[] | undefined;
|
|
70889
70821
|
acs_users?: {
|
|
70890
70822
|
display_name: string;
|
|
@@ -72587,16 +72519,6 @@ export declare const batch: z.ZodObject<{
|
|
|
72587
72519
|
code?: string | undefined;
|
|
72588
72520
|
access_grant_keys?: string[] | undefined;
|
|
72589
72521
|
is_backup_code?: boolean | undefined;
|
|
72590
|
-
} | {
|
|
72591
|
-
code: string;
|
|
72592
|
-
workspace_id: string;
|
|
72593
|
-
created_at: string;
|
|
72594
|
-
access_method_id: string;
|
|
72595
|
-
event_id: string;
|
|
72596
|
-
occurred_at: string;
|
|
72597
|
-
event_type: "access_method.code_changed";
|
|
72598
|
-
access_grant_ids: string[];
|
|
72599
|
-
access_grant_keys?: string[] | undefined;
|
|
72600
72522
|
} | {
|
|
72601
72523
|
workspace_id: string;
|
|
72602
72524
|
created_at: string;
|
|
@@ -74798,6 +74720,8 @@ export declare const batch: z.ZodObject<{
|
|
|
74798
74720
|
inviter_logo_url?: string | undefined;
|
|
74799
74721
|
};
|
|
74800
74722
|
connect_partner_name: string | null;
|
|
74723
|
+
is_publishable_key_auth_enabled: boolean;
|
|
74724
|
+
publishable_key?: string | undefined;
|
|
74801
74725
|
}[] | undefined;
|
|
74802
74726
|
acs_users?: {
|
|
74803
74727
|
display_name: string;
|
|
@@ -76500,16 +76424,6 @@ export declare const batch: z.ZodObject<{
|
|
|
76500
76424
|
code?: string | undefined;
|
|
76501
76425
|
access_grant_keys?: string[] | undefined;
|
|
76502
76426
|
is_backup_code?: boolean | undefined;
|
|
76503
|
-
} | {
|
|
76504
|
-
code: string;
|
|
76505
|
-
workspace_id: string;
|
|
76506
|
-
created_at: string;
|
|
76507
|
-
access_method_id: string;
|
|
76508
|
-
event_id: string;
|
|
76509
|
-
occurred_at: string;
|
|
76510
|
-
event_type: "access_method.code_changed";
|
|
76511
|
-
access_grant_ids: string[];
|
|
76512
|
-
access_grant_keys?: string[] | undefined;
|
|
76513
76427
|
} | {
|
|
76514
76428
|
workspace_id: string;
|
|
76515
76429
|
created_at: string;
|
|
@@ -132,14 +132,13 @@ export declare const access_method_reissued_event: z.ZodObject<{
|
|
|
132
132
|
workspace_id: z.ZodString;
|
|
133
133
|
created_at: z.ZodString;
|
|
134
134
|
occurred_at: z.ZodString;
|
|
135
|
-
} & {
|
|
136
135
|
access_method_id: z.ZodString;
|
|
137
136
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
138
137
|
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
139
|
-
} & {
|
|
140
|
-
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
141
138
|
code: z.ZodOptional<z.ZodString>;
|
|
142
139
|
is_backup_code: z.ZodOptional<z.ZodBoolean>;
|
|
140
|
+
} & {
|
|
141
|
+
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
143
142
|
}, "strip", z.ZodTypeAny, {
|
|
144
143
|
workspace_id: string;
|
|
145
144
|
created_at: string;
|
|
@@ -163,39 +162,6 @@ export declare const access_method_reissued_event: z.ZodObject<{
|
|
|
163
162
|
access_grant_keys?: string[] | undefined;
|
|
164
163
|
is_backup_code?: boolean | undefined;
|
|
165
164
|
}>;
|
|
166
|
-
export declare const access_method_code_changed_event: z.ZodObject<{
|
|
167
|
-
event_id: z.ZodString;
|
|
168
|
-
workspace_id: z.ZodString;
|
|
169
|
-
created_at: z.ZodString;
|
|
170
|
-
occurred_at: z.ZodString;
|
|
171
|
-
} & {
|
|
172
|
-
access_method_id: z.ZodString;
|
|
173
|
-
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
174
|
-
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
175
|
-
} & {
|
|
176
|
-
event_type: z.ZodLiteral<"access_method.code_changed">;
|
|
177
|
-
code: z.ZodString;
|
|
178
|
-
}, "strip", z.ZodTypeAny, {
|
|
179
|
-
code: string;
|
|
180
|
-
workspace_id: string;
|
|
181
|
-
created_at: string;
|
|
182
|
-
access_method_id: string;
|
|
183
|
-
event_id: string;
|
|
184
|
-
occurred_at: string;
|
|
185
|
-
event_type: "access_method.code_changed";
|
|
186
|
-
access_grant_ids: string[];
|
|
187
|
-
access_grant_keys?: string[] | undefined;
|
|
188
|
-
}, {
|
|
189
|
-
code: string;
|
|
190
|
-
workspace_id: string;
|
|
191
|
-
created_at: string;
|
|
192
|
-
access_method_id: string;
|
|
193
|
-
event_id: string;
|
|
194
|
-
occurred_at: string;
|
|
195
|
-
event_type: "access_method.code_changed";
|
|
196
|
-
access_grant_ids: string[];
|
|
197
|
-
access_grant_keys?: string[] | undefined;
|
|
198
|
-
}>;
|
|
199
165
|
export type AccessMethodRevokedEvent = z.infer<typeof access_method_revoked_event>;
|
|
200
166
|
export declare const access_method_events: readonly [z.ZodObject<{
|
|
201
167
|
event_id: z.ZodString;
|
|
@@ -324,14 +290,13 @@ export declare const access_method_events: readonly [z.ZodObject<{
|
|
|
324
290
|
workspace_id: z.ZodString;
|
|
325
291
|
created_at: z.ZodString;
|
|
326
292
|
occurred_at: z.ZodString;
|
|
327
|
-
} & {
|
|
328
293
|
access_method_id: z.ZodString;
|
|
329
294
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
330
295
|
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
331
|
-
} & {
|
|
332
|
-
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
333
296
|
code: z.ZodOptional<z.ZodString>;
|
|
334
297
|
is_backup_code: z.ZodOptional<z.ZodBoolean>;
|
|
298
|
+
} & {
|
|
299
|
+
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
335
300
|
}, "strip", z.ZodTypeAny, {
|
|
336
301
|
workspace_id: string;
|
|
337
302
|
created_at: string;
|
|
@@ -354,36 +319,4 @@ export declare const access_method_events: readonly [z.ZodObject<{
|
|
|
354
319
|
code?: string | undefined;
|
|
355
320
|
access_grant_keys?: string[] | undefined;
|
|
356
321
|
is_backup_code?: boolean | undefined;
|
|
357
|
-
}>, z.ZodObject<{
|
|
358
|
-
event_id: z.ZodString;
|
|
359
|
-
workspace_id: z.ZodString;
|
|
360
|
-
created_at: z.ZodString;
|
|
361
|
-
occurred_at: z.ZodString;
|
|
362
|
-
} & {
|
|
363
|
-
access_method_id: z.ZodString;
|
|
364
|
-
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
365
|
-
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
366
|
-
} & {
|
|
367
|
-
event_type: z.ZodLiteral<"access_method.code_changed">;
|
|
368
|
-
code: z.ZodString;
|
|
369
|
-
}, "strip", z.ZodTypeAny, {
|
|
370
|
-
code: string;
|
|
371
|
-
workspace_id: string;
|
|
372
|
-
created_at: string;
|
|
373
|
-
access_method_id: string;
|
|
374
|
-
event_id: string;
|
|
375
|
-
occurred_at: string;
|
|
376
|
-
event_type: "access_method.code_changed";
|
|
377
|
-
access_grant_ids: string[];
|
|
378
|
-
access_grant_keys?: string[] | undefined;
|
|
379
|
-
}, {
|
|
380
|
-
code: string;
|
|
381
|
-
workspace_id: string;
|
|
382
|
-
created_at: string;
|
|
383
|
-
access_method_id: string;
|
|
384
|
-
event_id: string;
|
|
385
|
-
occurred_at: string;
|
|
386
|
-
event_type: "access_method.code_changed";
|
|
387
|
-
access_grant_ids: string[];
|
|
388
|
-
access_grant_keys?: string[] | undefined;
|
|
389
322
|
}>];
|
|
@@ -53,32 +53,13 @@ export const access_method_deleted_event = access_method_event.extend({
|
|
|
53
53
|
---
|
|
54
54
|
An access method was deleted.
|
|
55
55
|
`);
|
|
56
|
-
export const access_method_reissued_event =
|
|
56
|
+
export const access_method_reissued_event = access_method_issued_event.extend({
|
|
57
57
|
event_type: z.literal('access_method.reissued'),
|
|
58
|
-
code: z
|
|
59
|
-
.string()
|
|
60
|
-
.optional()
|
|
61
|
-
.describe("The actual PIN code for code access methods (only present when mode is 'code')."),
|
|
62
|
-
is_backup_code: z
|
|
63
|
-
.boolean()
|
|
64
|
-
.optional()
|
|
65
|
-
.describe("Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used)."),
|
|
66
|
-
}).describe(`
|
|
67
|
-
---
|
|
68
|
-
route_path: /access_methods
|
|
69
|
-
---
|
|
70
|
-
An access method was reissued due to an Access Grant update.
|
|
71
|
-
`);
|
|
72
|
-
export const access_method_code_changed_event = access_method_event.extend({
|
|
73
|
-
event_type: z.literal('access_method.code_changed'),
|
|
74
|
-
code: z
|
|
75
|
-
.string()
|
|
76
|
-
.describe("The new PIN code for code access methods (only present when mode is 'code')."),
|
|
77
58
|
}).describe(`
|
|
78
59
|
---
|
|
79
60
|
route_path: /access_methods
|
|
80
61
|
---
|
|
81
|
-
An access method
|
|
62
|
+
An access method was reissued.
|
|
82
63
|
`);
|
|
83
64
|
export const access_method_events = [
|
|
84
65
|
access_method_issued_event,
|
|
@@ -86,6 +67,5 @@ export const access_method_events = [
|
|
|
86
67
|
access_method_card_encoding_required_event,
|
|
87
68
|
access_method_deleted_event,
|
|
88
69
|
access_method_reissued_event,
|
|
89
|
-
access_method_code_changed_event,
|
|
90
70
|
];
|
|
91
71
|
//# sourceMappingURL=access-methods.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-methods.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-methods.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,mBAAmB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC9C,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,mCAAmC,CAAC;IAChD,gBAAgB,EAAE,CAAC;SAChB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CACP,4EAA4E,CAC7E;CACJ,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACnE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;IAC7C,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,iFAAiF,CAClF;IACH,cAAc,EAAE,CAAC;SACd,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,4GAA4G,CAC7G;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAIJ,MAAM,CAAC,MAAM,0CAA0C,GACrD,mBAAmB,CAAC,MAAM,CAAC;IACzB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;CAC9D,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,2BAA2B,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACpE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,2BAA2B,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACpE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,4BAA4B,GAAG,
|
|
1
|
+
{"version":3,"file":"access-methods.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-methods.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,mBAAmB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC9C,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,mCAAmC,CAAC;IAChD,gBAAgB,EAAE,CAAC;SAChB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CACP,4EAA4E,CAC7E;CACJ,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACnE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;IAC7C,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,iFAAiF,CAClF;IACH,cAAc,EAAE,CAAC;SACd,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,4GAA4G,CAC7G;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAIJ,MAAM,CAAC,MAAM,0CAA0C,GACrD,mBAAmB,CAAC,MAAM,CAAC;IACzB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;CAC9D,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,2BAA2B,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACpE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,2BAA2B,GAAG,mBAAmB,CAAC,MAAM,CAAC;IACpE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,4BAA4B,GAAG,0BAA0B,CAAC,MAAM,CAAC;IAC5E,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,wBAAwB,CAAC;CAChD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,0BAA0B;IAC1B,2BAA2B;IAC3B,0CAA0C;IAC1C,2BAA2B;IAC3B,4BAA4B;CACpB,CAAA"}
|
|
@@ -886,14 +886,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
886
886
|
workspace_id: z.ZodString;
|
|
887
887
|
created_at: z.ZodString;
|
|
888
888
|
occurred_at: z.ZodString;
|
|
889
|
-
} & {
|
|
890
889
|
access_method_id: z.ZodString;
|
|
891
890
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
892
891
|
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
893
|
-
} & {
|
|
894
|
-
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
895
892
|
code: z.ZodOptional<z.ZodString>;
|
|
896
893
|
is_backup_code: z.ZodOptional<z.ZodBoolean>;
|
|
894
|
+
} & {
|
|
895
|
+
event_type: z.ZodLiteral<"access_method.reissued">;
|
|
897
896
|
}, "strip", z.ZodTypeAny, {
|
|
898
897
|
workspace_id: string;
|
|
899
898
|
created_at: string;
|
|
@@ -921,38 +920,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
921
920
|
workspace_id: z.ZodString;
|
|
922
921
|
created_at: z.ZodString;
|
|
923
922
|
occurred_at: z.ZodString;
|
|
924
|
-
} & {
|
|
925
|
-
access_method_id: z.ZodString;
|
|
926
|
-
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
927
|
-
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
928
|
-
} & {
|
|
929
|
-
event_type: z.ZodLiteral<"access_method.code_changed">;
|
|
930
|
-
code: z.ZodString;
|
|
931
|
-
}, "strip", z.ZodTypeAny, {
|
|
932
|
-
code: string;
|
|
933
|
-
workspace_id: string;
|
|
934
|
-
created_at: string;
|
|
935
|
-
access_method_id: string;
|
|
936
|
-
event_id: string;
|
|
937
|
-
occurred_at: string;
|
|
938
|
-
event_type: "access_method.code_changed";
|
|
939
|
-
access_grant_ids: string[];
|
|
940
|
-
access_grant_keys?: string[] | undefined;
|
|
941
|
-
}, {
|
|
942
|
-
code: string;
|
|
943
|
-
workspace_id: string;
|
|
944
|
-
created_at: string;
|
|
945
|
-
access_method_id: string;
|
|
946
|
-
event_id: string;
|
|
947
|
-
occurred_at: string;
|
|
948
|
-
event_type: "access_method.code_changed";
|
|
949
|
-
access_grant_ids: string[];
|
|
950
|
-
access_grant_keys?: string[] | undefined;
|
|
951
|
-
}>, z.ZodObject<{
|
|
952
|
-
event_id: z.ZodString;
|
|
953
|
-
workspace_id: z.ZodString;
|
|
954
|
-
created_at: z.ZodString;
|
|
955
|
-
occurred_at: z.ZodString;
|
|
956
923
|
} & {
|
|
957
924
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
958
925
|
acs_system_id: z.ZodString;
|
|
@@ -3014,5 +2981,5 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3014
2981
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3015
2982
|
}>]>;
|
|
3016
2983
|
export type SeamEvent = z.infer<typeof seam_event>;
|
|
3017
|
-
export declare const seam_event_type: z.ZodEnum<["access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "
|
|
2984
|
+
export declare const seam_event_type: z.ZodEnum<["access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "acs_access_group.deleted" | "acs_credential.deleted" | "acs_credential.issued" | "acs_credential.reissued" | "acs_credential.invalidated" | "acs_encoder.added" | "acs_encoder.removed" | "acs_entrance.added" | "acs_entrance.removed" | "acs_system.connected" | "acs_system.disconnected" | "acs_system.added" | "acs_user.deleted" | "acs_user.created" | "action_attempt.lock_door.succeeded" | "action_attempt.lock_door.failed" | "action_attempt.unlock_door.succeeded" | "action_attempt.unlock_door.failed" | "client_session.deleted" | "connect_webview.login_succeeded" | "connect_webview.login_failed" | "connected_account.connected" | "connected_account.created" | "connected_account.successful_login" | "connected_account.disconnected" | "connected_account.completed_first_sync" | "connected_account.deleted" | "connected_account.completed_first_sync_after_reconnection" | "device.connected" | "device.added" | "device.converted_to_unmanaged" | "device.unmanaged.converted_to_managed" | "device.unmanaged.connected" | "device.disconnected" | "device.unmanaged.disconnected" | "device.tampered" | "device.low_battery" | "device.battery_status_changed" | "device.removed" | "device.deleted" | "device.third_party_integration_detected" | "device.third_party_integration_no_longer_detected" | "device.salto.privacy_mode_activated" | "device.salto.privacy_mode_deactivated" | "device.connection_became_flaky" | "device.connection_stabilized" | "device.error.subscription_required" | "device.error.subscription_required.resolved" | "device.accessory_keypad_connected" | "device.accessory_keypad_disconnected" | "noise_sensor.noise_threshold_triggered" | "lock.locked" | "lock.unlocked" | "lock.access_denied" | "thermostat.climate_preset_activated" | "thermostat.manually_adjusted" | "thermostat.temperature_threshold_exceeded" | "thermostat.temperature_threshold_no_longer_exceeded" | "thermostat.temperature_reached_set_point" | "thermostat.temperature_changed" | "device.name_changed" | "enrollment_automation.deleted" | "phone.deactivated", ...("access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "acs_access_group.deleted" | "acs_credential.deleted" | "acs_credential.issued" | "acs_credential.reissued" | "acs_credential.invalidated" | "acs_encoder.added" | "acs_encoder.removed" | "acs_entrance.added" | "acs_entrance.removed" | "acs_system.connected" | "acs_system.disconnected" | "acs_system.added" | "acs_user.deleted" | "acs_user.created" | "action_attempt.lock_door.succeeded" | "action_attempt.lock_door.failed" | "action_attempt.unlock_door.succeeded" | "action_attempt.unlock_door.failed" | "client_session.deleted" | "connect_webview.login_succeeded" | "connect_webview.login_failed" | "connected_account.connected" | "connected_account.created" | "connected_account.successful_login" | "connected_account.disconnected" | "connected_account.completed_first_sync" | "connected_account.deleted" | "connected_account.completed_first_sync_after_reconnection" | "device.connected" | "device.added" | "device.converted_to_unmanaged" | "device.unmanaged.converted_to_managed" | "device.unmanaged.connected" | "device.disconnected" | "device.unmanaged.disconnected" | "device.tampered" | "device.low_battery" | "device.battery_status_changed" | "device.removed" | "device.deleted" | "device.third_party_integration_detected" | "device.third_party_integration_no_longer_detected" | "device.salto.privacy_mode_activated" | "device.salto.privacy_mode_deactivated" | "device.connection_became_flaky" | "device.connection_stabilized" | "device.error.subscription_required" | "device.error.subscription_required.resolved" | "device.accessory_keypad_connected" | "device.accessory_keypad_disconnected" | "noise_sensor.noise_threshold_triggered" | "lock.locked" | "lock.unlocked" | "lock.access_denied" | "thermostat.climate_preset_activated" | "thermostat.manually_adjusted" | "thermostat.temperature_threshold_exceeded" | "thermostat.temperature_threshold_no_longer_exceeded" | "thermostat.temperature_reached_set_point" | "thermostat.temperature_changed" | "device.name_changed" | "enrollment_automation.deleted" | "phone.deactivated")[]]>;
|
|
3018
2985
|
export type SeamEventType = SeamEvent['event_type'];
|
|
@@ -25,6 +25,8 @@ export declare const workspace: z.ZodObject<{
|
|
|
25
25
|
}>;
|
|
26
26
|
is_suspended: z.ZodBoolean;
|
|
27
27
|
connect_partner_name: z.ZodNullable<z.ZodNullable<z.ZodString>>;
|
|
28
|
+
publishable_key: z.ZodOptional<z.ZodString>;
|
|
29
|
+
is_publishable_key_auth_enabled: z.ZodBoolean;
|
|
28
30
|
}, "strip", z.ZodTypeAny, {
|
|
29
31
|
name: string;
|
|
30
32
|
workspace_id: string;
|
|
@@ -39,6 +41,8 @@ export declare const workspace: z.ZodObject<{
|
|
|
39
41
|
inviter_logo_url?: string | undefined;
|
|
40
42
|
};
|
|
41
43
|
connect_partner_name: string | null;
|
|
44
|
+
is_publishable_key_auth_enabled: boolean;
|
|
45
|
+
publishable_key?: string | undefined;
|
|
42
46
|
}, {
|
|
43
47
|
name: string;
|
|
44
48
|
workspace_id: string;
|
|
@@ -53,5 +57,7 @@ export declare const workspace: z.ZodObject<{
|
|
|
53
57
|
inviter_logo_url?: string | undefined;
|
|
54
58
|
};
|
|
55
59
|
connect_partner_name: string | null;
|
|
60
|
+
is_publishable_key_auth_enabled: boolean;
|
|
61
|
+
publishable_key?: string | undefined;
|
|
56
62
|
}>;
|
|
57
63
|
export type Workspace = z.infer<typeof workspace>;
|
|
@@ -46,6 +46,13 @@ export const workspace = z.object({
|
|
|
46
46
|
---
|
|
47
47
|
`)
|
|
48
48
|
.nullable(),
|
|
49
|
+
publishable_key: z
|
|
50
|
+
.string()
|
|
51
|
+
.optional()
|
|
52
|
+
.describe('Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications.'),
|
|
53
|
+
is_publishable_key_auth_enabled: z
|
|
54
|
+
.boolean()
|
|
55
|
+
.describe('Indicates whether publishable key authentication is enabled for this workspace.'),
|
|
49
56
|
}).describe(`
|
|
50
57
|
---
|
|
51
58
|
route_path: /workspaces
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/workspaces/workspace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAE7C,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC;IAChC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,8EAA8E,CAC/E;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,CACP,gFAAgF,CACjF;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,qGAAqG,CACtG;IACH,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CACP,oIAAoI,CACrI;IACH,6BAA6B,EAAE,CAAC,CAAC,MAAM,CAAC;QACtC,oBAAoB,EAAE,cAAc;aACjC,QAAQ,EAAE;aACV,QAAQ,CACP,0UAA0U,CAC3U;QACH,yBAAyB,EAAE,cAAc;aACtC,QAAQ,EAAE;aACV,QAAQ,CACP,+UAA+U,CAChV;QACH,eAAe,EAAE,CAAC;aACf,MAAM,EAAE;aACR,QAAQ,EAAE;aACV,QAAQ,CACP,qUAAqU,CACtU;QACH,UAAU,EAAE,CAAC;aACV,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;aAC1B,QAAQ,EAAE;aACV,QAAQ,CACP,gUAAgU,CACjU;QACH,gBAAgB,EAAE,CAAC;aAChB,MAAM,EAAE;aACR,QAAQ,EAAE;aACV,QAAQ,CACP,6UAA6U,CAC9U;KACJ,CAAC;IACF,YAAY,EAAE,CAAC;SACZ,OAAO,EAAE;SACT,QAAQ,CACP,2MAA2M,CAC5M;IACH,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP;;;;GAIH,CACE;SACA,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/workspaces/workspace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAE7C,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC;IAChC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,8EAA8E,CAC/E;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,CACP,gFAAgF,CACjF;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,qGAAqG,CACtG;IACH,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CACP,oIAAoI,CACrI;IACH,6BAA6B,EAAE,CAAC,CAAC,MAAM,CAAC;QACtC,oBAAoB,EAAE,cAAc;aACjC,QAAQ,EAAE;aACV,QAAQ,CACP,0UAA0U,CAC3U;QACH,yBAAyB,EAAE,cAAc;aACtC,QAAQ,EAAE;aACV,QAAQ,CACP,+UAA+U,CAChV;QACH,eAAe,EAAE,CAAC;aACf,MAAM,EAAE;aACR,QAAQ,EAAE;aACV,QAAQ,CACP,qUAAqU,CACtU;QACH,UAAU,EAAE,CAAC;aACV,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;aAC1B,QAAQ,EAAE;aACV,QAAQ,CACP,gUAAgU,CACjU;QACH,gBAAgB,EAAE,CAAC;aAChB,MAAM,EAAE;aACR,QAAQ,EAAE;aACV,QAAQ,CACP,6UAA6U,CAC9U;KACJ,CAAC;IACF,YAAY,EAAE,CAAC;SACZ,OAAO,EAAE;SACT,QAAQ,CACP,2MAA2M,CAC5M;IACH,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP;;;;GAIH,CACE;SACA,QAAQ,EAAE;IACb,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,oKAAoK,CACrK;IACH,+BAA+B,EAAE,CAAC;SAC/B,OAAO,EAAE;SACT,QAAQ,CACP,iFAAiF,CAClF;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|