@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.
@@ -29098,13 +29098,15 @@ declare const custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString,
29098
29098
  type CustomMetadata = z.output<typeof custom_metadata>;
29099
29099
 
29100
29100
  declare const customization_profile: z.ZodObject<{
29101
- customization_profile_id: z.ZodString;
29102
29101
  workspace_id: z.ZodString;
29102
+ name: z.ZodNullable<z.ZodString>;
29103
+ customization_profile_id: z.ZodString;
29103
29104
  created_at: z.ZodString;
29104
29105
  logo_url: z.ZodOptional<z.ZodString>;
29105
29106
  primary_color: z.ZodOptional<z.ZodString>;
29106
29107
  secondary_color: z.ZodOptional<z.ZodString>;
29107
29108
  }, "strip", z.ZodTypeAny, {
29109
+ name: string | null;
29108
29110
  workspace_id: string;
29109
29111
  created_at: string;
29110
29112
  customization_profile_id: string;
@@ -29112,6 +29114,7 @@ declare const customization_profile: z.ZodObject<{
29112
29114
  primary_color?: string | undefined;
29113
29115
  secondary_color?: string | undefined;
29114
29116
  }, {
29117
+ name: string | null;
29115
29118
  workspace_id: string;
29116
29119
  created_at: string;
29117
29120
  customization_profile_id: string;
@@ -88465,6 +88468,11 @@ declare const _default: {
88465
88468
  'application/json': {
88466
88469
  schema: {
88467
88470
  properties: {
88471
+ name: {
88472
+ default: null;
88473
+ nullable: boolean;
88474
+ type: string;
88475
+ };
88468
88476
  primary_color: {
88469
88477
  type: string;
88470
88478
  };
@@ -88499,6 +88507,10 @@ declare const _default: {
88499
88507
  format: string;
88500
88508
  type: string;
88501
88509
  };
88510
+ name: {
88511
+ nullable: boolean;
88512
+ type: string;
88513
+ };
88502
88514
  primary_color: {
88503
88515
  type: string;
88504
88516
  };
@@ -88581,6 +88593,10 @@ declare const _default: {
88581
88593
  format: string;
88582
88594
  type: string;
88583
88595
  };
88596
+ name: {
88597
+ nullable: boolean;
88598
+ type: string;
88599
+ };
88584
88600
  primary_color: {
88585
88601
  type: string;
88586
88602
  };
@@ -88668,6 +88684,10 @@ declare const _default: {
88668
88684
  format: string;
88669
88685
  type: string;
88670
88686
  };
88687
+ name: {
88688
+ nullable: boolean;
88689
+ type: string;
88690
+ };
88671
88691
  primary_color: {
88672
88692
  type: string;
88673
88693
  };
@@ -88742,6 +88762,10 @@ declare const _default: {
88742
88762
  format: string;
88743
88763
  type: string;
88744
88764
  };
88765
+ name: {
88766
+ nullable: boolean;
88767
+ type: string;
88768
+ };
88745
88769
  primary_color: {
88746
88770
  type: string;
88747
88771
  };
@@ -88816,6 +88840,10 @@ declare const _default: {
88816
88840
  format: string;
88817
88841
  type: string;
88818
88842
  };
88843
+ name: {
88844
+ nullable: boolean;
88845
+ type: string;
88846
+ };
88819
88847
  primary_color: {
88820
88848
  type: string;
88821
88849
  };
@@ -88879,6 +88907,10 @@ declare const _default: {
88879
88907
  format: string;
88880
88908
  type: string;
88881
88909
  };
88910
+ name: {
88911
+ nullable: boolean;
88912
+ type: string;
88913
+ };
88882
88914
  primary_color: {
88883
88915
  type: string;
88884
88916
  };
@@ -88939,6 +88971,10 @@ declare const _default: {
88939
88971
  format: string;
88940
88972
  type: string;
88941
88973
  };
88974
+ name: {
88975
+ nullable: boolean;
88976
+ type: string;
88977
+ };
88942
88978
  primary_color: {
88943
88979
  type: string;
88944
88980
  };
@@ -165672,6 +165708,7 @@ type Routes = {
165672
165708
  method: 'POST';
165673
165709
  queryParams: {};
165674
165710
  jsonBody: {
165711
+ name?: string | null;
165675
165712
  primary_color: string;
165676
165713
  secondary_color: string;
165677
165714
  };
@@ -165680,8 +165717,9 @@ type Routes = {
165680
165717
  jsonResponse: {
165681
165718
  /** A customization profile. */
165682
165719
  customization_profile: {
165683
- customization_profile_id: string;
165684
165720
  workspace_id: string;
165721
+ name: string | null;
165722
+ customization_profile_id: string;
165685
165723
  created_at: string;
165686
165724
  logo_url?: string | undefined;
165687
165725
  primary_color?: string | undefined;
@@ -165701,8 +165739,9 @@ type Routes = {
165701
165739
  jsonResponse: {
165702
165740
  /** A customization profile. */
165703
165741
  customization_profile: {
165704
- customization_profile_id: string;
165705
165742
  workspace_id: string;
165743
+ name: string | null;
165744
+ customization_profile_id: string;
165706
165745
  created_at: string;
165707
165746
  logo_url?: string | undefined;
165708
165747
  primary_color?: string | undefined;
@@ -165719,8 +165758,9 @@ type Routes = {
165719
165758
  formData: {};
165720
165759
  jsonResponse: {
165721
165760
  customization_profiles: {
165722
- customization_profile_id: string;
165723
165761
  workspace_id: string;
165762
+ name: string | null;
165763
+ customization_profile_id: string;
165724
165764
  created_at: string;
165725
165765
  logo_url?: string | undefined;
165726
165766
  primary_color?: string | undefined;
@@ -165734,6 +165774,7 @@ type Routes = {
165734
165774
  queryParams: {};
165735
165775
  jsonBody: {
165736
165776
  customization_profile_id: string;
165777
+ name?: (string | undefined) | null;
165737
165778
  primary_color?: string | undefined;
165738
165779
  secondary_color?: string | undefined;
165739
165780
  };
package/dist/index.cjs CHANGED
@@ -4314,8 +4314,9 @@ var bridge_client_session = zod.z.object({
4314
4314
  Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.
4315
4315
  `);
4316
4316
  var customization_profile = zod.z.object({
4317
- customization_profile_id: zod.z.string().uuid(),
4318
4317
  workspace_id: zod.z.string().uuid(),
4318
+ name: zod.z.string().nullable(),
4319
+ customization_profile_id: zod.z.string().uuid(),
4319
4320
  created_at: zod.z.string().datetime(),
4320
4321
  logo_url: zod.z.string().url().optional(),
4321
4322
  primary_color: zod.z.string().optional(),
@@ -57313,6 +57314,7 @@ var openapi_default = {
57313
57314
  "application/json": {
57314
57315
  schema: {
57315
57316
  properties: {
57317
+ name: { default: null, nullable: true, type: "string" },
57316
57318
  primary_color: { type: "string" },
57317
57319
  secondary_color: { type: "string" }
57318
57320
  },
@@ -57337,13 +57339,15 @@ var openapi_default = {
57337
57339
  type: "string"
57338
57340
  },
57339
57341
  logo_url: { format: "uri", type: "string" },
57342
+ name: { nullable: true, type: "string" },
57340
57343
  primary_color: { type: "string" },
57341
57344
  secondary_color: { type: "string" },
57342
57345
  workspace_id: { format: "uuid", type: "string" }
57343
57346
  },
57344
57347
  required: [
57345
- "customization_profile_id",
57346
57348
  "workspace_id",
57349
+ "name",
57350
+ "customization_profile_id",
57347
57351
  "created_at"
57348
57352
  ],
57349
57353
  type: "object",
@@ -57401,13 +57405,15 @@ var openapi_default = {
57401
57405
  type: "string"
57402
57406
  },
57403
57407
  logo_url: { format: "uri", type: "string" },
57408
+ name: { nullable: true, type: "string" },
57404
57409
  primary_color: { type: "string" },
57405
57410
  secondary_color: { type: "string" },
57406
57411
  workspace_id: { format: "uuid", type: "string" }
57407
57412
  },
57408
57413
  required: [
57409
- "customization_profile_id",
57410
57414
  "workspace_id",
57415
+ "name",
57416
+ "customization_profile_id",
57411
57417
  "created_at"
57412
57418
  ],
57413
57419
  type: "object",
@@ -57468,13 +57474,15 @@ var openapi_default = {
57468
57474
  type: "string"
57469
57475
  },
57470
57476
  logo_url: { format: "uri", type: "string" },
57477
+ name: { nullable: true, type: "string" },
57471
57478
  primary_color: { type: "string" },
57472
57479
  secondary_color: { type: "string" },
57473
57480
  workspace_id: { format: "uuid", type: "string" }
57474
57481
  },
57475
57482
  required: [
57476
- "customization_profile_id",
57477
57483
  "workspace_id",
57484
+ "name",
57485
+ "customization_profile_id",
57478
57486
  "created_at"
57479
57487
  ],
57480
57488
  type: "object",
@@ -57525,13 +57533,15 @@ var openapi_default = {
57525
57533
  type: "string"
57526
57534
  },
57527
57535
  logo_url: { format: "uri", type: "string" },
57536
+ name: { nullable: true, type: "string" },
57528
57537
  primary_color: { type: "string" },
57529
57538
  secondary_color: { type: "string" },
57530
57539
  workspace_id: { format: "uuid", type: "string" }
57531
57540
  },
57532
57541
  required: [
57533
- "customization_profile_id",
57534
57542
  "workspace_id",
57543
+ "name",
57544
+ "customization_profile_id",
57535
57545
  "created_at"
57536
57546
  ],
57537
57547
  type: "object",
@@ -57582,13 +57592,15 @@ var openapi_default = {
57582
57592
  type: "string"
57583
57593
  },
57584
57594
  logo_url: { format: "uri", type: "string" },
57595
+ name: { nullable: true, type: "string" },
57585
57596
  primary_color: { type: "string" },
57586
57597
  secondary_color: { type: "string" },
57587
57598
  workspace_id: { format: "uuid", type: "string" }
57588
57599
  },
57589
57600
  required: [
57590
- "customization_profile_id",
57591
57601
  "workspace_id",
57602
+ "name",
57603
+ "customization_profile_id",
57592
57604
  "created_at"
57593
57605
  ],
57594
57606
  type: "object",
@@ -57631,6 +57643,7 @@ var openapi_default = {
57631
57643
  schema: {
57632
57644
  properties: {
57633
57645
  customization_profile_id: { format: "uuid", type: "string" },
57646
+ name: { nullable: true, type: "string" },
57634
57647
  primary_color: { type: "string" },
57635
57648
  secondary_color: { type: "string" }
57636
57649
  },
@@ -57674,6 +57687,7 @@ var openapi_default = {
57674
57687
  schema: {
57675
57688
  properties: {
57676
57689
  customization_profile_id: { format: "uuid", type: "string" },
57690
+ name: { nullable: true, type: "string" },
57677
57691
  primary_color: { type: "string" },
57678
57692
  secondary_color: { type: "string" }
57679
57693
  },