@seamapi/types 1.474.0 → 1.476.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +396 -2
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +663 -44
  4. package/dist/index.cjs +396 -2
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/batch.d.ts +55 -55
  7. package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +21 -0
  8. package/lib/seam/connect/models/customization_profiles/customization_profile.js +9 -0
  9. package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -0
  10. package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +11 -11
  11. package/lib/seam/connect/models/devices/capability-properties/access-code.js +1 -0
  12. package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
  13. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
  14. package/lib/seam/connect/models/devices/device.d.ts +7 -7
  15. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
  16. package/lib/seam/connect/models/index.d.ts +1 -0
  17. package/lib/seam/connect/models/index.js +1 -0
  18. package/lib/seam/connect/models/index.js.map +1 -1
  19. package/lib/seam/connect/openapi.d.ts +520 -0
  20. package/lib/seam/connect/openapi.js +384 -0
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +95 -17
  23. package/lib/seam/connect/schemas.d.ts +1 -1
  24. package/lib/seam/connect/schemas.js +1 -1
  25. package/lib/seam/connect/schemas.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +11 -0
  28. package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +1 -0
  29. package/src/lib/seam/connect/models/index.ts +1 -0
  30. package/src/lib/seam/connect/openapi.ts +384 -0
  31. package/src/lib/seam/connect/route-types.ts +95 -0
  32. package/src/lib/seam/connect/schemas.ts +1 -0
@@ -11503,6 +11503,7 @@ export default {
11503
11503
  'at_least_three_unique_digits',
11504
11504
  'cannot_contain_089',
11505
11505
  'cannot_contain_0789',
11506
+ 'unique_first_four_digits',
11506
11507
  ],
11507
11508
  type: 'string',
11508
11509
  },
@@ -56056,6 +56057,389 @@ export default {
56056
56057
  'x-title': 'Create a Workspace',
56057
56058
  },
56058
56059
  },
