@seamapi/types 1.778.0 → 1.780.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 +29 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -2
- package/dist/index.cjs +29 -2
- 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 +26 -0
- package/lib/seam/connect/openapi.js +29 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -2
- 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 +32 -2
- package/src/lib/seam/connect/route-types.ts +10 -2
package/dist/connect.d.cts
CHANGED
|
@@ -86086,6 +86086,7 @@ declare const _default: {
|
|
|
86086
86086
|
};
|
|
86087
86087
|
access_grant_key: {
|
|
86088
86088
|
description: string;
|
|
86089
|
+
nullable: boolean;
|
|
86089
86090
|
type: string;
|
|
86090
86091
|
};
|
|
86091
86092
|
acs_entrance_id: {
|
|
@@ -102561,6 +102562,11 @@ declare const _default: {
|
|
|
102561
102562
|
description: string;
|
|
102562
102563
|
type: string;
|
|
102563
102564
|
};
|
|
102565
|
+
parent_site_key: {
|
|
102566
|
+
description: string;
|
|
102567
|
+
minLength: number;
|
|
102568
|
+
type: string;
|
|
102569
|
+
};
|
|
102564
102570
|
space_key: {
|
|
102565
102571
|
description: string;
|
|
102566
102572
|
minLength: number;
|
|
@@ -103692,6 +103698,11 @@ declare const _default: {
|
|
|
103692
103698
|
description: string;
|
|
103693
103699
|
type: string;
|
|
103694
103700
|
};
|
|
103701
|
+
parent_site_key: {
|
|
103702
|
+
description: string;
|
|
103703
|
+
minLength: number;
|
|
103704
|
+
type: string;
|
|
103705
|
+
};
|
|
103695
103706
|
space_key: {
|
|
103696
103707
|
description: string;
|
|
103697
103708
|
minLength: number;
|
|
@@ -129400,6 +129411,11 @@ declare const _default: {
|
|
|
129400
129411
|
description: string;
|
|
129401
129412
|
type: string;
|
|
129402
129413
|
};
|
|
129414
|
+
parent_site_key: {
|
|
129415
|
+
description: string;
|
|
129416
|
+
minLength: number;
|
|
129417
|
+
type: string;
|
|
129418
|
+
};
|
|
129403
129419
|
space_key: {
|
|
129404
129420
|
description: string;
|
|
129405
129421
|
minLength: number;
|
|
@@ -129489,6 +129505,11 @@ declare const _default: {
|
|
|
129489
129505
|
description: string;
|
|
129490
129506
|
type: string;
|
|
129491
129507
|
};
|
|
129508
|
+
parent_site_key: {
|
|
129509
|
+
description: string;
|
|
129510
|
+
minLength: number;
|
|
129511
|
+
type: string;
|
|
129512
|
+
};
|
|
129492
129513
|
space_key: {
|
|
129493
129514
|
description: string;
|
|
129494
129515
|
minLength: number;
|
|
@@ -129650,6 +129671,11 @@ declare const _default: {
|
|
|
129650
129671
|
description: string;
|
|
129651
129672
|
type: string;
|
|
129652
129673
|
};
|
|
129674
|
+
parent_site_key: {
|
|
129675
|
+
description: string;
|
|
129676
|
+
minLength: number;
|
|
129677
|
+
type: string;
|
|
129678
|
+
};
|
|
129653
129679
|
space_key: {
|
|
129654
129680
|
description: string;
|
|
129655
129681
|
minLength: number;
|
|
@@ -148486,8 +148512,8 @@ type Routes = {
|
|
|
148486
148512
|
location_id?: string | undefined;
|
|
148487
148513
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
148488
148514
|
space_id?: string | undefined;
|
|
148489
|
-
/** Filter Access Grants by access_grant_key. */
|
|
148490
|
-
access_grant_key?: string | undefined;
|
|
148515
|
+
/** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
|
|
148516
|
+
access_grant_key?: (string | null) | undefined;
|
|
148491
148517
|
/** Filter Access Grants by reservation_key. */
|
|
148492
148518
|
reservation_key?: string | undefined;
|
|
148493
148519
|
};
|
|
@@ -166503,6 +166529,8 @@ type Routes = {
|
|
|
166503
166529
|
name: string;
|
|
166504
166530
|
/** Your unique identifier for the space. */
|
|
166505
166531
|
space_key: string;
|
|
166532
|
+
/** Your unique identifier for the site. */
|
|
166533
|
+
parent_site_key?: string | undefined;
|
|
166506
166534
|
}[] | undefined;
|
|
166507
166535
|
/** List of general sites or areas. */
|
|
166508
166536
|
sites?: {
|
|
@@ -166871,6 +166899,8 @@ type Routes = {
|
|
|
166871
166899
|
name: string;
|
|
166872
166900
|
/** Your unique identifier for the space. */
|
|
166873
166901
|
space_key: string;
|
|
166902
|
+
/** Your unique identifier for the site. */
|
|
166903
|
+
parent_site_key?: string | undefined;
|
|
166874
166904
|
}[] | undefined;
|
|
166875
166905
|
/** List of general sites or areas. */
|
|
166876
166906
|
sites?: {
|
|
@@ -222062,6 +222092,8 @@ type Routes = {
|
|
|
222062
222092
|
name: string;
|
|
222063
222093
|
/** Your unique identifier for the space. */
|
|
222064
222094
|
space_key: string;
|
|
222095
|
+
/** Your unique identifier for the site. */
|
|
222096
|
+
parent_site_key?: string | undefined;
|
|
222065
222097
|
}[] | undefined;
|
|
222066
222098
|
};
|
|
222067
222099
|
formData: {};
|
|
@@ -222131,6 +222163,8 @@ type Routes = {
|
|
|
222131
222163
|
name: string;
|
|
222132
222164
|
/** Your unique identifier for the space. */
|
|
222133
222165
|
space_key: string;
|
|
222166
|
+
/** Your unique identifier for the site. */
|
|
222167
|
+
parent_site_key?: string | undefined;
|
|
222134
222168
|
}[] | undefined;
|
|
222135
222169
|
};
|
|
222136
222170
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -38088,7 +38088,8 @@ var openapi_default = {
|
|
|
38088
38088
|
in: "query",
|
|
38089
38089
|
name: "access_grant_key",
|
|
38090
38090
|
schema: {
|
|
38091
|
-
description: "Filter Access Grants by access_grant_key.",
|
|
38091
|
+
description: "Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.",
|
|
38092
|
+
nullable: true,
|
|
38092
38093
|
type: "string"
|
|
38093
38094
|
}
|
|
38094
38095
|
},
|
|
@@ -38153,7 +38154,8 @@ var openapi_default = {
|
|
|
38153
38154
|
type: "array"
|
|
38154
38155
|
},
|
|
38155
38156
|
access_grant_key: {
|
|
38156
|
-
description: "Filter Access Grants by access_grant_key.",
|
|
38157
|
+
description: "Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.",
|
|
38158
|
+
nullable: true,
|
|
38157
38159
|
type: "string"
|
|
38158
38160
|
},
|
|
38159
38161
|
acs_entrance_id: {
|
|
@@ -52693,6 +52695,11 @@ var openapi_default = {
|
|
|
52693
52695
|
description: "Your display name for this location resource.",
|
|
52694
52696
|
type: "string"
|
|
52695
52697
|
},
|
|
52698
|
+
parent_site_key: {
|
|
52699
|
+
description: "Your unique identifier for the site.",
|
|
52700
|
+
minLength: 1,
|
|
52701
|
+
type: "string"
|
|
52702
|
+
},
|
|
52696
52703
|
space_key: {
|
|
52697
52704
|
description: "Your unique identifier for the space.",
|
|
52698
52705
|
minLength: 1,
|
|
@@ -53815,6 +53822,11 @@ var openapi_default = {
|
|
|
53815
53822
|
description: "Your display name for this location resource.",
|
|
53816
53823
|
type: "string"
|
|
53817
53824
|
},
|
|
53825
|
+
parent_site_key: {
|
|
53826
|
+
description: "Your unique identifier for the site.",
|
|
53827
|
+
minLength: 1,
|
|
53828
|
+
type: "string"
|
|
53829
|
+
},
|
|
53818
53830
|
space_key: {
|
|
53819
53831
|
description: "Your unique identifier for the space.",
|
|
53820
53832
|
minLength: 1,
|
|
@@ -77677,6 +77689,11 @@ var openapi_default = {
|
|
|
77677
77689
|
description: "Your display name for this location resource.",
|
|
77678
77690
|
type: "string"
|
|
77679
77691
|
},
|
|
77692
|
+
parent_site_key: {
|
|
77693
|
+
description: "Your unique identifier for the site.",
|
|
77694
|
+
minLength: 1,
|
|
77695
|
+
type: "string"
|
|
77696
|
+
},
|
|
77680
77697
|
space_key: {
|
|
77681
77698
|
description: "Your unique identifier for the space.",
|
|
77682
77699
|
minLength: 1,
|
|
@@ -77754,6 +77771,11 @@ var openapi_default = {
|
|
|
77754
77771
|
description: "Your display name for this location resource.",
|
|
77755
77772
|
type: "string"
|
|
77756
77773
|
},
|
|
77774
|
+
parent_site_key: {
|
|
77775
|
+
description: "Your unique identifier for the site.",
|
|
77776
|
+
minLength: 1,
|
|
77777
|
+
type: "string"
|
|
77778
|
+
},
|
|
77757
77779
|
space_key: {
|
|
77758
77780
|
description: "Your unique identifier for the space.",
|
|
77759
77781
|
minLength: 1,
|
|
@@ -77883,6 +77905,11 @@ var openapi_default = {
|
|
|
77883
77905
|
description: "Your display name for this location resource.",
|
|
77884
77906
|
type: "string"
|
|
77885
77907
|
},
|
|
77908
|
+
parent_site_key: {
|
|
77909
|
+
description: "Your unique identifier for the site.",
|
|
77910
|
+
minLength: 1,
|
|
77911
|
+
type: "string"
|
|
77912
|
+
},
|
|
77886
77913
|
space_key: {
|
|
77887
77914
|
description: "Your unique identifier for the space.",
|
|
77888
77915
|
minLength: 1,
|