@seamapi/types 1.14.0 → 1.16.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.
@@ -2633,6 +2633,9 @@ declare const _default: {
2633
2633
  format: string;
2634
2634
  type: string;
2635
2635
  };
2636
+ user_identifier_key: {
2637
+ type: string;
2638
+ };
2636
2639
  };
2637
2640
  type: string;
2638
2641
  };
@@ -4462,8 +4465,13 @@ declare const _default: {
4462
4465
  type: string;
4463
4466
  };
4464
4467
  code: {
4465
- pattern: string;
4466
- type: string;
4468
+ oneOf: ({
4469
+ pattern: string;
4470
+ type: string;
4471
+ } | {
4472
+ pattern?: never;
4473
+ type?: never;
4474
+ })[];
4467
4475
  };
4468
4476
  };
4469
4477
  required: string[];
@@ -4493,6 +4501,7 @@ declare const _default: {
4493
4501
  type: string;
4494
4502
  };
4495
4503
  code: {
4504
+ nullable: boolean;
4496
4505
  type: string;
4497
4506
  };
4498
4507
  created_at: {
@@ -4652,6 +4661,7 @@ declare const _default: {
4652
4661
  type: string;
4653
4662
  };
4654
4663
  code: {
4664
+ nullable: boolean;
4655
4665
  type: string;
4656
4666
  };
4657
4667
  created_at: {
@@ -4747,6 +4757,7 @@ declare const _default: {
4747
4757
  type: string;
4748
4758
  };
4749
4759
  code: {
4760
+ nullable: boolean;
4750
4761
  type: string;
4751
4762
  };
4752
4763
  created_at: {
@@ -4872,60 +4883,23 @@ declare const _default: {
4872
4883
  };
4873
4884
  };
4874
4885
  '/acs/systems/list': {
4875
- get: {
4886
+ post: {
4876
4887
  operationId: string;
4877
- responses: {
4878
- 200: {
4879
- content: {
4880
- 'application/json': {
4881
- schema: {
4882
- properties: {
4883
- acs_systems: {
4884
- items: {
4885
- $ref: string;
4886
- };
4887
- type: string;
4888
- };
4889
- ok: {
4890
- type: string;
4891
- };
4888
+ requestBody: {
4889
+ content: {
4890
+ 'application/json': {
4891
+ schema: {
4892
+ properties: {
4893
+ connected_account_id: {
4894
+ format: string;
4895
+ type: string;
4892
4896
  };
4893
- required: string[];
4894
- type: string;
4895
4897
  };
4898
+ type: string;
4896
4899
  };
4897
4900
  };
4898
- description: string;
4899
- };
4900
- 400: {
4901
- description: string;
4902
- };
4903
- 401: {
4904
- description: string;
4905
4901
  };
4906
4902
  };
4907
- security: ({
4908
- access_token: never[];
4909
- seam_workspace: never[];
4910
- seam_client_session_token?: never;
4911
- client_session_token?: never;
4912
- } | {
4913
- seam_client_session_token: never[];
4914
- access_token?: never;
4915
- seam_workspace?: never;
4916
- client_session_token?: never;
4917
- } | {
4918
- client_session_token: never[];
4919
- access_token?: never;
4920
- seam_workspace?: never;
4921
- seam_client_session_token?: never;
4922
- })[];
4923
- summary: string;
4924
- tags: never[];
4925
- 'x-fern-ignore': boolean;
4926
- };
4927
- post: {
4928
- operationId: string;
4929
4903
  responses: {
4930
4904
  200: {
4931
4905
  content: {
@@ -7070,6 +7044,9 @@ declare const _default: {
7070
7044
  enum: string[];
7071
7045
  type: string;
7072
7046
  };
7047
+ user_identifier_key: {
7048
+ type: string;
7049
+ };
7073
7050
  };
7074
7051
  type: string;
7075
7052
  };
@@ -7349,6 +7326,9 @@ declare const _default: {
7349
7326
  enum: string[];
7350
7327
  type: string;
7351
7328
  };
7329
+ user_identifier_key: {
7330
+ type: string;
7331
+ };
7352
7332
  };
7353
7333
  type: string;
7354
7334
  };
@@ -8246,6 +8226,9 @@ declare const _default: {
8246
8226
  enum: string[];
8247
8227
  type: string;
8248
8228
  };
8229
+ user_identifier_key: {
8230
+ type: string;
8231
+ };
8249
8232
  };
8250
8233
  type: string;
8251
8234
  };
@@ -9953,6 +9936,9 @@ declare const _default: {
9953
9936
  enum: string[];
9954
9937
  type: string;
9955
9938
  };
9939
+ user_identifier_key: {
9940
+ type: string;
9941
+ };
9956
9942
  };
9957
9943
  type: string;
9958
9944
  };
@@ -10892,6 +10878,7 @@ interface Routes {
10892
10878
  commonParams: {
10893
10879
  device_id?: string | undefined;
10894
10880
  access_code_ids?: string[] | undefined;
10881
+ user_identifier_key?: string | undefined;
10895
10882
  };
10896
10883
  formData: {};
10897
10884
  jsonResponse: {
@@ -11288,7 +11275,7 @@ interface Routes {
11288
11275
  jsonBody: {};
11289
11276
  commonParams: {
11290
11277
  acs_user_id: string;
11291
- code: string;
11278
+ code?: string | undefined;
11292
11279
  };
11293
11280
  formData: {};
11294
11281
  jsonResponse: {
@@ -11296,7 +11283,7 @@ interface Routes {
11296
11283
  acs_credential_id: string;
11297
11284
  acs_user_id: string;
11298
11285
  acs_system_id: string;
11299
- code: string;
11286
+ code: string | null;
11300
11287
  created_at: string;
11301
11288
  workspace_id: string;
11302
11289
  };
@@ -11327,7 +11314,7 @@ interface Routes {
11327
11314
  acs_credential_id: string;
11328
11315
  acs_user_id: string;
11329
11316
  acs_system_id: string;
11330
- code: string;
11317
+ code: string | null;
11331
11318
  created_at: string;
11332
11319
  workspace_id: string;
11333
11320
  };
@@ -11347,7 +11334,7 @@ interface Routes {
11347
11334
  acs_credential_id: string;
11348
11335
  acs_user_id: string;
11349
11336
  acs_system_id: string;
11350
- code: string;
11337
+ code: string | null;
11351
11338
  created_at: string;
11352
11339
  workspace_id: string;
11353
11340
  }>;
@@ -11377,7 +11364,9 @@ interface Routes {
11377
11364
  method: 'GET' | 'POST';
11378
11365
  queryParams: {};
11379
11366
  jsonBody: {};
11380
- commonParams: {};
11367
+ commonParams: {
11368
+ connected_account_id?: string | undefined;
11369
+ };
11381
11370
  formData: {};
11382
11371
  jsonResponse: {
11383
11372
  acs_systems: Array<{
@@ -12278,6 +12267,7 @@ interface Routes {
12278
12267
  device_ids?: string[] | undefined;
12279
12268
  limit?: number;
12280
12269
  created_before?: string | undefined;
12270
+ user_identifier_key?: string | undefined;
12281
12271
  };
12282
12272
  formData: {};
12283
12273
  jsonResponse: {
@@ -12742,6 +12732,7 @@ interface Routes {
12742
12732
  device_ids?: string[] | undefined;
12743
12733
  limit?: number;
12744
12734
  created_before?: string | undefined;
12735
+ user_identifier_key?: string | undefined;
12745
12736
  };
12746
12737
  formData: {};
12747
12738
  jsonResponse: {
@@ -12960,6 +12951,7 @@ interface Routes {
12960
12951
  device_ids?: string[] | undefined;
12961
12952
  limit?: number;
12962
12953
  created_before?: string | undefined;
12954
+ user_identifier_key?: string | undefined;
12963
12955
  };
12964
12956
  formData: {};
12965
12957
  jsonResponse: {
@@ -13816,6 +13808,7 @@ interface Routes {
13816
13808
  device_ids?: string[] | undefined;
13817
13809
  limit?: number;
13818
13810
  created_before?: string | undefined;
13811
+ user_identifier_key?: string | undefined;
13819
13812
  };
13820
13813
  formData: {};
13821
13814
  jsonResponse: {