@seamapi/types 1.778.0 → 1.779.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 +25 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -0
- package/dist/index.cjs +25 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +758 -0
- package/lib/seam/connect/models/customer/customer-data.js +12 -8
- package/lib/seam/connect/models/customer/customer-data.js.map +1 -1
- package/lib/seam/connect/models/customer/location-resources.d.ts +6 -0
- package/lib/seam/connect/models/customer/location-resources.js +8 -0
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +25 -0
- package/lib/seam/connect/openapi.js +25 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-data.ts +15 -9
- package/src/lib/seam/connect/models/customer/location-resources.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +26 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
package/dist/connect.d.cts
CHANGED
|
@@ -102561,6 +102561,11 @@ declare const _default: {
|
|
|
102561
102561
|
description: string;
|
|
102562
102562
|
type: string;
|
|
102563
102563
|
};
|
|
102564
|
+
parent_site_key: {
|
|
102565
|
+
description: string;
|
|
102566
|
+
minLength: number;
|
|
102567
|
+
type: string;
|
|
102568
|
+
};
|
|
102564
102569
|
space_key: {
|
|
102565
102570
|
description: string;
|
|
102566
102571
|
minLength: number;
|
|
@@ -103692,6 +103697,11 @@ declare const _default: {
|
|
|
103692
103697
|
description: string;
|
|
103693
103698
|
type: string;
|
|
103694
103699
|
};
|
|
103700
|
+
parent_site_key: {
|
|
103701
|
+
description: string;
|
|
103702
|
+
minLength: number;
|
|
103703
|
+
type: string;
|
|
103704
|
+
};
|
|
103695
103705
|
space_key: {
|
|
103696
103706
|
description: string;
|
|
103697
103707
|
minLength: number;
|
|
@@ -129400,6 +129410,11 @@ declare const _default: {
|
|
|
129400
129410
|
description: string;
|
|
129401
129411
|
type: string;
|
|
129402
129412
|
};
|
|
129413
|
+
parent_site_key: {
|
|
129414
|
+
description: string;
|
|
129415
|
+
minLength: number;
|
|
129416
|
+
type: string;
|
|
129417
|
+
};
|
|
129403
129418
|
space_key: {
|
|
129404
129419
|
description: string;
|
|
129405
129420
|
minLength: number;
|
|
@@ -129489,6 +129504,11 @@ declare const _default: {
|
|
|
129489
129504
|
description: string;
|
|
129490
129505
|
type: string;
|
|
129491
129506
|
};
|
|
129507
|
+
parent_site_key: {
|
|
129508
|
+
description: string;
|
|
129509
|
+
minLength: number;
|
|
129510
|
+
type: string;
|
|
129511
|
+
};
|
|
129492
129512
|
space_key: {
|
|
129493
129513
|
description: string;
|
|
129494
129514
|
minLength: number;
|
|
@@ -129650,6 +129670,11 @@ declare const _default: {
|
|
|
129650
129670
|
description: string;
|
|
129651
129671
|
type: string;
|
|
129652
129672
|
};
|
|
129673
|
+
parent_site_key: {
|
|
129674
|
+
description: string;
|
|
129675
|
+
minLength: number;
|
|
129676
|
+
type: string;
|
|
129677
|
+
};
|
|
129653
129678
|
space_key: {
|
|
129654
129679
|
description: string;
|
|
129655
129680
|
minLength: number;
|
|
@@ -166503,6 +166528,8 @@ type Routes = {
|
|
|
166503
166528
|
name: string;
|
|
166504
166529
|
/** Your unique identifier for the space. */
|
|
166505
166530
|
space_key: string;
|
|
166531
|
+
/** Your unique identifier for the site. */
|
|
166532
|
+
parent_site_key?: string | undefined;
|
|
166506
166533
|
}[] | undefined;
|
|
166507
166534
|
/** List of general sites or areas. */
|
|
166508
166535
|
sites?: {
|
|
@@ -166871,6 +166898,8 @@ type Routes = {
|
|
|
166871
166898
|
name: string;
|
|
166872
166899
|
/** Your unique identifier for the space. */
|
|
166873
166900
|
space_key: string;
|
|
166901
|
+
/** Your unique identifier for the site. */
|
|
166902
|
+
parent_site_key?: string | undefined;
|
|
166874
166903
|
}[] | undefined;
|
|
166875
166904
|
/** List of general sites or areas. */
|
|
166876
166905
|
sites?: {
|
|
@@ -222062,6 +222091,8 @@ type Routes = {
|
|
|
222062
222091
|
name: string;
|
|
222063
222092
|
/** Your unique identifier for the space. */
|
|
222064
222093
|
space_key: string;
|
|
222094
|
+
/** Your unique identifier for the site. */
|
|
222095
|
+
parent_site_key?: string | undefined;
|
|
222065
222096
|
}[] | undefined;
|
|
222066
222097
|
};
|
|
222067
222098
|
formData: {};
|
|
@@ -222131,6 +222162,8 @@ type Routes = {
|
|
|
222131
222162
|
name: string;
|
|
222132
222163
|
/** Your unique identifier for the space. */
|
|
222133
222164
|
space_key: string;
|
|
222165
|
+
/** Your unique identifier for the site. */
|
|
222166
|
+
parent_site_key?: string | undefined;
|
|
222134
222167
|
}[] | undefined;
|
|
222135
222168
|
};
|
|
222136
222169
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -52693,6 +52693,11 @@ var openapi_default = {
|
|
|
52693
52693
|
description: "Your display name for this location resource.",
|
|
52694
52694
|
type: "string"
|
|
52695
52695
|
},
|
|
52696
|
+
parent_site_key: {
|
|
52697
|
+
description: "Your unique identifier for the site.",
|
|
52698
|
+
minLength: 1,
|
|
52699
|
+
type: "string"
|
|
52700
|
+
},
|
|
52696
52701
|
space_key: {
|
|
52697
52702
|
description: "Your unique identifier for the space.",
|
|
52698
52703
|
minLength: 1,
|
|
@@ -53815,6 +53820,11 @@ var openapi_default = {
|
|
|
53815
53820
|
description: "Your display name for this location resource.",
|
|
53816
53821
|
type: "string"
|
|
53817
53822
|
},
|
|
53823
|
+
parent_site_key: {
|
|
53824
|
+
description: "Your unique identifier for the site.",
|
|
53825
|
+
minLength: 1,
|
|
53826
|
+
type: "string"
|
|
53827
|
+
},
|
|
53818
53828
|
space_key: {
|
|
53819
53829
|
description: "Your unique identifier for the space.",
|
|
53820
53830
|
minLength: 1,
|
|
@@ -77677,6 +77687,11 @@ var openapi_default = {
|
|
|
77677
77687
|
description: "Your display name for this location resource.",
|
|
77678
77688
|
type: "string"
|
|
77679
77689
|
},
|
|
77690
|
+
parent_site_key: {
|
|
77691
|
+
description: "Your unique identifier for the site.",
|
|
77692
|
+
minLength: 1,
|
|
77693
|
+
type: "string"
|
|
77694
|
+
},
|
|
77680
77695
|
space_key: {
|
|
77681
77696
|
description: "Your unique identifier for the space.",
|
|
77682
77697
|
minLength: 1,
|
|
@@ -77754,6 +77769,11 @@ var openapi_default = {
|
|
|
77754
77769
|
description: "Your display name for this location resource.",
|
|
77755
77770
|
type: "string"
|
|
77756
77771
|
},
|
|
77772
|
+
parent_site_key: {
|
|
77773
|
+
description: "Your unique identifier for the site.",
|
|
77774
|
+
minLength: 1,
|
|
77775
|
+
type: "string"
|
|
77776
|
+
},
|
|
77757
77777
|
space_key: {
|
|
77758
77778
|
description: "Your unique identifier for the space.",
|
|
77759
77779
|
minLength: 1,
|
|
@@ -77883,6 +77903,11 @@ var openapi_default = {
|
|
|
77883
77903
|
description: "Your display name for this location resource.",
|
|
77884
77904
|
type: "string"
|
|
77885
77905
|
},
|
|
77906
|
+
parent_site_key: {
|
|
77907
|
+
description: "Your unique identifier for the site.",
|
|
77908
|
+
minLength: 1,
|
|
77909
|
+
type: "string"
|
|
77910
|
+
},
|
|
77886
77911
|
space_key: {
|
|
77887
77912
|
description: "Your unique identifier for the space.",
|
|
77888
77913
|
minLength: 1,
|