@seamapi/types 1.493.0 → 1.495.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.
@@ -19089,13 +19089,13 @@ export type Routes = {
19089
19089
  expires_at: string;
19090
19090
  /** ID of the customization profile associated with the Instant Key. */
19091
19091
  customization_profile_id?: string | undefined;
19092
- /** Customization profile associated with the Instant Key. */
19093
- customization_profile?: {
19094
- /** Primary color of the customization profile. */
19092
+ /** Customization applied to the Instant Key UI. */
19093
+ customization?: {
19094
+ /** Primary color used in the Instant Key UI. */
19095
19095
  primary_color?: string | undefined;
19096
- /** Secondary color of the customization profile. */
19096
+ /** Secondary color used in the Instant Key UI. */
19097
19097
  secondary_color?: string | undefined;
19098
- /** URL of the logo associated with the customization profile. */
19098
+ /** URL of the logo displayed on the Instant Key. */
19099
19099
  logo_url?: string | undefined;
19100
19100
  } | undefined;
19101
19101
  }[] | undefined;
@@ -38626,13 +38626,13 @@ export type Routes = {
38626
38626
  expires_at: string;
38627
38627
  /** ID of the customization profile associated with the Instant Key. */
38628
38628
  customization_profile_id?: string | undefined;
38629
- /** Customization profile associated with the Instant Key. */
38630
- customization_profile?: {
38631
- /** Primary color of the customization profile. */
38629
+ /** Customization applied to the Instant Key UI. */
38630
+ customization?: {
38631
+ /** Primary color used in the Instant Key UI. */
38632
38632
  primary_color?: string | undefined;
38633
- /** Secondary color of the customization profile. */
38633
+ /** Secondary color used in the Instant Key UI. */
38634
38634
  secondary_color?: string | undefined;
38635
- /** URL of the logo associated with the customization profile. */
38635
+ /** URL of the logo displayed on the Instant Key. */
38636
38636
  logo_url?: string | undefined;
38637
38637
  } | undefined;
38638
38638
  };
@@ -38666,13 +38666,13 @@ export type Routes = {
38666
38666
  expires_at: string;
38667
38667
  /** ID of the customization profile associated with the Instant Key. */
38668
38668
  customization_profile_id?: string | undefined;
38669
- /** Customization profile associated with the Instant Key. */
38670
- customization_profile?: {
38671
- /** Primary color of the customization profile. */
38669
+ /** Customization applied to the Instant Key UI. */
38670
+ customization?: {
38671
+ /** Primary color used in the Instant Key UI. */
38672
38672
  primary_color?: string | undefined;
38673
- /** Secondary color of the customization profile. */
38673
+ /** Secondary color used in the Instant Key UI. */
38674
38674
  secondary_color?: string | undefined;
38675
- /** URL of the logo associated with the customization profile. */
38675
+ /** URL of the logo displayed on the Instant Key. */
38676
38676
  logo_url?: string | undefined;
38677
38677
  } | undefined;
38678
38678
  }[];
@@ -75800,13 +75800,13 @@ export type Routes = {
75800
75800
  expires_at: string;
75801
75801
  /** ID of the customization profile associated with the Instant Key. */
75802
75802
  customization_profile_id?: string | undefined;
75803
- /** Customization profile associated with the Instant Key. */
75804
- customization_profile?: {
75805
- /** Primary color of the customization profile. */
75803
+ /** Customization applied to the Instant Key UI. */
75804
+ customization?: {
75805
+ /** Primary color used in the Instant Key UI. */
75806
75806
  primary_color?: string | undefined;
75807
- /** Secondary color of the customization profile. */
75807
+ /** Secondary color used in the Instant Key UI. */
75808
75808
  secondary_color?: string | undefined;
75809
- /** URL of the logo associated with the customization profile. */
75809
+ /** URL of the logo displayed on the Instant Key. */
75810
75810
  logo_url?: string | undefined;
75811
75811
  } | undefined;
75812
75812
  };
@@ -79029,11 +79029,11 @@ export type Routes = {
79029
79029
  '/workspaces/find_anything': {
79030
79030
  route: '/workspaces/find_anything';
79031
79031
  method: 'GET' | 'POST';
79032
- queryParams: {
79032
+ queryParams: {};
79033
+ jsonBody: {};
79034
+ commonParams: {
79033
79035
  search: string;
79034
79036
  };
79035
- jsonBody: {};
79036
- commonParams: {};
79037
79037
  formData: {};
79038
79038
  jsonResponse: {
79039
79039
  /** A batch of workspace resources. */
@@ -84940,13 +84940,13 @@ export type Routes = {
84940
84940
  expires_at: string;
84941
84941
  /** ID of the customization profile associated with the Instant Key. */
84942
84942
  customization_profile_id?: string | undefined;
84943
- /** Customization profile associated with the Instant Key. */
84944
- customization_profile?: {
84945
- /** Primary color of the customization profile. */
84943
+ /** Customization applied to the Instant Key UI. */
84944
+ customization?: {
84945
+ /** Primary color used in the Instant Key UI. */
84946
84946
  primary_color?: string | undefined;
84947
- /** Secondary color of the customization profile. */
84947
+ /** Secondary color used in the Instant Key UI. */
84948
84948
  secondary_color?: string | undefined;
84949
- /** URL of the logo associated with the customization profile. */
84949
+ /** URL of the logo displayed on the Instant Key. */
84950
84950
  logo_url?: string | undefined;
84951
84951
  } | undefined;
84952
84952
  }[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.493.0",
3
+ "version": "1.495.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -39,24 +39,24 @@ export const instant_key = z.object({
39
39
  .describe(
40
40
  'ID of the customization profile associated with the Instant Key.',
41
41
  ),
42
- customization_profile: z
42
+ customization: z
43
43
  .object({
44
44
  primary_color: z
45
45
  .string()
46
46
  .optional()
47
- .describe('Primary color of the customization profile.'),
47
+ .describe('Primary color used in the Instant Key UI.'),
48
48
  secondary_color: z
49
49
  .string()
50
50
  .optional()
51
- .describe('Secondary color of the customization profile.'),
51
+ .describe('Secondary color used in the Instant Key UI.'),
52
52
  logo_url: z
53
53
  .string()
54
54
  .url()
55
55
  .optional()
56
- .describe('URL of the logo associated with the customization profile.'),
56
+ .describe('URL of the logo displayed on the Instant Key.'),
57
57
  })
58
58
  .optional()
59
- .describe('Customization profile associated with the Instant Key.'),
59
+ .describe('Customization applied to the Instant Key UI.'),
60
60
  }).describe(`
61
61
  ---
62
62
  route_path: /instant_keys
@@ -19043,22 +19043,20 @@ export default {
19043
19043
  format: 'date-time',
19044
19044
  type: 'string',
19045
19045
  },
19046
- customization_profile: {
19047
- description:
19048
- 'Customization profile associated with the Instant Key.',
19046
+ customization: {
19047
+ description: 'Customization applied to the Instant Key UI.',
19049
19048
  properties: {
19050
19049
  logo_url: {
19051
- description:
19052
- 'URL of the logo associated with the customization profile.',
19050
+ description: 'URL of the logo displayed on the Instant Key.',
19053
19051
  format: 'uri',
19054
19052
  type: 'string',
19055
19053
  },
19056
19054
  primary_color: {
19057
- description: 'Primary color of the customization profile.',
19055
+ description: 'Primary color used in the Instant Key UI.',
19058
19056
  type: 'string',
19059
19057
  },
19060
19058
  secondary_color: {
19061
- description: 'Secondary color of the customization profile.',
19059
+ description: 'Secondary color used in the Instant Key UI.',
19062
19060
  type: 'string',
19063
19061
  },
19064
19062
  },
@@ -56865,14 +56863,17 @@ export default {
56865
56863
  post: {
56866
56864
  description: 'Search for resources inside a workspace.',
56867
56865
  operationId: 'workspacesFindAnythingPost',
56868
- parameters: [
56869
- {
56870
- in: 'query',
56871
- name: 'search',
56872
- required: true,
56873
- schema: { format: 'uuid', type: 'string' },
56866
+ requestBody: {
56867
+ content: {
56868
+ 'application/json': {
56869
+ schema: {
56870
+ properties: { search: { format: 'uuid', type: 'string' } },
56871
+ required: ['search'],
56872
+ type: 'object',
56873
+ },
56874
+ },
56874
56875
  },
56875
- ],
56876
+ },
56876
56877
  responses: {
56877
56878
  200: {
56878
56879
  content: {
@@ -22187,14 +22187,14 @@ export type Routes = {
22187
22187
  expires_at: string
22188
22188
  /** ID of the customization profile associated with the Instant Key. */
22189
22189
  customization_profile_id?: string | undefined
22190
- /** Customization profile associated with the Instant Key. */
22191
- customization_profile?:
22190
+ /** Customization applied to the Instant Key UI. */
22191
+ customization?:
22192
22192
  | {
22193
- /** Primary color of the customization profile. */
22193
+ /** Primary color used in the Instant Key UI. */
22194
22194
  primary_color?: string | undefined
22195
- /** Secondary color of the customization profile. */
22195
+ /** Secondary color used in the Instant Key UI. */
22196
22196
  secondary_color?: string | undefined
22197
- /** URL of the logo associated with the customization profile. */
22197
+ /** URL of the logo displayed on the Instant Key. */
22198
22198
  logo_url?: string | undefined
22199
22199
  }
22200
22200
  | undefined
@@ -45605,14 +45605,14 @@ export type Routes = {
45605
45605
  expires_at: string
45606
45606
  /** ID of the customization profile associated with the Instant Key. */
45607
45607
  customization_profile_id?: string | undefined
45608
- /** Customization profile associated with the Instant Key. */
45609
- customization_profile?:
45608
+ /** Customization applied to the Instant Key UI. */
45609
+ customization?:
45610
45610
  | {
45611
- /** Primary color of the customization profile. */
45611
+ /** Primary color used in the Instant Key UI. */
45612
45612
  primary_color?: string | undefined
45613
- /** Secondary color of the customization profile. */
45613
+ /** Secondary color used in the Instant Key UI. */
45614
45614
  secondary_color?: string | undefined
45615
- /** URL of the logo associated with the customization profile. */
45615
+ /** URL of the logo displayed on the Instant Key. */
45616
45616
  logo_url?: string | undefined
45617
45617
  }
45618
45618
  | undefined
@@ -45647,14 +45647,14 @@ export type Routes = {
45647
45647
  expires_at: string
45648
45648
  /** ID of the customization profile associated with the Instant Key. */
45649
45649
  customization_profile_id?: string | undefined
45650
- /** Customization profile associated with the Instant Key. */
45651
- customization_profile?:
45650
+ /** Customization applied to the Instant Key UI. */
45651
+ customization?:
45652
45652
  | {
45653
- /** Primary color of the customization profile. */
45653
+ /** Primary color used in the Instant Key UI. */
45654
45654
  primary_color?: string | undefined
45655
- /** Secondary color of the customization profile. */
45655
+ /** Secondary color used in the Instant Key UI. */
45656
45656
  secondary_color?: string | undefined
45657
- /** URL of the logo associated with the customization profile. */
45657
+ /** URL of the logo displayed on the Instant Key. */
45658
45658
  logo_url?: string | undefined
45659
45659
  }
45660
45660
  | undefined
@@ -89801,14 +89801,14 @@ export type Routes = {
89801
89801
  expires_at: string
89802
89802
  /** ID of the customization profile associated with the Instant Key. */
89803
89803
  customization_profile_id?: string | undefined
89804
- /** Customization profile associated with the Instant Key. */
89805
- customization_profile?:
89804
+ /** Customization applied to the Instant Key UI. */
89805
+ customization?:
89806
89806
  | {
89807
- /** Primary color of the customization profile. */
89807
+ /** Primary color used in the Instant Key UI. */
89808
89808
  primary_color?: string | undefined
89809
- /** Secondary color of the customization profile. */
89809
+ /** Secondary color used in the Instant Key UI. */
89810
89810
  secondary_color?: string | undefined
89811
- /** URL of the logo associated with the customization profile. */
89811
+ /** URL of the logo displayed on the Instant Key. */
89812
89812
  logo_url?: string | undefined
89813
89813
  }
89814
89814
  | undefined
@@ -93728,11 +93728,11 @@ export type Routes = {
93728
93728
  '/workspaces/find_anything': {
93729
93729
  route: '/workspaces/find_anything'
93730
93730
  method: 'GET' | 'POST'
93731
- queryParams: {
93731
+ queryParams: {}
93732
+ jsonBody: {}
93733
+ commonParams: {
93732
93734
  search: string
93733
93735
  }
93734
- jsonBody: {}
93735
- commonParams: {}
93736
93736
  formData: {}
93737
93737
  jsonResponse: {
93738
93738
  /** A batch of workspace resources. */
@@ -100867,14 +100867,14 @@ export type Routes = {
100867
100867
  expires_at: string
100868
100868
  /** ID of the customization profile associated with the Instant Key. */
100869
100869
  customization_profile_id?: string | undefined
100870
- /** Customization profile associated with the Instant Key. */
100871
- customization_profile?:
100870
+ /** Customization applied to the Instant Key UI. */
100871
+ customization?:
100872
100872
  | {
100873
- /** Primary color of the customization profile. */
100873
+ /** Primary color used in the Instant Key UI. */
100874
100874
  primary_color?: string | undefined
100875
- /** Secondary color of the customization profile. */
100875
+ /** Secondary color used in the Instant Key UI. */
100876
100876
  secondary_color?: string | undefined
100877
- /** URL of the logo associated with the customization profile. */
100877
+ /** URL of the logo displayed on the Instant Key. */
100878
100878
  logo_url?: string | undefined
100879
100879
  }
100880
100880
  | undefined