@seamapi/types 1.478.0 → 1.480.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.
@@ -75752,6 +75752,7 @@ export type Routes = {
75752
75752
  method: 'POST';
75753
75753
  queryParams: {};
75754
75754
  jsonBody: {
75755
+ name?: string | null;
75755
75756
  primary_color: string;
75756
75757
  secondary_color: string;
75757
75758
  };
@@ -75760,8 +75761,9 @@ export type Routes = {
75760
75761
  jsonResponse: {
75761
75762
  /** A customization profile. */
75762
75763
  customization_profile: {
75763
- customization_profile_id: string;
75764
75764
  workspace_id: string;
75765
+ name: string | null;
75766
+ customization_profile_id: string;
75765
75767
  created_at: string;
75766
75768
  logo_url?: string | undefined;
75767
75769
  primary_color?: string | undefined;
@@ -75781,8 +75783,9 @@ export type Routes = {
75781
75783
  jsonResponse: {
75782
75784
  /** A customization profile. */
75783
75785
  customization_profile: {
75784
- customization_profile_id: string;
75785
75786
  workspace_id: string;
75787
+ name: string | null;
75788
+ customization_profile_id: string;
75786
75789
  created_at: string;
75787
75790
  logo_url?: string | undefined;
75788
75791
  primary_color?: string | undefined;
@@ -75799,8 +75802,9 @@ export type Routes = {
75799
75802
  formData: {};
75800
75803
  jsonResponse: {
75801
75804
  customization_profiles: {
75802
- customization_profile_id: string;
75803
75805
  workspace_id: string;
75806
+ name: string | null;
75807
+ customization_profile_id: string;
75804
75808
  created_at: string;
75805
75809
  logo_url?: string | undefined;
75806
75810
  primary_color?: string | undefined;
@@ -75814,6 +75818,7 @@ export type Routes = {
75814
75818
  queryParams: {};
75815
75819
  jsonBody: {
75816
75820
  customization_profile_id: string;
75821
+ name?: (string | undefined) | null;
75817
75822
  primary_color?: string | undefined;
75818
75823
  secondary_color?: string | undefined;
75819
75824
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.478.0",
3
+ "version": "1.480.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,8 +1,9 @@
1
1
  import { z } from 'zod'
2
2
 
3
3
  export const customization_profile = z.object({
4
- customization_profile_id: z.string().uuid(),
5
4
  workspace_id: z.string().uuid(),
5
+ name: z.string().nullable(),
6
+ customization_profile_id: z.string().uuid(),
6
7
  created_at: z.string().datetime(),
7
8
  logo_url: z.string().url().optional(),
8
9
  primary_color: z.string().optional(),
@@ -56074,6 +56074,7 @@ export default {
56074
56074
  'application/json': {
56075
56075
  schema: {
56076
56076
  properties: {
56077
+ name: { default: null, nullable: true, type: 'string' },
56077
56078
  primary_color: { type: 'string' },
56078
56079
  secondary_color: { type: 'string' },
56079
56080
  },
@@ -56098,13 +56099,15 @@ export default {
56098
56099
  type: 'string',
56099
56100
  },
56100
56101
  logo_url: { format: 'uri', type: 'string' },
56102
+ name: { nullable: true, type: 'string' },
56101
56103
  primary_color: { type: 'string' },
56102
56104
  secondary_color: { type: 'string' },
56103
56105
  workspace_id: { format: 'uuid', type: 'string' },
56104
56106
  },
56105
56107
  required: [
56106
- 'customization_profile_id',
56107
56108
  'workspace_id',
56109
+ 'name',
56110
+ 'customization_profile_id',
56108
56111
  'created_at',
56109
56112
  ],
56110
56113
  type: 'object',
@@ -56124,7 +56127,13 @@ export default {
56124
56127
  400: { description: 'Bad Request' },
56125
56128
  401: { description: 'Unauthorized' },
56126
56129
  },
56127
- security: [{ client_session_with_customer: [] }],
56130
+ security: [
56131
+ { client_session: [] },
56132
+ { client_session_with_customer: [] },
56133
+ { pat_with_workspace: [] },
56134
+ { console_session_with_workspace: [] },
56135
+ { api_key: [] },
56136
+ ],
56128
56137
  summary: '/workspaces/customization_profiles/create',
56129
56138
  tags: ['/workspaces'],
56130
56139
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56162,13 +56171,15 @@ export default {
56162
56171
  type: 'string',
56163
56172
  },
56164
56173
  logo_url: { format: 'uri', type: 'string' },
56174
+ name: { nullable: true, type: 'string' },
56165
56175
  primary_color: { type: 'string' },
56166
56176
  secondary_color: { type: 'string' },
56167
56177
  workspace_id: { format: 'uuid', type: 'string' },
56168
56178
  },
56169
56179
  required: [
56170
- 'customization_profile_id',
56171
56180
  'workspace_id',
56181
+ 'name',
56182
+ 'customization_profile_id',
56172
56183
  'created_at',
56173
56184
  ],
56174
56185
  type: 'object',
@@ -56188,7 +56199,13 @@ export default {
56188
56199
  400: { description: 'Bad Request' },
56189
56200
  401: { description: 'Unauthorized' },
56190
56201
  },
56191
- security: [{ client_session_with_customer: [] }],
56202
+ security: [
56203
+ { client_session: [] },
56204
+ { client_session_with_customer: [] },
56205
+ { pat_with_workspace: [] },
56206
+ { console_session_with_workspace: [] },
56207
+ { api_key: [] },
56208
+ ],
56192
56209
  summary: '/workspaces/customization_profiles/get',
56193
56210
  tags: ['/workspaces'],
56194
56211
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56229,13 +56246,15 @@ export default {
56229
56246
  type: 'string',
56230
56247
  },
56231
56248
  logo_url: { format: 'uri', type: 'string' },
56249
+ name: { nullable: true, type: 'string' },
56232
56250
  primary_color: { type: 'string' },
56233
56251
  secondary_color: { type: 'string' },
56234
56252
  workspace_id: { format: 'uuid', type: 'string' },
56235
56253
  },
56236
56254
  required: [
56237
- 'customization_profile_id',
56238
56255
  'workspace_id',
56256
+ 'name',
56257
+ 'customization_profile_id',
56239
56258
  'created_at',
56240
56259
  ],
56241
56260
  type: 'object',
@@ -56255,7 +56274,13 @@ export default {
56255
56274
  400: { description: 'Bad Request' },
56256
56275
  401: { description: 'Unauthorized' },
56257
56276
  },
56258
- security: [{ client_session_with_customer: [] }],
56277
+ security: [
56278
+ { client_session: [] },
56279
+ { client_session_with_customer: [] },
56280
+ { pat_with_workspace: [] },
56281
+ { console_session_with_workspace: [] },
56282
+ { api_key: [] },
56283
+ ],
56259
56284
  summary: '/workspaces/customization_profiles/get',
56260
56285
  tags: ['/workspaces'],
56261
56286
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56286,13 +56311,15 @@ export default {
56286
56311
  type: 'string',
56287
56312
  },
56288
56313
  logo_url: { format: 'uri', type: 'string' },
56314
+ name: { nullable: true, type: 'string' },
56289
56315
  primary_color: { type: 'string' },
56290
56316
  secondary_color: { type: 'string' },
56291
56317
  workspace_id: { format: 'uuid', type: 'string' },
56292
56318
  },
56293
56319
  required: [
56294
- 'customization_profile_id',
56295
56320
  'workspace_id',
56321
+ 'name',
56322
+ 'customization_profile_id',
56296
56323
  'created_at',
56297
56324
  ],
56298
56325
  type: 'object',
@@ -56314,7 +56341,13 @@ export default {
56314
56341
  400: { description: 'Bad Request' },
56315
56342
  401: { description: 'Unauthorized' },
56316
56343
  },
56317
- security: [{ client_session_with_customer: [] }],
56344
+ security: [
56345
+ { client_session: [] },
56346
+ { client_session_with_customer: [] },
56347
+ { pat_with_workspace: [] },
56348
+ { console_session_with_workspace: [] },
56349
+ { api_key: [] },
56350
+ ],
56318
56351
  summary: '/workspaces/customization_profiles/list',
56319
56352
  tags: ['/workspaces'],
56320
56353
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56343,13 +56376,15 @@ export default {
56343
56376
  type: 'string',
56344
56377
  },
56345
56378
  logo_url: { format: 'uri', type: 'string' },
56379
+ name: { nullable: true, type: 'string' },
56346
56380
  primary_color: { type: 'string' },
56347
56381
  secondary_color: { type: 'string' },
56348
56382
  workspace_id: { format: 'uuid', type: 'string' },
56349
56383
  },
56350
56384
  required: [
56351
- 'customization_profile_id',
56352
56385
  'workspace_id',
56386
+ 'name',
56387
+ 'customization_profile_id',
56353
56388
  'created_at',
56354
56389
  ],
56355
56390
  type: 'object',
@@ -56371,7 +56406,13 @@ export default {
56371
56406
  400: { description: 'Bad Request' },
56372
56407
  401: { description: 'Unauthorized' },
56373
56408
  },
56374
- security: [{ client_session_with_customer: [] }],
56409
+ security: [
56410
+ { client_session: [] },
56411
+ { client_session_with_customer: [] },
56412
+ { pat_with_workspace: [] },
56413
+ { console_session_with_workspace: [] },
56414
+ { api_key: [] },
56415
+ ],
56375
56416
  summary: '/workspaces/customization_profiles/list',
56376
56417
  tags: ['/workspaces'],
56377
56418
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56392,6 +56433,7 @@ export default {
56392
56433
  schema: {
56393
56434
  properties: {
56394
56435
  customization_profile_id: { format: 'uuid', type: 'string' },
56436
+ name: { nullable: true, type: 'string' },
56395
56437
  primary_color: { type: 'string' },
56396
56438
  secondary_color: { type: 'string' },
56397
56439
  },
@@ -56417,7 +56459,13 @@ export default {
56417
56459
  400: { description: 'Bad Request' },
56418
56460
  401: { description: 'Unauthorized' },
56419
56461
  },
56420
- security: [{ client_session_with_customer: [] }],
56462
+ security: [
56463
+ { client_session: [] },
56464
+ { client_session_with_customer: [] },
56465
+ { pat_with_workspace: [] },
56466
+ { console_session_with_workspace: [] },
56467
+ { api_key: [] },
56468
+ ],
56421
56469
  summary: '/workspaces/customization_profiles/update',
56422
56470
  tags: ['/workspaces'],
56423
56471
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56435,6 +56483,7 @@ export default {
56435
56483
  schema: {
56436
56484
  properties: {
56437
56485
  customization_profile_id: { format: 'uuid', type: 'string' },
56486
+ name: { nullable: true, type: 'string' },
56438
56487
  primary_color: { type: 'string' },
56439
56488
  secondary_color: { type: 'string' },
56440
56489
  },
@@ -56460,7 +56509,13 @@ export default {
56460
56509
  400: { description: 'Bad Request' },
56461
56510
  401: { description: 'Unauthorized' },
56462
56511
  },
56463
- security: [{ client_session_with_customer: [] }],
56512
+ security: [
56513
+ { client_session: [] },
56514
+ { client_session_with_customer: [] },
56515
+ { pat_with_workspace: [] },
56516
+ { console_session_with_workspace: [] },
56517
+ { api_key: [] },
56518
+ ],
56464
56519
  summary: '/workspaces/customization_profiles/update',
56465
56520
  tags: ['/workspaces'],
56466
56521
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -56490,7 +56545,13 @@ export default {
56490
56545
  400: { description: 'Bad Request' },
56491
56546
  401: { description: 'Unauthorized' },
56492
56547
  },
56493
- security: [{ client_session_with_customer: [] }],
56548
+ security: [
56549
+ { client_session: [] },
56550
+ { client_session_with_customer: [] },
56551
+ { pat_with_workspace: [] },
56552
+ { console_session_with_workspace: [] },
56553
+ { api_key: [] },
56554
+ ],
56494
56555
  summary: '/workspaces/customization_profiles/upload_images',
56495
56556
  tags: ['/workspaces'],
56496
56557
  'x-fern-sdk-group-name': ['workspaces', 'customization_profiles'],
@@ -89899,6 +89899,7 @@ export type Routes = {
89899
89899
  method: 'POST'
89900
89900
  queryParams: {}
89901
89901
  jsonBody: {
89902
+ name?: string | null
89902
89903
  primary_color: string
89903
89904
  secondary_color: string
89904
89905
  }
@@ -89907,8 +89908,9 @@ export type Routes = {
89907
89908
  jsonResponse: {
89908
89909
  /** A customization profile. */
89909
89910
  customization_profile: {
89910
- customization_profile_id: string
89911
89911
  workspace_id: string
89912
+ name: string | null
89913
+ customization_profile_id: string
89912
89914
  created_at: string
89913
89915
  logo_url?: string | undefined
89914
89916
  primary_color?: string | undefined
@@ -89928,8 +89930,9 @@ export type Routes = {
89928
89930
  jsonResponse: {
89929
89931
  /** A customization profile. */
89930
89932
  customization_profile: {
89931
- customization_profile_id: string
89932
89933
  workspace_id: string
89934
+ name: string | null
89935
+ customization_profile_id: string
89933
89936
  created_at: string
89934
89937
  logo_url?: string | undefined
89935
89938
  primary_color?: string | undefined
@@ -89946,8 +89949,9 @@ export type Routes = {
89946
89949
  formData: {}
89947
89950
  jsonResponse: {
89948
89951
  customization_profiles: {
89949
- customization_profile_id: string
89950
89952
  workspace_id: string
89953
+ name: string | null
89954
+ customization_profile_id: string
89951
89955
  created_at: string
89952
89956
  logo_url?: string | undefined
89953
89957
  primary_color?: string | undefined
@@ -89961,6 +89965,7 @@ export type Routes = {
89961
89965
  queryParams: {}
89962
89966
  jsonBody: {
89963
89967
  customization_profile_id: string
89968
+ name?: (string | undefined) | null
89964
89969
  primary_color?: string | undefined
89965
89970
  secondary_color?: string | undefined
89966
89971
  }