@seamapi/types 1.585.0 → 1.587.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.
@@ -92409,6 +92409,19 @@ declare const _default: {
92409
92409
  required: string[];
92410
92410
  type: string;
92411
92411
  };
92412
+ user_identity_name_updated: {
92413
+ properties: {
92414
+ config: {
92415
+ $ref: string;
92416
+ };
92417
+ rule: {
92418
+ enum: string[];
92419
+ type: string;
92420
+ };
92421
+ };
92422
+ required: string[];
92423
+ type: string;
92424
+ };
92412
92425
  };
92413
92426
  type: string;
92414
92427
  };
@@ -92529,6 +92542,19 @@ declare const _default: {
92529
92542
  required: string[];
92530
92543
  type: string;
92531
92544
  };
92545
+ user_identity_name_updated: {
92546
+ properties: {
92547
+ config: {
92548
+ $ref: string;
92549
+ };
92550
+ rule: {
92551
+ enum: string[];
92552
+ type: string;
92553
+ };
92554
+ };
92555
+ required: string[];
92556
+ type: string;
92557
+ };
92532
92558
  };
92533
92559
  type: string;
92534
92560
  };
@@ -92654,6 +92680,20 @@ declare const _default: {
92654
92680
  required: string[];
92655
92681
  type: string;
92656
92682
  };
92683
+ user_identity_name_updated: {
92684
+ properties: {
92685
+ config: {
92686
+ properties: {};
92687
+ type: string;
92688
+ };
92689
+ rule: {
92690
+ enum: string[];
92691
+ type: string;
92692
+ };
92693
+ };
92694
+ required: string[];
92695
+ type: string;
92696
+ };
92657
92697
  };
92658
92698
  type: string;
92659
92699
  };
@@ -92789,6 +92829,20 @@ declare const _default: {
92789
92829
  required: string[];
92790
92830
  type: string;
92791
92831
  };
92832
+ user_identity_name_updated: {
92833
+ properties: {
92834
+ config: {
92835
+ properties: {};
92836
+ type: string;
92837
+ };
92838
+ rule: {
92839
+ enum: string[];
92840
+ type: string;
92841
+ };
92842
+ };
92843
+ required: string[];
92844
+ type: string;
92845
+ };
92792
92846
  };
92793
92847
  type: string;
92794
92848
  };
@@ -95645,6 +95699,10 @@ declare const _default: {
95645
95699
  };
95646
95700
  type: string;
95647
95701
  };
95702
+ customer_key: {
95703
+ description: string;
95704
+ type: string;
95705
+ };
95648
95706
  device_ids: {
95649
95707
  description: string;
95650
95708
  items: {
@@ -96839,6 +96897,10 @@ declare const _default: {
96839
96897
  };
96840
96898
  type: string;
96841
96899
  };
96900
+ customer_key: {
96901
+ description: string;
96902
+ type: string;
96903
+ };
96842
96904
  device_ids: {
96843
96905
  description: string;
96844
96906
  items: {
@@ -96939,6 +97001,10 @@ declare const _default: {
96939
97001
  };
96940
97002
  type: string;
96941
97003
  };
97004
+ customer_key: {
97005
+ description: string;
97006
+ type: string;
97007
+ };
96942
97008
  device_ids: {
96943
97009
  description: string;
96944
97010
  items: {
@@ -163016,6 +163082,10 @@ type Routes = {
163016
163082
  rule: 'space_name_updated';
163017
163083
  config?: {} | undefined;
163018
163084
  } | undefined;
163085
+ user_identity_name_updated?: {
163086
+ rule: 'user_identity_name_updated';
163087
+ config?: {} | undefined;
163088
+ } | undefined;
163019
163089
  } | undefined;
163020
163090
  };
163021
163091
  };
@@ -163045,6 +163115,10 @@ type Routes = {
163045
163115
  rule: 'space_name_updated';
163046
163116
  config?: {} | undefined;
163047
163117
  } | undefined;
163118
+ user_identity_name_updated?: {
163119
+ rule: 'user_identity_name_updated';
163120
+ config?: {} | undefined;
163121
+ } | undefined;
163048
163122
  } | undefined;
163049
163123
  };
163050
163124
  commonParams: {};
@@ -165789,6 +165863,8 @@ type Routes = {
165789
165863
  device_ids?: string[] | undefined;
165790
165864
  /** IDs of the entrances that you want to add to the new space. */
165791
165865
  acs_entrance_ids?: string[] | undefined;
165866
+ /** Customer key for which you want to create the space. */
165867
+ customer_key?: string | undefined;
165792
165868
  };
