@seamapi/types 1.489.0 → 1.491.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.
@@ -19087,6 +19087,17 @@ export type Routes = {
19087
19087
  user_identity_id: string;
19088
19088
  /** Date and time at which the Instant Key expires. */
19089
19089
  expires_at: string;
19090
+ /** ID of the customization profile associated with the Instant Key. */
19091
+ customization_profile_id?: string | undefined;
19092
+ /** Customization profile associated with the Instant Key. */
19093
+ customization_profile?: {
19094
+ /** Primary color of the customization profile. */
19095
+ primary_color?: string | undefined;
19096
+ /** Secondary color of the customization profile. */
19097
+ secondary_color?: string | undefined;
19098
+ /** URL of the logo associated with the customization profile. */
19099
+ logo_url?: string | undefined;
19100
+ } | undefined;
19090
19101
  }[] | undefined;
19091
19102
  };
19092
19103
  };
@@ -37621,6 +37632,17 @@ export type Routes = {
37621
37632
  user_identity_id: string;
37622
37633
  /** Date and time at which the Instant Key expires. */
37623
37634
  expires_at: string;
37635
+ /** ID of the customization profile associated with the Instant Key. */
37636
+ customization_profile_id?: string | undefined;
37637
+ /** Customization profile associated with the Instant Key. */
37638
+ customization_profile?: {
37639
+ /** Primary color of the customization profile. */
37640
+ primary_color?: string | undefined;
37641
+ /** Secondary color of the customization profile. */
37642
+ secondary_color?: string | undefined;
37643
+ /** URL of the logo associated with the customization profile. */
37644
+ logo_url?: string | undefined;
37645
+ } | undefined;
37624
37646
  };
37625
37647
  };
37626
37648
  };
@@ -37650,6 +37672,17 @@ export type Routes = {
37650
37672
  user_identity_id: string;
37651
37673
  /** Date and time at which the Instant Key expires. */
37652
37674
  expires_at: string;
37675
+ /** ID of the customization profile associated with the Instant Key. */
37676
+ customization_profile_id?: string | undefined;
37677
+ /** Customization profile associated with the Instant Key. */
37678
+ customization_profile?: {
37679
+ /** Primary color of the customization profile. */
37680
+ primary_color?: string | undefined;
37681
+ /** Secondary color of the customization profile. */
37682
+ secondary_color?: string | undefined;
37683
+ /** URL of the logo associated with the customization profile. */
37684
+ logo_url?: string | undefined;
37685
+ } | undefined;
37653
37686
  }[];
37654
37687
  };
37655
37688
  };
@@ -74747,6 +74780,7 @@ export type Routes = {
74747
74780
  queryParams: {};
74748
74781
  jsonBody: {};
74749
74782
  commonParams: {
74783
+ customization_profile_id?: string | undefined;
74750
74784
  /** ID of the user identity for which you want to generate an instant key. */
74751
74785
  user_identity_id: string;
74752
74786
  /** Maximum number of times the instant key can be used. Default: 1. */
@@ -74772,6 +74806,17 @@ export type Routes = {
74772
74806
  user_identity_id: string;
74773
74807
  /** Date and time at which the Instant Key expires. */
74774
74808
  expires_at: string;
74809
+ /** ID of the customization profile associated with the Instant Key. */
74810
+ customization_profile_id?: string | undefined;
74811
+ /** Customization profile associated with the Instant Key. */
74812
+ customization_profile?: {
74813
+ /** Primary color of the customization profile. */
74814
+ primary_color?: string | undefined;
74815
+ /** Secondary color of the customization profile. */
74816
+ secondary_color?: string | undefined;
74817
+ /** URL of the logo associated with the customization profile. */
74818
+ logo_url?: string | undefined;
74819
+ } | undefined;
74775
74820
  };
74776
74821
  };
74777
74822
  };
@@ -77989,8 +78034,8 @@ export type Routes = {
77989
78034
  formData: {};
77990
78035
  jsonResponse: {};
77991
78036
  };