56060
+ '/workspaces/customization_profiles/create': {
56061
+ post: {
56062
+ description: 'Updates the customization profile for the workspace.',
56063
+ operationId: 'workspacesCustomizationProfilesCreatePost',
56064
+ requestBody: {
56065
+ content: {
56066
+ 'application/json': {
56067
+ schema: {
56068
+ properties: {
56069
+ primary_color: { type: 'string' },
56070
+ secondary_color: { type: 'string' },
56071
+ },
56072
+ required: ['primary_color', 'secondary_color'],
56073
+ type: 'object',
56074
+ },
56075
+ },
56076
+ },
56077
+ },
56078
+ responses: {
56079
+ 200: {
56080
+ content: {
56081
+ 'application/json': {
56082
+ schema: {
56083
+ properties: {
56084
+ customization_profile: {
56085
+ properties: {
56086
+ customization_profile_id: {
56087
+ format: 'uuid',
56088
+ type: 'string',
56089
+ },
56090
+ logo_url: { type: 'string' },
56091
+ primary_color: { type: 'string' },
56092
+ secondary_color: { type: 'string' },
56093
+ workspace_id: { format: 'uuid', type: 'string' },
56094
+ },
56095
+ required: ['workspace_id', 'customization_profile_id'],
56096
+ type: 'object',
56097
+ },
56098
+ ok: { type: 'boolean' },
56099
+ },
56100
+ required: ['customization_profile', 'ok'],
56101
+ type: 'object',
56102
+ },
56103
+ },
56104
+ },
56105
+ description: 'OK',
56106
+ },
56107
+ 400: { description: 'Bad Request' },
56108
+ 401: { description: 'Unauthorized' },
56109
+ },
56110
+ security: [{ client_session_with_customer: [] }],
56111
+ summary: '/workspaces/customization_profiles/create',
56112
+ tags: ['/workspaces'],
56113
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56114
+ 'x-fern-sdk-method-name': 'create',
56115
+ 'x-fern-sdk-return-value': 'customization_profile',
56116
+ 'x-response-key': 'customization_profile',
56117
+ 'x-title': 'Update Customization Profile',
56118
+ },
56119
+ },
56120
+ '/workspaces/customization_profiles/get': {
56121
+ get: {
56122
+ description: 'Retrieves the customization profile for the workspace.',
56123
+ operationId: 'workspacesCustomizationProfilesGetGet',
56124
+ parameters: [
56125
+ {
56126
+ in: 'query',
56127
+ name: 'customization_profile_id',
56128
+ required: true,
56129
+ schema: { format: 'uuid', type: 'string' },
56130
+ },
56131
+ ],
56132
+ responses: {
56133
+ 200: {
56134
+ content: {
56135
+ 'application/json': {
56136
+ schema: {
56137
+ properties: {
56138
+ customization_profile: {
56139
+ properties: {
56140
+ customization_profile_id: {
56141
+ format: 'uuid',
56142
+ type: 'string',
56143
+ },
56144
+ logo_url: { type: 'string' },
56145
+ primary_color: { type: 'string' },
56146
+ secondary_color: { type: 'string' },
56147
+ workspace_id: { format: 'uuid', type: 'string' },
56148
+ },
56149
+ required: ['workspace_id', 'customization_profile_id'],
56150
+ type: 'object',
56151
+ },
56152
+ ok: { type: 'boolean' },
56153
+ },
56154
+ required: ['customization_profile', 'ok'],
56155
+ type: 'object',
56156
+ },
56157
+ },
56158
+ },
56159
+ description: 'OK',
56160
+ },
56161
+ 400: { description: 'Bad Request' },
56162
+ 401: { description: 'Unauthorized' },
56163
+ },
56164
+ security: [{ client_session_with_customer: [] }],
56165
+ summary: '/workspaces/customization_profiles/get',
56166
+ tags: ['/workspaces'],
56167
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56168
+ 'x-fern-sdk-method-name': 'get',
56169
+ 'x-fern-sdk-return-value': 'customization_profile',
56170
+ 'x-response-key': 'customization_profile',
56171
+ 'x-title': 'Get Customization Profile',
56172
+ },
56173
+ post: {
56174
+ description: 'Retrieves the customization profile for the workspace.',
56175
+ operationId: 'workspacesCustomizationProfilesGetPost',
56176
+ requestBody: {
56177
+ content: {
56178
+ 'application/json': {
56179
+ schema: {
56180
+ properties: {
56181
+ customization_profile_id: { format: 'uuid', type: 'string' },
56182
+ },
56183
+ required: ['customization_profile_id'],
56184
+ type: 'object',
56185
+ },
56186
+ },
56187
+ },
56188
+ },
56189
+ responses: {
56190
+ 200: {
56191
+ content: {
56192
+ 'application/json': {
56193
+ schema: {
56194
+ properties: {
56195
+ customization_profile: {
56196
+ properties: {
56197
+ customization_profile_id: {
56198
+ format: 'uuid',
56199
+ type: 'string',
56200
+ },
56201
+ logo_url: { type: 'string' },
56202
+ primary_color: { type: 'string' },
56203
+ secondary_color: { type: 'string' },
56204
+ workspace_id: { format: 'uuid', type: 'string' },
56205
+ },
56206
+ required: ['workspace_id', 'customization_profile_id'],
56207
+ type: 'object',
56208
+ },
56209
+ ok: { type: 'boolean' },
56210
+ },
56211
+ required: ['customization_profile', 'ok'],
56212
+ type: 'object',
56213
+ },
56214
+ },
56215
+ },
56216
+ description: 'OK',
56217
+ },
56218
+ 400: { description: 'Bad Request' },
56219
+ 401: { description: 'Unauthorized' },
56220
+ },
56221
+ security: [{ client_session_with_customer: [] }],
56222
+ summary: '/workspaces/customization_profiles/get',
56223
+ tags: ['/workspaces'],
56224
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56225
+ 'x-fern-sdk-method-name': 'get',
56226
+ 'x-fern-sdk-return-value': 'customization_profile',
56227
+ 'x-response-key': 'customization_profile',
56228
+ 'x-title': 'Get Customization Profile',
56229
+ },
56230
+ },
56231
+ '/workspaces/customization_profiles/list': {
56232
+ get: {
56233
+ description: 'Retrieves the customization profile for the workspace.',
56234
+ operationId: 'workspacesCustomizationProfilesListGet',
56235
+ responses: {
56236
+ 200: {
56237
+ content: {
56238
+ 'application/json': {
56239
+ schema: {
56240
+ properties: {
56241
+ customization_profiles: {
56242
+ items: {
56243
+ properties: {
56244
+ customization_profile_id: {
56245
+ format: 'uuid',
56246
+ type: 'string',
56247
+ },
56248
+ logo_url: { type: 'string' },
56249
+ primary_color: { type: 'string' },
56250
+ secondary_color: { type: 'string' },
56251
+ workspace_id: { format: 'uuid', type: 'string' },
56252
+ },
56253
+ required: ['workspace_id', 'customization_profile_id'],
56254
+ type: 'object',
56255
+ },
56256
+ type: 'array',
56257
+ },
56258
+ ok: { type: 'boolean' },
56259
+ },
56260
+ required: ['customization_profiles', 'ok'],
56261
+ type: 'object',
56262
+ },
56263
+ },
56264
+ },
56265
+ description: 'OK',
56266
+ },
56267
+ 400: { description: 'Bad Request' },
56268
+ 401: { description: 'Unauthorized' },
56269
+ },
56270
+ security: [{ client_session_with_customer: [] }],
56271
+ summary: '/workspaces/customization_profiles/list',
56272
+ tags: ['/workspaces'],
56273
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56274
+ 'x-fern-sdk-method-name': 'list',
56275
+ 'x-fern-sdk-return-value': 'customization_profiles',
56276
+ 'x-response-key': 'customization_profiles',
56277
+ 'x-title': 'Get Customization Profile',
56278
+ },
56279
+ post: {
56280
+ description: 'Retrieves the customization profile for the workspace.',
56281
+ operationId: 'workspacesCustomizationProfilesListPost',
56282
+ responses: {
56283
+ 200: {
56284
+ content: {
56285
+ 'application/json': {
56286
+ schema: {
56287
+ properties: {
56288
+ customization_profiles: {
56289
+ items: {
56290
+ properties: {
56291
+ customization_profile_id: {
56292
+ format: 'uuid',
56293
+ type: 'string',
56294
+ },
56295
+ logo_url: { type: 'string' },
56296
+ primary_color: { type: 'string' },
56297
+ secondary_color: { type: 'string' },
56298
+ workspace_id: { format: 'uuid', type: 'string' },
56299
+ },
56300
+ required: ['workspace_id', 'customization_profile_id'],
56301
+ type: 'object',
56302
+ },
56303
+ type: 'array',
56304
+ },
56305
+ ok: { type: 'boolean' },
56306
+ },
56307
+ required: ['customization_profiles', 'ok'],
56308
+ type: 'object',
56309
+ },
56310
+ },
56311
+ },
56312
+ description: 'OK',
56313
+ },
56314
+ 400: { description: 'Bad Request' },
56315
+ 401: { description: 'Unauthorized' },
56316
+ },
56317
+ security: [{ client_session_with_customer: [] }],
56318
+ summary: '/workspaces/customization_profiles/list',
56319
+ tags: ['/workspaces'],
56320
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56321
+ 'x-fern-sdk-method-name': 'list',
56322
+ 'x-fern-sdk-return-value': 'customization_profiles',
56323
+ 'x-response-key': 'customization_profiles',
56324
+ 'x-title': 'Get Customization Profile',
56325
+ },
56326
+ },
56327
+ '/workspaces/customization_profiles/update': {
56328
+ patch: {
56329
+ description: 'Updates the customization profile for the workspace.',
56330
+ operationId: 'workspacesCustomizationProfilesUpdatePatch',
56331
+ requestBody: {
56332
+ content: {
56333
+ 'application/json': {
56334
+ schema: {
56335
+ properties: {
56336
+ customization_profile_id: { format: 'uuid', type: 'string' },
56337
+ primary_color: { type: 'string' },
56338
+ secondary_color: { type: 'string' },
56339
+ },
56340
+ required: ['customization_profile_id'],
56341
+ type: 'object',
56342
+ },
56343
+ },
56344
+ },
56345
+ },
56346
+ responses: {
56347
+ 200: {
56348
+ content: {
56349
+ 'application/json': {
56350
+ schema: {
56351
+ properties: { ok: { type: 'boolean' } },
56352
+ required: ['ok'],
56353
+ type: 'object',
56354
+ },
56355
+ },
56356
+ },
56357
+ description: 'OK',
56358
+ },
56359
+ 400: { description: 'Bad Request' },
56360
+ 401: { description: 'Unauthorized' },
56361
+ },
56362
+ security: [{ client_session_with_customer: [] }],
56363
+ summary: '/workspaces/customization_profiles/update',
56364
+ tags: ['/workspaces'],
56365
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56366
+ 'x-fern-sdk-method-name': 'update',
56367
+ 'x-response-key': null,
56368
+ 'x-title': 'Update Customization Profile',
56369
+ },
56370
+ post: {
56371
+ description: 'Updates the customization profile for the workspace.',
56372
+ operationId: 'workspacesCustomizationProfilesUpdatePost',
56373
+ requestBody: {
56374
+ content: {
56375
+ 'application/json': {
56376
+ schema: {
56377
+ properties: {
56378
+ customization_profile_id: { format: 'uuid', type: 'string' },
56379
+ primary_color: { type: 'string' },
56380
+ secondary_color: { type: 'string' },
56381
+ },
56382
+ required: ['customization_profile_id'],
56383
+ type: 'object',
56384
+ },
56385
+ },
56386
+ },
56387
+ },
56388
+ responses: {
56389
+ 200: {
56390
+ content: {
56391
+ 'application/json': {
56392
+ schema: {
56393
+ properties: { ok: { type: 'boolean' } },
56394
+ required: ['ok'],
56395
+ type: 'object',
56396
+ },
56397
+ },
56398
+ },
56399
+ description: 'OK',
56400
+ },
56401
+ 400: { description: 'Bad Request' },
56402
+ 401: { description: 'Unauthorized' },
56403
+ },
56404
+ security: [{ client_session_with_customer: [] }],
56405
+ summary: '/workspaces/customization_profiles/update',
56406
+ tags: ['/workspaces'],
56407
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56408
+ 'x-fern-sdk-method-name': 'update',
56409
+ 'x-response-key': null,
56410
+ 'x-title': 'Update Customization Profile',
56411
+ },
56412
+ },
56413
+ '/workspaces/customization_profiles/upload_images': {
56414
+ post: {
56415
+ description: 'Uploads a logo for the customization profile.',
56416
+ operationId: 'workspacesCustomizationProfilesUploadImagesPost',
56417
+ responses: {
56418
+ 200: {
56419
+ content: {
56420
+ 'application/json': {
56421
+ schema: {
56422
+ properties: { ok: { type: 'boolean' } },
56423
+ required: ['ok'],
56424
+ type: 'object',
56425
+ },
56426
+ },
56427
+ },
56428
+ description: 'OK',
56429
+ },
56430
+ 400: { description: 'Bad Request' },
56431
+ 401: { description: 'Unauthorized' },
56432
+ },
56433
+ security: [{ client_session_with_customer: [] }],
56434
+ summary: '/workspaces/customization_profiles/upload_images',
56435
+ tags: ['/workspaces'],
56436
+ 'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
56437
+ 'x-fern-sdk-method-name': 'upload_images',
56438
+ 'x-response-key': null,
56439
+ 'x-title': 'Upload Customization Profile Logo',
56440
+ 'x-undocumented': 'Internal endpoint for customer portals.',
56441
+ },
56442
+ },
56059
56443
  '/workspaces/find_resources': {
56060
56444
  get: {
56061
56445
  description: 'Search for resources inside a workspace.',
@@ -12122,6 +12122,7 @@ export type Routes = {
12122
12122
  | 'at_least_three_unique_digits'
12123
12123
  | 'cannot_contain_089'
12124
12124
  | 'cannot_contain_0789'
12125
+ | 'unique_first_four_digits'
12125
12126
  }
12126
12127
  | {
12127
12128
  constraint_type:
@@ -15847,6 +15848,7 @@ export type Routes = {
15847
15848
  | 'at_least_three_unique_digits'
15848
15849
  | 'cannot_contain_089'
15849
15850
  | 'cannot_contain_0789'
15851
+ | 'unique_first_four_digits'
15850
15852
  }
15851
15853
  | {
15852
15854
  constraint_type:
@@ -33386,6 +33388,7 @@ export type Routes = {
33386
33388
  | 'at_least_three_unique_digits'
33387
33389
  | 'cannot_contain_089'
33388
33390
  | 'cannot_contain_0789'
33391
+ | 'unique_first_four_digits'
33389
33392
  }
33390
33393
  | {
33391
33394
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -35103,6 +35106,7 @@ export type Routes = {
35103
35106
  | 'at_least_three_unique_digits'
35104
35107
  | 'cannot_contain_089'
35105
35108
  | 'cannot_contain_0789'
35109
+ | 'unique_first_four_digits'
35106
35110
  }
35107
35111
  | {
35108
35112
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -42639,6 +42643,7 @@ export type Routes = {
42639
42643
  | 'at_least_three_unique_digits'
42640
42644
  | 'cannot_contain_089'
42641
42645
  | 'cannot_contain_0789'
42646
+ | 'unique_first_four_digits'
42642
42647
  }
42643
42648
  | {
42644
42649
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -44145,6 +44150,7 @@ export type Routes = {
44145
44150
  | 'at_least_three_unique_digits'
44146
44151
  | 'cannot_contain_089'
44147
44152
  | 'cannot_contain_0789'
44153
+ | 'unique_first_four_digits'
44148
44154
  }
44149
44155
  | {
44150
44156
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -45826,6 +45832,7 @@ export type Routes = {
45826
45832
  | 'at_least_three_unique_digits'
45827
45833
  | 'cannot_contain_089'
45828
45834
  | 'cannot_contain_0789'
45835
+ | 'unique_first_four_digits'
45829
45836
  }
45830
45837
  | {
45831
45838
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -47331,6 +47338,7 @@ export type Routes = {
47331
47338
  | 'at_least_three_unique_digits'
47332
47339
  | 'cannot_contain_089'
47333
47340
  | 'cannot_contain_0789'
47341
+ | 'unique_first_four_digits'
47334
47342
  }
47335
47343
  | {
47336
47344
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -54683,6 +54691,7 @@ export type Routes = {
54683
54691
  | 'at_least_three_unique_digits'
54684
54692
  | 'cannot_contain_089'
54685
54693
  | 'cannot_contain_0789'
54694
+ | 'unique_first_four_digits'
54686
54695
  }
54687
54696
  | {
54688
54697
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -56188,6 +56197,7 @@ export type Routes = {
56188
56197
  | 'at_least_three_unique_digits'
56189
56198
  | 'cannot_contain_089'
56190
56199
  | 'cannot_contain_0789'
56200
+ | 'unique_first_four_digits'
56191
56201
  }
56192
56202
  | {
56193
56203
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -66138,6 +66148,7 @@ export type Routes = {
66138
66148
  | 'at_least_three_unique_digits'
66139
66149
  | 'cannot_contain_089'
66140
66150
  | 'cannot_contain_0789'
66151
+ | 'unique_first_four_digits'
66141
66152
  }
66142
66153
  | {
66143
66154
  constraint_type:
@@ -72689,6 +72700,7 @@ export type Routes = {
72689
72700
  | 'at_least_three_unique_digits'
72690
72701
  | 'cannot_contain_089'
72691
72702
  | 'cannot_contain_0789'
72703
+ | 'unique_first_four_digits'
72692
72704
  }
72693
72705
  | {
72694
72706
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -77200,6 +77212,7 @@ export type Routes = {
77200
77212
  | 'at_least_three_unique_digits'
77201
77213
  | 'cannot_contain_089'
77202
77214
  | 'cannot_contain_0789'
77215
+ | 'unique_first_four_digits'
77203
77216
  }
77204
77217
  | {
77205
77218
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -78705,6 +78718,7 @@ export type Routes = {
78705
78718
  | 'at_least_three_unique_digits'
78706
78719
  | 'cannot_contain_089'
78707
78720
  | 'cannot_contain_0789'
78721
+ | 'unique_first_four_digits'
78708
78722
  }
78709
78723
  | {
78710
78724
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -86913,6 +86927,7 @@ export type Routes = {
86913
86927
  | 'at_least_three_unique_digits'
86914
86928
  | 'cannot_contain_089'
86915
86929
  | 'cannot_contain_0789'
86930
+ | 'unique_first_four_digits'
86916
86931
  }
86917
86932
  | {
86918
86933
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -88420,6 +88435,7 @@ export type Routes = {
88420
88435
  | 'at_least_three_unique_digits'
88421
88436
  | 'cannot_contain_089'
88422
88437
  | 'cannot_contain_0789'
88438
+ | 'unique_first_four_digits'
88423
88439
  }
88424
88440
  | {
88425
88441
  constraint_type: 'name_length' | 'name_must_be_unique'
@@ -89834,6 +89850,84 @@ export type Routes = {
89834
89850
  }
89835
89851
  }
89836
89852
  }
89853
+ '/workspaces/customization_profiles/create': {
89854
+ route: '/workspaces/customization_profiles/create'
89855
+ method: 'POST'
89856
+ queryParams: {}
89857
+ jsonBody: {
89858
+ primary_color: string
89859
+ secondary_color: string
89860
+ }
89861
+ commonParams: {}
89862
+ formData: {}
89863
+ jsonResponse: {
89864
+ customization_profile: {
89865
+ workspace_id: string
89866
+ customization_profile_id: string
89867
+ logo_url?: string | undefined
89868
+ primary_color?: string | undefined
89869
+ secondary_color?: string | undefined
89870
+ }
89871
+ }
89872
+ }
89873
+ '/workspaces/customization_profiles/get': {
89874
+ route: '/workspaces/customization_profiles/get'
89875
+ method: 'POST' | 'GET'
89876
+ queryParams: {}
89877
+ jsonBody: {}
89878
+ commonParams: {
89879
+ customization_profile_id: string
89880
+ }
89881
+ formData: {}
89882
+ jsonResponse: {
89883
+ customization_profile: {
89884
+ workspace_id: string
89885
+ customization_profile_id: string
89886
+ logo_url?: string | undefined
89887
+ primary_color?: string | undefined
89888
+ secondary_color?: string | undefined
89889
+ }
89890
+ }
89891
+ }
89892
+ '/workspaces/customization_profiles/list': {
89893
+ route: '/workspaces/customization_profiles/list'
89894
+ method: 'POST' | 'GET'
89895
+ queryParams: {}
89896
+ jsonBody: {}
89897
+ commonParams: {}
89898
+ formData: {}
89899
+ jsonResponse: {
89900
+ customization_profiles: {
89901
+ workspace_id: string
89902
+ customization_profile_id: string
89903
+ logo_url?: string | undefined
89904
+ primary_color?: string | undefined
89905
+ secondary_color?: string | undefined
89906
+ }[]
89907
+ }
89908
+ }
89909
+ '/workspaces/customization_profiles/update': {
89910
+ route: '/workspaces/customization_profiles/update'
89911
+ method: 'POST' | 'PATCH'
89912
+ queryParams: {}
89913
+ jsonBody: {
89914
+ customization_profile_id: string
89915
+ primary_color?: string | undefined
89916
+ secondary_color?: string | undefined
89917
+ }
89918
+ commonParams: {}
89919
+ formData: {}
89920
+ jsonResponse: {}
89921
+ }
89922
+ '/workspaces/customization_profiles/upload_images': {
89923
+ route: '/workspaces/customization_profiles/upload_images'
89924
+ method: 'POST'
89925
+ queryParams: {}
89926
+ jsonBody: {}
89927
+ commonParams: {}
89928
+ formData: {}
89929
+ jsonResponse: {}
89930
+ }
89837
89931
  '/workspaces/find_resources': {
89838
89932
  route: '/workspaces/find_resources'
89839
89933
  method: 'GET' | 'POST'
@@ -90690,6 +90784,7 @@ export type Routes = {
90690
90784
  | 'at_least_three_unique_digits'
90691
90785
  | 'cannot_contain_089'
90692
90786
  | 'cannot_contain_0789'
90787
+ | 'unique_first_four_digits'
90693
90788
  }
90694
90789
  | {
90695
90790
  constraint_type:
@@ -18,6 +18,7 @@ export {
18
18
  connect_webview,
19
19
  connected_account,
20
20
  custom_metadata,
21
+ customization_profile,
21
22
  device,
22
23
  device_provider,
23
24
  instant_key,