165793
165869
  commonParams: {};
165794
165870
  formData: {};
@@ -167549,6 +167625,8 @@ type Routes = {
167549
167625
  device_ids?: string[] | undefined;
167550
167626
  /** IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances. */
167551
167627
  acs_entrance_ids?: string[] | undefined;
167628
+ /** Customer key for which you want to update the space. */
167629
+ customer_key?: string | undefined;
167552
167630
  };
167553
167631
  commonParams: {};
167554
167632
  formData: {};
package/dist/index.cjs CHANGED
@@ -52135,6 +52135,19 @@ var openapi_default = {
52135
52135
  },
52136
52136
  required: ["rule"],
52137
52137
  type: "object"
52138
+ },
52139
+ user_identity_name_updated: {
52140
+ properties: {
52141
+ config: {
52142
+ $ref: "#/components/schemas/access_code"
52143
+ },
52144
+ rule: {
52145
+ enum: ["user_identity_name_updated"],
52146
+ type: "string"
52147
+ }
52148
+ },
52149
+ required: ["rule"],
52150
+ type: "object"
52138
52151
  }
52139
52152
  },
52140
52153
  type: "object"
@@ -52248,6 +52261,19 @@ var openapi_default = {
52248
52261
  },
52249
52262
  required: ["rule"],
52250
52263
  type: "object"
52264
+ },
52265
+ user_identity_name_updated: {
52266
+ properties: {
52267
+ config: {
52268
+ $ref: "#/components/schemas/access_code"
52269
+ },
52270
+ rule: {
52271
+ enum: ["user_identity_name_updated"],
52272
+ type: "string"
52273
+ }
52274
+ },
52275
+ required: ["rule"],
52276
+ type: "object"
52251
52277
  }
52252
52278
  },
52253
52279
  type: "object"
@@ -52357,6 +52383,17 @@ var openapi_default = {
52357
52383
  },
52358
52384
  required: ["rule"],
52359
52385
  type: "object"
52386
+ },
52387
+ user_identity_name_updated: {
52388
+ properties: {
52389
+ config: { properties: {}, type: "object" },
52390
+ rule: {
52391
+ enum: ["user_identity_name_updated"],
52392
+ type: "string"
52393
+ }
52394
+ },
52395
+ required: ["rule"],
52396
+ type: "object"
52360
52397
  }
52361
52398
  },
52362
52399
  type: "object"
@@ -52474,6 +52511,17 @@ var openapi_default = {
52474
52511
  },
52475
52512
  required: ["rule"],
52476
52513
  type: "object"
52514
+ },
52515
+ user_identity_name_updated: {
52516
+ properties: {
52517
+ config: { properties: {}, type: "object" },
52518
+ rule: {
52519
+ enum: ["user_identity_name_updated"],
52520
+ type: "string"
52521
+ }
52522
+ },
52523
+ required: ["rule"],
52524
+ type: "object"
52477
52525
  }
52478
52526
  },
52479
52527
  type: "object"
@@ -55080,6 +55128,10 @@ var openapi_default = {
55080
55128
  items: { format: "uuid", type: "string" },
55081
55129
  type: "array"
55082
55130
  },
55131
+ customer_key: {
55132
+ description: "Customer key for which you want to create the space.",
55133
+ type: "string"
55134
+ },
55083
55135
  device_ids: {
55084
55136
  description: "IDs of the devices that you want to add to the new space.",
55085
55137
  items: { format: "uuid", type: "string" },
@@ -55970,6 +56022,10 @@ var openapi_default = {
55970
56022
  items: { format: "uuid", type: "string" },
55971
56023
  type: "array"
55972
56024
  },
56025
+ customer_key: {
56026
+ description: "Customer key for which you want to update the space.",
56027
+ type: "string"
56028
+ },
55973
56029
  device_ids: {
55974
56030
  description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
55975
56031
  items: { format: "uuid", type: "string" },
@@ -56038,6 +56094,10 @@ var openapi_default = {
56038
56094
  items: { format: "uuid", type: "string" },
56039
56095
  type: "array"
56040
56096
  },
56097
+ customer_key: {
56098
+ description: "Customer key for which you want to update the space.",
56099
+ type: "string"
56100
+ },
56041
56101
  device_ids: {
56042
56102
  description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
56043
56103
  items: { format: "uuid", type: "string" },