@seamapi/types 1.478.0 → 1.479.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.479.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',
@@ -56162,13 +56165,15 @@ export default {
56162
56165
  type: 'string',
56163
56166
  },
56164
56167
  logo_url: { format: 'uri', type: 'string' },
56168
+ name: { nullable: true, type: 'string' },
56165
56169
  primary_color: { type: 'string' },
56166
56170
  secondary_color: { type: 'string' },
56167
56171
  workspace_id: { format: 'uuid', type: 'string' },
56168
56172
  },
56169
56173
  required: [
56170
- 'customization_profile_id',
56171
56174
  'workspace_id',
56175
+ 'name',
56176
+ 'customization_profile_id',
56172
56177
  'created_at',
56173
56178
  ],
56174
56179
  type: 'object',
@@ -56229,13 +56234,15 @@ export default {
56229
56234
  type: 'string',
56230
56235
  },
56231
56236
  logo_url: { format: 'uri', type: 'string' },
56237
+ name: { nullable: true, type: 'string' },
56232
56238
  primary_color: { type: 'string' },
56233
56239
  secondary_color: { type: 'string' },
56234
56240
  workspace_id: { format: 'uuid', type: 'string' },
56235
56241
  },
56236
56242
  required: [
56237
- 'customization_profile_id',
56238
56243
  'workspace_id',
56244
+ 'name',
56245
+ 'customization_profile_id',
56239
56246
  'created_at',
56240
56247
  ],
56241
56248
  type: 'object',
@@ -56286,13 +56293,15 @@ export default {
56286
56293
  type: 'string',
56287
56294
  },
56288
56295
  logo_url: { format: 'uri', type: 'string' },
56296
+ name: { nullable: true, type: 'string' },
56289
56297
  primary_color: { type: 'string' },
56290
56298
  secondary_color: { type: 'string' },
56291
56299
  workspace_id: { format: 'uuid', type: 'string' },
56292
56300
  },
56293
56301
  required: [
56294
- 'customization_profile_id',
56295
56302
  'workspace_id',
56303
+ 'name',
56304
+ 'customization_profile_id',
56296
56305
  'created_at',
56297
56306
  ],
56298
56307
  type: 'object',
@@ -56343,13 +56352,15 @@ export default {
56343
56352
  type: 'string',
56344
56353
  },
56345
56354
  logo_url: { format: 'uri', type: 'string' },
56355
+ name: { nullable: true, type: 'string' },
56346
56356
  primary_color: { type: 'string' },
56347
56357
  secondary_color: { type: 'string' },
56348
56358
  workspace_id: { format: 'uuid', type: 'string' },
56349
56359
  },
56350
56360
  required: [
56351
- 'customization_profile_id',
56352
56361
  'workspace_id',
56362
+ 'name',
56363
+ 'customization_profile_id',
56353
56364
  'created_at',
56354
56365
  ],
56355
56366
  type: 'object',
@@ -56392,6 +56403,7 @@ export default {
56392
56403
  schema: {
56393
56404
  properties: {
56394
56405
  customization_profile_id: { format: 'uuid', type: 'string' },
56406
+ name: { nullable: true, type: 'string' },
56395
56407
  primary_color: { type: 'string' },
56396
56408
  secondary_color: { type: 'string' },
56397
56409
  },
@@ -56435,6 +56447,7 @@ export default {
56435
56447
  schema: {
56436
56448
  properties: {
56437
56449
  customization_profile_id: { format: 'uuid', type: 'string' },
56450
+ name: { nullable: true, type: 'string' },
56438
56451
  primary_color: { type: 'string' },
56439
56452
  secondary_color: { type: 'string' },
56440
56453
  },
@@ -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
  }