@seamapi/types 1.719.0 → 1.721.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.
@@ -100088,10 +100088,18 @@ declare const _default: {
100088
100088
  created_at: {
100089
100089
  type: string;
100090
100090
  };
100091
+ customer_key: {
100092
+ nullable: boolean;
100093
+ type: string;
100094
+ };
100091
100095
  status: {
100092
100096
  enum: string[];
100093
100097
  type: string;
100094
100098
  };
100099
+ unique_provider_resource_key: {
100100
+ nullable: boolean;
100101
+ type: string;
100102
+ };
100095
100103
  updated_at: {
100096
100104
  type: string;
100097
100105
  };
@@ -100168,10 +100176,18 @@ declare const _default: {
100168
100176
  created_at: {
100169
100177
  type: string;
100170
100178
  };
100179
+ customer_key: {
100180
+ nullable: boolean;
100181
+ type: string;
100182
+ };
100171
100183
  status: {
100172
100184
  enum: string[];
100173
100185
  type: string;
100174
100186
  };
100187
+ unique_provider_resource_key: {
100188
+ nullable: boolean;
100189
+ type: string;
100190
+ };
100175
100191
  updated_at: {
100176
100192
  type: string;
100177
100193
  };
@@ -104419,6 +104435,10 @@ declare const _default: {
104419
104435
  format: string;
104420
104436
  type: string;
104421
104437
  };
104438
+ connected_account_id: {
104439
+ format: string;
104440
+ type: string;
104441
+ };
104422
104442
  name: {
104423
104443
  type: string;
104424
104444
  };
@@ -104431,6 +104451,10 @@ declare const _default: {
104431
104451
  devices: {
104432
104452
  items: {
104433
104453
  properties: {
104454
+ connected_account_id: {
104455
+ format: string;
104456
+ type: string;
104457
+ };
104434
104458
  device_id: {
104435
104459
  format: string;
104436
104460
  type: string;
@@ -104535,6 +104559,10 @@ declare const _default: {
104535
104559
  format: string;
104536
104560
  type: string;
104537
104561
  };
104562
+ connected_account_id: {
104563
+ format: string;
104564
+ type: string;
104565
+ };
104538
104566
  name: {
104539
104567
  type: string;
104540
104568
  };
@@ -104547,6 +104575,10 @@ declare const _default: {
104547
104575
  devices: {
104548
104576
  items: {
104549
104577
  properties: {
104578
+ connected_account_id: {
104579
+ format: string;
104580
+ type: string;
104581
+ };
104550
104582
  device_id: {
104551
104583
  format: string;
104552
104584
  type: string;
@@ -170381,6 +170413,8 @@ type Routes = {
170381
170413
  connectors: {
170382
170414
  connector_id: string;
170383
170415
  connector_type: string;
170416
+ customer_key: string | null;
170417
+ unique_provider_resource_key: string | null;
170384
170418
  status: 'active' | 'inactive' | 'error';
170385
170419
  config: {
170386
170420
  [x: string]: any;
@@ -173727,10 +173761,12 @@ type Routes = {
173727
173761
  device_id: string;
173728
173762
  device_type: string;
173729
173763
  name: string;
173764
+ connected_account_id: string;
173730
173765
  }[];
173731
173766
  acs_entrances: {
173732
173767
  acs_entrance_id: string;
173733
173768
  name: string;
173769
+ connected_account_id: string;
173734
173770
  }[];
173735
173771
  needs_review?: boolean | undefined;
173736
173772
  is_draft?: boolean | undefined;
package/dist/index.cjs CHANGED
@@ -56948,15 +56948,22 @@ var openapi_default = {
56948
56948
  connector_id: { type: "string" },
56949
56949
  connector_type: { type: "string" },
56950
56950
  created_at: { type: "string" },
56951
+ customer_key: { nullable: true, type: "string" },
56951
56952
  status: {
56952
56953
  enum: ["active", "inactive", "error"],
56953
56954
  type: "string"
56954
56955
  },
56956
+ unique_provider_resource_key: {
56957
+ nullable: true,
56958
+ type: "string"
56959
+ },
56955
56960
  updated_at: { type: "string" }
56956
56961
  },
56957
56962
  required: [
56958
56963
  "connector_id",
56959
56964
  "connector_type",
56965
+ "customer_key",
56966
+ "unique_provider_resource_key",
56960
56967
  "status",
56961
56968
  "config",
56962
56969
  "created_at",
@@ -57013,15 +57020,22 @@ var openapi_default = {
57013
57020
  connector_id: { type: "string" },
57014
57021
  connector_type: { type: "string" },
57015
57022
  created_at: { type: "string" },
57023
+ customer_key: { nullable: true, type: "string" },
57016
57024
  status: {
57017
57025
  enum: ["active", "inactive", "error"],
57018
57026
  type: "string"
57019
57027
  },
57028
+ unique_provider_resource_key: {
57029
+ nullable: true,
57030
+ type: "string"
57031
+ },
57020
57032
  updated_at: { type: "string" }
57021
57033
  },
57022
57034
  required: [
57023
57035
  "connector_id",
57024
57036
  "connector_type",
57037
+ "customer_key",
57038
+ "unique_provider_resource_key",
57025
57039
  "status",
57026
57040
  "config",
57027
57041
  "created_at",
@@ -60788,9 +60802,17 @@ var openapi_default = {
60788
60802
  format: "uuid",
60789
60803
  type: "string"
60790
60804
  },
60805
+ connected_account_id: {
60806
+ format: "uuid",
60807
+ type: "string"
60808
+ },
60791
60809
  name: { type: "string" }
60792
60810
  },
60793
- required: ["acs_entrance_id", "name"],
60811
+ required: [
60812
+ "acs_entrance_id",
60813
+ "name",
60814
+ "connected_account_id"
60815
+ ],
60794
60816
  type: "object"
60795
60817
  },
60796
60818
  type: "array"
@@ -60798,11 +60820,20 @@ var openapi_default = {
60798
60820
  devices: {
60799
60821
  items: {
60800
60822
  properties: {
60823
+ connected_account_id: {
60824
+ format: "uuid",
60825
+ type: "string"
60826
+ },
60801
60827
  device_id: { format: "uuid", type: "string" },
60802
60828
  device_type: { type: "string" },
60803
60829
  name: { type: "string" }
60804
60830
  },
60805
- required: ["device_id", "device_type", "name"],
60831
+ required: [
60832
+ "device_id",
60833
+ "device_type",
60834
+ "name",
60835
+ "connected_account_id"
60836
+ ],
60806
60837
  type: "object"
60807
60838
  },
60808
60839
  type: "array"
@@ -60886,9 +60917,17 @@ var openapi_default = {
60886
60917
  format: "uuid",
60887
60918
  type: "string"
60888
60919
  },
60920
+ connected_account_id: {
60921
+ format: "uuid",
60922
+ type: "string"
60923
+ },
60889
60924
  name: { type: "string" }
60890
60925
  },
60891
- required: ["acs_entrance_id", "name"],
60926
+ required: [
60927
+ "acs_entrance_id",
60928
+ "name",
60929
+ "connected_account_id"
60930
+ ],
60892
60931
  type: "object"
60893
60932
  },
60894
60933
  type: "array"
@@ -60896,11 +60935,20 @@ var openapi_default = {
60896
60935
  devices: {
60897
60936
  items: {
60898
60937
  properties: {
60938
+ connected_account_id: {
60939
+ format: "uuid",
60940
+ type: "string"
60941
+ },
60899
60942
  device_id: { format: "uuid", type: "string" },
60900
60943
  device_type: { type: "string" },
60901
60944
  name: { type: "string" }
60902
60945
  },
60903
- required: ["device_id", "device_type", "name"],
60946
+ required: [
60947
+ "device_id",
60948
+ "device_type",
60949
+ "name",
60950
+ "connected_account_id"
60951
+ ],
60904
60952
  type: "object"
60905
60953
  },
60906
60954
  type: "array"