77992
- '/workspaces/find_resources': {
77993
- route: '/workspaces/find_resources';
78037
+ '/workspaces/find_anything': {
78038
+ route: '/workspaces/find_anything';
77994
78039
  method: 'GET' | 'POST';
77995
78040
  queryParams: {
77996
78041
  search: string;
@@ -83901,6 +83946,17 @@ export type Routes = {
83901
83946
  user_identity_id: string;
83902
83947
  /** Date and time at which the Instant Key expires. */
83903
83948
  expires_at: string;
83949
+ /** ID of the customization profile associated with the Instant Key. */
83950
+ customization_profile_id?: string | undefined;
83951
+ /** Customization profile associated with the Instant Key. */
83952
+ customization_profile?: {
83953
+ /** Primary color of the customization profile. */
83954
+ primary_color?: string | undefined;
83955
+ /** Secondary color of the customization profile. */
83956
+ secondary_color?: string | undefined;
83957
+ /** URL of the logo associated with the customization profile. */
83958
+ logo_url?: string | undefined;
83959
+ } | undefined;
83904
83960
  }[] | undefined;
83905
83961
  };
83906
83962
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.489.0",
3
+ "version": "1.491.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -32,6 +32,31 @@ export const instant_key = z.object({
32
32
  .string()
33
33
  .datetime()
34
34
  .describe('Date and time at which the Instant Key expires.'),
35
+ customization_profile_id: z
36
+ .string()
37
+ .uuid()
38
+ .optional()
39
+ .describe(
40
+ 'ID of the customization profile associated with the Instant Key.',
41
+ ),
42
+ customization_profile: z
43
+ .object({
44
+ primary_color: z
45
+ .string()
46
+ .optional()
47
+ .describe('Primary color of the customization profile.'),
48
+ secondary_color: z
49
+ .string()
50
+ .optional()
51
+ .describe('Secondary color of the customization profile.'),
52
+ logo_url: z
53
+ .string()
54
+ .url()
55
+ .optional()
56
+ .describe('URL of the logo associated with the customization profile.'),
57
+ })
58
+ .optional()
59
+ .describe('Customization profile associated with the Instant Key.'),
35
60
  }).describe(`
36
61
  ---
37
62
  route_path: /instant_keys
@@ -19041,6 +19041,33 @@ export default {
19041
19041
  format: 'date-time',
19042
19042
  type: 'string',
19043
19043
  },
19044
+ customization_profile: {
19045
+ description:
19046
+ 'Customization profile associated with the Instant Key.',
19047
+ properties: {
19048
+ logo_url: {
19049
+ description:
19050
+ 'URL of the logo associated with the customization profile.',
19051
+ format: 'uri',
19052
+ type: 'string',
19053
+ },
19054
+ primary_color: {
19055
+ description: 'Primary color of the customization profile.',
19056
+ type: 'string',
19057
+ },
19058
+ secondary_color: {
19059
+ description: 'Secondary color of the customization profile.',
19060
+ type: 'string',
19061
+ },
19062
+ },
19063
+ type: 'object',
19064
+ },
19065
+ customization_profile_id: {
19066
+ description:
19067
+ 'ID of the customization profile associated with the Instant Key.',
19068
+ format: 'uuid',
19069
+ type: 'string',
19070
+ },
19044
19071
  expires_at: {
19045
19072
  description: 'Date and time at which the Instant Key expires.',
19046
19073
  format: 'date-time',
@@ -54452,6 +54479,7 @@ export default {
54452
54479
  'application/json': {
54453
54480
  schema: {
54454
54481
  properties: {
54482
+ customization_profile_id: { format: 'uuid', type: 'string' },
54455
54483
  max_use_count: {
54456
54484
  default: 1,
54457
54485
  description:
@@ -56637,10 +56665,10 @@ export default {
56637
56665
  'Internal form-data endpoint for Console and Customer Portal.',
56638
56666
  },
56639
56667
  },
56640
- '/workspaces/find_resources': {
56668
+ '/workspaces/find_anything': {
56641
56669
  get: {
56642
56670
  description: 'Search for resources inside a workspace.',
56643
- operationId: 'workspacesFindResourcesGet',
56671
+ operationId: 'workspacesFindAnythingGet',
56644
56672
  parameters: [
56645
56673
  {
56646
56674
  in: 'query',
@@ -56790,11 +56818,11 @@ export default {
56790
56818
  { console_session_with_workspace: [] },
56791
56819
  { api_key: [] },
56792
56820
  ],
56793
- summary: '/workspaces/find_resources',
56821
+ summary: '/workspaces/find_anything',
56794
56822
  tags: ['/workspaces'],
56795
56823
  'x-batch-type': 'workspaces',
56796
56824
  'x-fern-sdk-group-name': ['workspaces'],
56797
- 'x-fern-sdk-method-name': 'find_resources',
56825
+ 'x-fern-sdk-method-name': 'find_anything',
56798
56826
  'x-fern-sdk-return-value': 'batch',
56799
56827
  'x-response-key': 'batch',
56800
56828
  'x-title': 'Find Resources',
@@ -56802,7 +56830,7 @@ export default {
56802
56830
  },
56803
56831
  post: {
56804
56832
  description: 'Search for resources inside a workspace.',
56805
- operationId: 'workspacesFindResourcesPost',
56833
+ operationId: 'workspacesFindAnythingPost',
56806
56834
  parameters: [
56807
56835
  {
56808
56836
  in: 'query',
@@ -56952,11 +56980,11 @@ export default {
56952
56980
  { console_session_with_workspace: [] },
56953
56981
  { api_key: [] },
56954
56982
  ],
56955
- summary: '/workspaces/find_resources',
56983
+ summary: '/workspaces/find_anything',
56956
56984
  tags: ['/workspaces'],
56957
56985
  'x-batch-type': 'workspaces',
56958
56986
  'x-fern-sdk-group-name': ['workspaces'],
56959
- 'x-fern-sdk-method-name': 'find_resources',
56987
+ 'x-fern-sdk-method-name': 'find_anything',
56960
56988
  'x-fern-sdk-return-value': 'batch',
56961
56989
  'x-response-key': 'batch',
56962
56990
  'x-title': 'Find Resources',
@@ -22179,6 +22179,19 @@ export type Routes = {
22179
22179
  user_identity_id: string
22180
22180
  /** Date and time at which the Instant Key expires. */
22181
22181
  expires_at: string
22182
+ /** ID of the customization profile associated with the Instant Key. */
22183
+ customization_profile_id?: string | undefined
22184
+ /** Customization profile associated with the Instant Key. */
22185
+ customization_profile?:
22186
+ | {
22187
+ /** Primary color of the customization profile. */
22188
+ primary_color?: string | undefined
22189
+ /** Secondary color of the customization profile. */
22190
+ secondary_color?: string | undefined
22191
+ /** URL of the logo associated with the customization profile. */
22192
+ logo_url?: string | undefined
22193
+ }
22194
+ | undefined
22182
22195
  }[]
22183
22196
  | undefined
22184
22197
  }
@@ -44470,6 +44483,19 @@ export type Routes = {
44470
44483
  user_identity_id: string
44471
44484
  /** Date and time at which the Instant Key expires. */
44472
44485
  expires_at: string
44486
+ /** ID of the customization profile associated with the Instant Key. */
44487
+ customization_profile_id?: string | undefined
44488
+ /** Customization profile associated with the Instant Key. */
44489
+ customization_profile?:
44490
+ | {
44491
+ /** Primary color of the customization profile. */
44492
+ primary_color?: string | undefined
44493
+ /** Secondary color of the customization profile. */
44494
+ secondary_color?: string | undefined
44495
+ /** URL of the logo associated with the customization profile. */
44496
+ logo_url?: string | undefined
44497
+ }
44498
+ | undefined
44473
44499
  }
44474
44500
  }
44475
44501
  }
@@ -44499,6 +44525,19 @@ export type Routes = {
44499
44525
  user_identity_id: string
44500
44526
  /** Date and time at which the Instant Key expires. */
44501
44527
  expires_at: string
44528
+ /** ID of the customization profile associated with the Instant Key. */
44529
+ customization_profile_id?: string | undefined
44530
+ /** Customization profile associated with the Instant Key. */
44531
+ customization_profile?:
44532
+ | {
44533
+ /** Primary color of the customization profile. */
44534
+ primary_color?: string | undefined
44535
+ /** Secondary color of the customization profile. */
44536
+ secondary_color?: string | undefined
44537
+ /** URL of the logo associated with the customization profile. */
44538
+ logo_url?: string | undefined
44539
+ }
44540
+ | undefined
44502
44541
  }[]
44503
44542
  }
44504
44543
  }
@@ -88614,6 +88653,7 @@ export type Routes = {
88614
88653
  queryParams: {}
88615
88654
  jsonBody: {}
88616
88655
  commonParams: {
88656
+ customization_profile_id?: string | undefined
88617
88657
  /** ID of the user identity for which you want to generate an instant key. */
88618
88658
  user_identity_id: string
88619
88659
  /** Maximum number of times the instant key can be used. Default: 1. */
@@ -88639,6 +88679,19 @@ export type Routes = {
88639
88679
  user_identity_id: string
88640
88680
  /** Date and time at which the Instant Key expires. */
88641
88681
  expires_at: string
88682
+ /** ID of the customization profile associated with the Instant Key. */
88683
+ customization_profile_id?: string | undefined
88684
+ /** Customization profile associated with the Instant Key. */
88685
+ customization_profile?:
88686
+ | {
88687
+ /** Primary color of the customization profile. */
88688
+ primary_color?: string | undefined
88689
+ /** Secondary color of the customization profile. */
88690
+ secondary_color?: string | undefined
88691
+ /** URL of the logo associated with the customization profile. */
88692
+ logo_url?: string | undefined
88693
+ }
88694
+ | undefined
88642
88695
  }
88643
88696
  }
88644
88697
  }
@@ -92552,8 +92605,8 @@ export type Routes = {
92552
92605
  formData: {}
92553
92606
  jsonResponse: {}
92554
92607
  }
92555
- '/workspaces/find_resources': {
92556
- route: '/workspaces/find_resources'
92608
+ '/workspaces/find_anything': {
92609
+ route: '/workspaces/find_anything'
92557
92610
  method: 'GET' | 'POST'
92558
92611
  queryParams: {
92559
92612
  search: string
@@ -99688,6 +99741,19 @@ export type Routes = {
99688
99741
  user_identity_id: string
99689
99742
  /** Date and time at which the Instant Key expires. */
99690
99743
  expires_at: string
99744
+ /** ID of the customization profile associated with the Instant Key. */
99745
+ customization_profile_id?: string | undefined
99746
+ /** Customization profile associated with the Instant Key. */
99747
+ customization_profile?:
99748
+ | {
99749
+ /** Primary color of the customization profile. */
99750
+ primary_color?: string | undefined
99751
+ /** Secondary color of the customization profile. */
99752
+ secondary_color?: string | undefined
99753
+ /** URL of the logo associated with the customization profile. */
99754
+ logo_url?: string | undefined
99755
+ }
99756
+ | undefined
99691
99757
  }[]
99692
99758
  | undefined
99693
99759
  }