@seamapi/types 1.976.0 → 1.977.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 +175 -40
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -9
- package/dist/index.cjs +175 -40
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +74 -14
- package/lib/seam/connect/models/customer/customer-portal.js +18 -4
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.js +175 -40
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +27 -9
- package/package.json +2 -2
- package/src/lib/seam/connect/models/customer/customer-portal.ts +18 -4
- package/src/lib/seam/connect/openapi.ts +175 -40
- package/src/lib/seam/connect/route-types.ts +42 -12
|
@@ -334,16 +334,34 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
334
334
|
operation: "=";
|
|
335
335
|
}>, "many">>;
|
|
336
336
|
navigation_mode: z.ZodDefault<z.ZodEnum<["full", "restricted"]>>;
|
|
337
|
-
deep_link: z.ZodOptional<z.ZodObject<{
|
|
338
|
-
resource_type: z.
|
|
337
|
+
deep_link: z.ZodOptional<z.ZodDiscriminatedUnion<"resource_type", [z.ZodObject<{
|
|
338
|
+
resource_type: z.ZodLiteral<"reservation">;
|
|
339
339
|
resource_key: z.ZodString;
|
|
340
340
|
}, "strip", z.ZodTypeAny, {
|
|
341
|
-
resource_type: "reservation"
|
|
341
|
+
resource_type: "reservation";
|
|
342
342
|
resource_key: string;
|
|
343
343
|
}, {
|
|
344
|
-
resource_type: "reservation"
|
|
344
|
+
resource_type: "reservation";
|
|
345
345
|
resource_key: string;
|
|
346
|
-
}
|
|
346
|
+
}>, z.ZodObject<{
|
|
347
|
+
resource_type: z.ZodLiteral<"space">;
|
|
348
|
+
resource_key: z.ZodString;
|
|
349
|
+
}, "strip", z.ZodTypeAny, {
|
|
350
|
+
resource_type: "space";
|
|
351
|
+
resource_key: string;
|
|
352
|
+
}, {
|
|
353
|
+
resource_type: "space";
|
|
354
|
+
resource_key: string;
|
|
355
|
+
}>, z.ZodObject<{
|
|
356
|
+
resource_type: z.ZodLiteral<"device">;
|
|
357
|
+
resource_id: z.ZodString;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
resource_type: "device";
|
|
360
|
+
resource_id: string;
|
|
361
|
+
}, {
|
|
362
|
+
resource_type: "device";
|
|
363
|
+
resource_id: string;
|
|
364
|
+
}>]>>;
|
|
347
365
|
}, "strip", z.ZodTypeAny, {
|
|
348
366
|
features: {
|
|
349
367
|
connect: {
|
|
@@ -421,8 +439,14 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
421
439
|
operation: "=";
|
|
422
440
|
}[] | undefined;
|
|
423
441
|
deep_link?: {
|
|
424
|
-
resource_type: "reservation"
|
|
442
|
+
resource_type: "reservation";
|
|
425
443
|
resource_key: string;
|
|
444
|
+
} | {
|
|
445
|
+
resource_type: "space";
|
|
446
|
+
resource_key: string;
|
|
447
|
+
} | {
|
|
448
|
+
resource_type: "device";
|
|
449
|
+
resource_id: string;
|
|
426
450
|
} | undefined;
|
|
427
451
|
}, {
|
|
428
452
|
features?: {
|
|
@@ -501,8 +525,14 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
501
525
|
}[] | undefined;
|
|
502
526
|
navigation_mode?: "full" | "restricted" | undefined;
|
|
503
527
|
deep_link?: {
|
|
504
|
-
resource_type: "reservation"
|
|
528
|
+
resource_type: "reservation";
|
|
529
|
+
resource_key: string;
|
|
530
|
+
} | {
|
|
531
|
+
resource_type: "space";
|
|
505
532
|
resource_key: string;
|
|
533
|
+
} | {
|
|
534
|
+
resource_type: "device";
|
|
535
|
+
resource_id: string;
|
|
506
536
|
} | undefined;
|
|
507
537
|
}>;
|
|
508
538
|
export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
@@ -840,16 +870,34 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
840
870
|
operation: "=";
|
|
841
871
|
}>, "many">>;
|
|
842
872
|
navigation_mode: z.ZodDefault<z.ZodEnum<["full", "restricted"]>>;
|
|
843
|
-
deep_link: z.ZodOptional<z.ZodObject<{
|
|
844
|
-
resource_type: z.
|
|
873
|
+
deep_link: z.ZodOptional<z.ZodDiscriminatedUnion<"resource_type", [z.ZodObject<{
|
|
874
|
+
resource_type: z.ZodLiteral<"reservation">;
|
|
845
875
|
resource_key: z.ZodString;
|
|
846
876
|
}, "strip", z.ZodTypeAny, {
|
|
847
|
-
resource_type: "reservation"
|
|
877
|
+
resource_type: "reservation";
|
|
848
878
|
resource_key: string;
|
|
849
879
|
}, {
|
|
850
|
-
resource_type: "reservation"
|
|
880
|
+
resource_type: "reservation";
|
|
851
881
|
resource_key: string;
|
|
852
|
-
}
|
|
882
|
+
}>, z.ZodObject<{
|
|
883
|
+
resource_type: z.ZodLiteral<"space">;
|
|
884
|
+
resource_key: z.ZodString;
|
|
885
|
+
}, "strip", z.ZodTypeAny, {
|
|
886
|
+
resource_type: "space";
|
|
887
|
+
resource_key: string;
|
|
888
|
+
}, {
|
|
889
|
+
resource_type: "space";
|
|
890
|
+
resource_key: string;
|
|
891
|
+
}>, z.ZodObject<{
|
|
892
|
+
resource_type: z.ZodLiteral<"device">;
|
|
893
|
+
resource_id: z.ZodString;
|
|
894
|
+
}, "strip", z.ZodTypeAny, {
|
|
895
|
+
resource_type: "device";
|
|
896
|
+
resource_id: string;
|
|
897
|
+
}, {
|
|
898
|
+
resource_type: "device";
|
|
899
|
+
resource_id: string;
|
|
900
|
+
}>]>>;
|
|
853
901
|
} & {
|
|
854
902
|
_dev: z.ZodDefault<z.ZodBoolean>;
|
|
855
903
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -930,8 +978,14 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
930
978
|
operation: "=";
|
|
931
979
|
}[] | undefined;
|
|
932
980
|
deep_link?: {
|
|
933
|
-
resource_type: "reservation"
|
|
981
|
+
resource_type: "reservation";
|
|
934
982
|
resource_key: string;
|
|
983
|
+
} | {
|
|
984
|
+
resource_type: "space";
|
|
985
|
+
resource_key: string;
|
|
986
|
+
} | {
|
|
987
|
+
resource_type: "device";
|
|
988
|
+
resource_id: string;
|
|
935
989
|
} | undefined;
|
|
936
990
|
}, {
|
|
937
991
|
features?: {
|
|
@@ -1010,8 +1064,14 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
1010
1064
|
}[] | undefined;
|
|
1011
1065
|
navigation_mode?: "full" | "restricted" | undefined;
|
|
1012
1066
|
deep_link?: {
|
|
1013
|
-
resource_type: "reservation"
|
|
1067
|
+
resource_type: "reservation";
|
|
1068
|
+
resource_key: string;
|
|
1069
|
+
} | {
|
|
1070
|
+
resource_type: "space";
|
|
1014
1071
|
resource_key: string;
|
|
1072
|
+
} | {
|
|
1073
|
+
resource_type: "device";
|
|
1074
|
+
resource_id: string;
|
|
1015
1075
|
} | undefined;
|
|
1016
1076
|
_dev?: boolean | undefined;
|
|
1017
1077
|
}>>;
|
|
@@ -166,10 +166,24 @@ export const portal_configuration_base = z.object({
|
|
|
166
166
|
.default('full')
|
|
167
167
|
.describe("Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links."),
|
|
168
168
|
deep_link: z
|
|
169
|
-
.
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
169
|
+
.discriminatedUnion('resource_type', [
|
|
170
|
+
// Customer-keyed resources: resolved to an internal id via a lookup.
|
|
171
|
+
z.object({
|
|
172
|
+
resource_type: z.literal('reservation'),
|
|
173
|
+
resource_key: z.string(),
|
|
174
|
+
}),
|
|
175
|
+
z.object({
|
|
176
|
+
resource_type: z.literal('space'),
|
|
177
|
+
resource_key: z.string(),
|
|
178
|
+
}),
|
|
179
|
+
// Seam-id resource: a device is addressed by its Seam device_id directly
|
|
180
|
+
// (there is no customer-facing device_key), so it carries resource_id
|
|
181
|
+
// rather than resource_key.
|
|
182
|
+
z.object({
|
|
183
|
+
resource_type: z.literal('device'),
|
|
184
|
+
resource_id: z.string(),
|
|
185
|
+
}),
|
|
186
|
+
])
|
|
173
187
|
.optional().describe(`
|
|
174
188
|
---
|
|
175
189
|
undocumented: Internal endpoint for customer portals.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"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"}
|
|
@@ -49467,15 +49467,42 @@ const openapi = {
|
|
|
49467
49467
|
},
|
|
49468
49468
|
deep_link: {
|
|
49469
49469
|
description: 'Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.',
|
|
49470
|
-
|
|
49471
|
-
|
|
49472
|
-
|
|
49473
|
-
|
|
49474
|
-
|
|
49470
|
+
discriminator: { propertyName: 'resource_type' },
|
|
49471
|
+
oneOf: [
|
|
49472
|
+
{
|
|
49473
|
+
properties: {
|
|
49474
|
+
resource_key: { type: 'string' },
|
|
49475
|
+
resource_type: {
|
|
49476
|
+
enum: ['reservation'],
|
|
49477
|
+
type: 'string',
|
|
49478
|
+
},
|
|
49479
|
+
},
|
|
49480
|
+
required: ['resource_type', 'resource_key'],
|
|
49481
|
+
type: 'object',
|
|
49475
49482
|
},
|
|
49476
|
-
|
|
49477
|
-
|
|
49478
|
-
|
|
49483
|
+
{
|
|
49484
|
+
properties: {
|
|
49485
|
+
resource_key: { type: 'string' },
|
|
49486
|
+
resource_type: {
|
|
49487
|
+
enum: ['space'],
|
|
49488
|
+
type: 'string',
|
|
49489
|
+
},
|
|
49490
|
+
},
|
|
49491
|
+
required: ['resource_type', 'resource_key'],
|
|
49492
|
+
type: 'object',
|
|
49493
|
+
},
|
|
49494
|
+
{
|
|
49495
|
+
properties: {
|
|
49496
|
+
resource_id: { type: 'string' },
|
|
49497
|
+
resource_type: {
|
|
49498
|
+
enum: ['device'],
|
|
49499
|
+
type: 'string',
|
|
49500
|
+
},
|
|
49501
|
+
},
|
|
49502
|
+
required: ['resource_type', 'resource_id'],
|
|
49503
|
+
type: 'object',
|
|
49504
|
+
},
|
|
49505
|
+
],
|
|
49479
49506
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
49480
49507
|
},
|
|
49481
49508
|
exclude_locale_picker: {
|
|
@@ -70028,15 +70055,42 @@ const openapi = {
|
|
|
70028
70055
|
},
|
|
70029
70056
|
deep_link: {
|
|
70030
70057
|
description: 'Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.',
|
|
70031
|
-
|
|
70032
|
-
|
|
70033
|
-
|
|
70034
|
-
|
|
70035
|
-
|
|
70058
|
+
discriminator: { propertyName: 'resource_type' },
|
|
70059
|
+
oneOf: [
|
|
70060
|
+
{
|
|
70061
|
+
properties: {
|
|
70062
|
+
resource_key: { type: 'string' },
|
|
70063
|
+
resource_type: {
|
|
70064
|
+
enum: ['reservation'],
|
|
70065
|
+
type: 'string',
|
|
70066
|
+
},
|
|
70067
|
+
},
|
|
70068
|
+
required: ['resource_type', 'resource_key'],
|
|
70069
|
+
type: 'object',
|
|
70036
70070
|
},
|
|
70037
|
-
|
|
70038
|
-
|
|
70039
|
-
|
|
70071
|
+
{
|
|
70072
|
+
properties: {
|
|
70073
|
+
resource_key: { type: 'string' },
|
|
70074
|
+
resource_type: {
|
|
70075
|
+
enum: ['space'],
|
|
70076
|
+
type: 'string',
|
|
70077
|
+
},
|
|
70078
|
+
},
|
|
70079
|
+
required: ['resource_type', 'resource_key'],
|
|
70080
|
+
type: 'object',
|
|
70081
|
+
},
|
|
70082
|
+
{
|
|
70083
|
+
properties: {
|
|
70084
|
+
resource_id: { type: 'string' },
|
|
70085
|
+
resource_type: {
|
|
70086
|
+
enum: ['device'],
|
|
70087
|
+
type: 'string',
|
|
70088
|
+
},
|
|
70089
|
+
},
|
|
70090
|
+
required: ['resource_type', 'resource_id'],
|
|
70091
|
+
type: 'object',
|
|
70092
|
+
},
|
|
70093
|
+
],
|
|
70040
70094
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
70041
70095
|
},
|
|
70042
70096
|
exclude_locale_picker: {
|
|
@@ -70455,15 +70509,42 @@ const openapi = {
|
|
|
70455
70509
|
},
|
|
70456
70510
|
deep_link: {
|
|
70457
70511
|
description: 'Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.',
|
|
70458
|
-
|
|
70459
|
-
|
|
70460
|
-
|
|
70461
|
-
|
|
70462
|
-
|
|
70512
|
+
discriminator: { propertyName: 'resource_type' },
|
|
70513
|
+
oneOf: [
|
|
70514
|
+
{
|
|
70515
|
+
properties: {
|
|
70516
|
+
resource_key: { type: 'string' },
|
|
70517
|
+
resource_type: {
|
|
70518
|
+
enum: ['reservation'],
|
|
70519
|
+
type: 'string',
|
|
70520
|
+
},
|
|
70521
|
+
},
|
|
70522
|
+
required: ['resource_type', 'resource_key'],
|
|
70523
|
+
type: 'object',
|
|
70463
70524
|
},
|
|
70464
|
-
|
|
70465
|
-
|
|
70466
|
-
|
|
70525
|
+
{
|
|
70526
|
+
properties: {
|
|
70527
|
+
resource_key: { type: 'string' },
|
|
70528
|
+
resource_type: {
|
|
70529
|
+
enum: ['space'],
|
|
70530
|
+
type: 'string',
|
|
70531
|
+
},
|
|
70532
|
+
},
|
|
70533
|
+
required: ['resource_type', 'resource_key'],
|
|
70534
|
+
type: 'object',
|
|
70535
|
+
},
|
|
70536
|
+
{
|
|
70537
|
+
properties: {
|
|
70538
|
+
resource_id: { type: 'string' },
|
|
70539
|
+
resource_type: {
|
|
70540
|
+
enum: ['device'],
|
|
70541
|
+
type: 'string',
|
|
70542
|
+
},
|
|
70543
|
+
},
|
|
70544
|
+
required: ['resource_type', 'resource_id'],
|
|
70545
|
+
type: 'object',
|
|
70546
|
+
},
|
|
70547
|
+
],
|
|
70467
70548
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
70468
70549
|
},
|
|
70469
70550
|
exclude_locale_picker: {
|
|
@@ -70857,15 +70938,42 @@ const openapi = {
|
|
|
70857
70938
|
},
|
|
70858
70939
|
deep_link: {
|
|
70859
70940
|
description: 'Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.',
|
|
70860
|
-
|
|
70861
|
-
|
|
70862
|
-
|
|
70863
|
-
|
|
70864
|
-
|
|
70941
|
+
discriminator: { propertyName: 'resource_type' },
|
|
70942
|
+
oneOf: [
|
|
70943
|
+
{
|
|
70944
|
+
properties: {
|
|
70945
|
+
resource_key: { type: 'string' },
|
|
70946
|
+
resource_type: {
|
|
70947
|
+
enum: ['reservation'],
|
|
70948
|
+
type: 'string',
|
|
70949
|
+
},
|
|
70950
|
+
},
|
|
70951
|
+
required: ['resource_type', 'resource_key'],
|
|
70952
|
+
type: 'object',
|
|
70865
70953
|
},
|
|
70866
|
-
|
|
70867
|
-
|
|
70868
|
-
|
|
70954
|
+
{
|
|
70955
|
+
properties: {
|
|
70956
|
+
resource_key: { type: 'string' },
|
|
70957
|
+
resource_type: {
|
|
70958
|
+
enum: ['space'],
|
|
70959
|
+
type: 'string',
|
|
70960
|
+
},
|
|
70961
|
+
},
|
|
70962
|
+
required: ['resource_type', 'resource_key'],
|
|
70963
|
+
type: 'object',
|
|
70964
|
+
},
|
|
70965
|
+
{
|
|
70966
|
+
properties: {
|
|
70967
|
+
resource_id: { type: 'string' },
|
|
70968
|
+
resource_type: {
|
|
70969
|
+
enum: ['device'],
|
|
70970
|
+
type: 'string',
|
|
70971
|
+
},
|
|
70972
|
+
},
|
|
70973
|
+
required: ['resource_type', 'resource_id'],
|
|
70974
|
+
type: 'object',
|
|
70975
|
+
},
|
|
70976
|
+
],
|
|
70869
70977
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
70870
70978
|
},
|
|
70871
70979
|
exclude_locale_picker: {
|
|
@@ -71240,15 +71348,42 @@ const openapi = {
|
|
|
71240
71348
|
},
|
|
71241
71349
|
deep_link: {
|
|
71242
71350
|
description: 'Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.',
|
|
71243
|
-
|
|
71244
|
-
|
|
71245
|
-
|
|
71246
|
-
|
|
71247
|
-
|
|
71351
|
+
discriminator: { propertyName: 'resource_type' },
|
|
71352
|
+
oneOf: [
|
|
71353
|
+
{
|
|
71354
|
+
properties: {
|
|
71355
|
+
resource_key: { type: 'string' },
|
|
71356
|
+
resource_type: {
|
|
71357
|
+
enum: ['reservation'],
|
|
71358
|
+
type: 'string',
|
|
71359
|
+
},
|
|
71360
|
+
},
|
|
71361
|
+
required: ['resource_type', 'resource_key'],
|
|
71362
|
+
type: 'object',
|
|
71248
71363
|
},
|
|
71249
|
-
|
|
71250
|
-
|
|
71251
|
-
|
|
71364
|
+
{
|
|
71365
|
+
properties: {
|
|
71366
|
+
resource_key: { type: 'string' },
|
|
71367
|
+
resource_type: {
|
|
71368
|
+
enum: ['space'],
|
|
71369
|
+
type: 'string',
|
|
71370
|
+
},
|
|
71371
|
+
},
|
|
71372
|
+
required: ['resource_type', 'resource_key'],
|
|
71373
|
+
type: 'object',
|
|
71374
|
+
},
|
|
71375
|
+
{
|
|
71376
|
+
properties: {
|
|
71377
|
+
resource_id: { type: 'string' },
|
|
71378
|
+
resource_type: {
|
|
71379
|
+
enum: ['device'],
|
|
71380
|
+
type: 'string',
|
|
71381
|
+
},
|
|
71382
|
+
},
|
|
71383
|
+
required: ['resource_type', 'resource_id'],
|
|
71384
|
+
type: 'object',
|
|
71385
|
+
},
|
|
71386
|
+
],
|
|
71252
71387
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
71253
71388
|
},
|
|
71254
71389
|
exclude_locale_picker: {
|