@seamapi/types 1.490.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.
- package/dist/connect.cjs +34 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +150 -2
- package/dist/index.cjs +34 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +76 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +2 -2
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +26 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js +23 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +25 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +28 -0
- package/src/lib/seam/connect/route-types.ts +66 -0
|
@@ -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
|
};
|
|
@@ -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
|
@@ -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:
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|