@getuserfeedback/protocol 0.5.12 → 0.6.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/app-event.d.ts +274 -274
- package/dist/app-event.d.ts.map +1 -1
- package/dist/app-event.js +16 -16
- package/dist/client-meta.d.ts +13 -13
- package/dist/client-meta.d.ts.map +1 -1
- package/dist/client-meta.js +6 -6
- package/dist/flow-assignments.d.ts +183 -183
- package/dist/flow-assignments.d.ts.map +1 -1
- package/dist/flow-assignments.js +16 -16
- package/dist/identity-type.d.ts +2 -2
- package/dist/identity-type.d.ts.map +1 -1
- package/dist/identity-type.js +13 -15
- package/dist/index.d.ts +85 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/public-grant-scope.d.ts +3 -3
- package/dist/public-grant-scope.d.ts.map +1 -1
- package/dist/public-grant-scope.js +1 -1
- package/dist/runtime-endpoints.d.ts +4 -4
- package/dist/runtime-endpoints.d.ts.map +1 -1
- package/dist/runtime-endpoints.js +4 -6
- package/dist/scopes.d.ts +2 -2
- package/dist/scopes.d.ts.map +1 -1
- package/dist/scopes.js +1 -1
- package/dist/trpc-envelope.d.ts +4 -4
- package/dist/trpc-envelope.d.ts.map +1 -1
- package/dist/trpc-envelope.js +1 -1
- package/dist/version-resolution.d.ts +5 -5
- package/dist/version-resolution.d.ts.map +1 -1
- package/dist/version-resolution.js +2 -2
- package/dist/widget-commands.d.ts +108 -108
- package/dist/widget-commands.d.ts.map +1 -1
- package/dist/widget-commands.js +30 -56
- package/dist/widget-config.d.ts +161 -245
- package/dist/widget-config.d.ts.map +1 -1
- package/dist/widget-config.js +22 -36
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
export declare const flowAssignmentStatusSchema: z.
|
|
1
|
+
import * as z from "zod/mini";
|
|
2
|
+
export declare const flowAssignmentStatusSchema: z.ZodMiniEnum<{
|
|
3
3
|
pending: "pending";
|
|
4
4
|
held: "held";
|
|
5
5
|
presented: "presented";
|
|
@@ -10,11 +10,11 @@ export declare const flowAssignmentStatusSchema: z.ZodEnum<{
|
|
|
10
10
|
withdrawn_presented: "withdrawn_presented";
|
|
11
11
|
withdrawn_final: "withdrawn_final";
|
|
12
12
|
}>;
|
|
13
|
-
export declare const flowAssignmentTargetingContextSchema: z.
|
|
14
|
-
flags: z.
|
|
15
|
-
key: z.
|
|
16
|
-
target: z.
|
|
17
|
-
value: z.
|
|
13
|
+
export declare const flowAssignmentTargetingContextSchema: z.ZodMiniObject<{
|
|
14
|
+
flags: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
15
|
+
key: z.ZodMiniString<string>;
|
|
16
|
+
target: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
17
|
+
value: z.ZodMiniType<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
18
18
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
19
19
|
} | null)[] | {
|
|
20
20
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -63,42 +63,42 @@ export declare const flowAssignmentTargetingContextSchema: z.ZodObject<{
|
|
|
63
63
|
} | null)[] | {
|
|
64
64
|
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
65
65
|
} | null, unknown>>;
|
|
66
|
-
variant: z.
|
|
67
|
-
origin: z.
|
|
66
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
67
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
68
68
|
runtime_config: "runtime_config";
|
|
69
69
|
trigger_context: "trigger_context";
|
|
70
70
|
provider_sync: "provider_sync";
|
|
71
71
|
api: "api";
|
|
72
72
|
}>>;
|
|
73
|
-
provider: z.
|
|
74
|
-
name: z.
|
|
75
|
-
project: z.
|
|
76
|
-
environment: z.
|
|
73
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
74
|
+
name: z.ZodMiniString<string>;
|
|
75
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
76
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
77
77
|
}, z.core.$strip>>;
|
|
78
|
-
status: z.
|
|
79
|
-
reason: z.
|
|
80
|
-
evaluatedAt: z.
|
|
78
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
79
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
80
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
81
81
|
}, z.core.$strip>>>;
|
|
82
|
-
capabilities: z.
|
|
83
|
-
key: z.
|
|
84
|
-
source: z.
|
|
85
|
-
provider: z.
|
|
86
|
-
name: z.
|
|
87
|
-
project: z.
|
|
88
|
-
environment: z.
|
|
82
|
+
capabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
83
|
+
key: z.ZodMiniString<string>;
|
|
84
|
+
source: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
85
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
86
|
+
name: z.ZodMiniString<string>;
|
|
87
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
88
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
89
89
|
}, z.core.$strip>>;
|
|
90
90
|
}, z.core.$strip>>>;
|
|
91
91
|
}, z.core.$strip>;
|
|
92
|
-
export declare const flowAssignmentRecipientRequestSchema: z.
|
|
93
|
-
identities: z.
|
|
94
|
-
type: z.
|
|
95
|
-
value: z.
|
|
92
|
+
export declare const flowAssignmentRecipientRequestSchema: z.ZodMiniObject<{
|
|
93
|
+
identities: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniObject<{
|
|
94
|
+
type: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<"anonymousId" | "userId" | "traits.email" | "traits.phone" | "context.device.id" | "context.device.advertisingId" | "context.device.token", string>>;
|
|
95
|
+
value: z.ZodMiniString<string>;
|
|
96
96
|
}, z.core.$strip>>>;
|
|
97
|
-
context: z.
|
|
98
|
-
flags: z.
|
|
99
|
-
key: z.
|
|
100
|
-
target: z.
|
|
101
|
-
value: z.
|
|
97
|
+
context: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
98
|
+
flags: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
99
|
+
key: z.ZodMiniString<string>;
|
|
100
|
+
target: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
101
|
+
value: z.ZodMiniType<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
102
102
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
103
103
|
} | null)[] | {
|
|
104
104
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -147,41 +147,41 @@ export declare const flowAssignmentRecipientRequestSchema: z.ZodObject<{
|
|
|
147
147
|
} | null)[] | {
|
|
148
148
|
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
149
149
|
} | null, unknown>>;
|
|
150
|
-
variant: z.
|
|
151
|
-
origin: z.
|
|
150
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
151
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
152
152
|
runtime_config: "runtime_config";
|
|
153
153
|
trigger_context: "trigger_context";
|
|
154
154
|
provider_sync: "provider_sync";
|
|
155
155
|
api: "api";
|
|
156
156
|
}>>;
|
|
157
|
-
provider: z.
|
|
158
|
-
name: z.
|
|
159
|
-
project: z.
|
|
160
|
-
environment: z.
|
|
157
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
158
|
+
name: z.ZodMiniString<string>;
|
|
159
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
160
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
161
161
|
}, z.core.$strip>>;
|
|
162
|
-
status: z.
|
|
163
|
-
reason: z.
|
|
164
|
-
evaluatedAt: z.
|
|
162
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
163
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
164
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
165
165
|
}, z.core.$strip>>>;
|
|
166
|
-
capabilities: z.
|
|
167
|
-
key: z.
|
|
168
|
-
source: z.
|
|
169
|
-
provider: z.
|
|
170
|
-
name: z.
|
|
171
|
-
project: z.
|
|
172
|
-
environment: z.
|
|
166
|
+
capabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
167
|
+
key: z.ZodMiniString<string>;
|
|
168
|
+
source: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
169
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
170
|
+
name: z.ZodMiniString<string>;
|
|
171
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
172
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
173
173
|
}, z.core.$strip>>;
|
|
174
174
|
}, z.core.$strip>>>;
|
|
175
175
|
}, z.core.$strip>>;
|
|
176
|
-
at: z.
|
|
176
|
+
at: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
177
177
|
}, z.core.$strip>;
|
|
178
|
-
export declare const flowAssignmentRecordSchema: z.
|
|
179
|
-
flowAssignmentId: z.
|
|
180
|
-
flowId: z.
|
|
181
|
-
holdGroupToken: z.
|
|
182
|
-
presentedFlowVersionId: z.
|
|
183
|
-
latestFlowVersionId: z.
|
|
184
|
-
status: z.
|
|
178
|
+
export declare const flowAssignmentRecordSchema: z.ZodMiniObject<{
|
|
179
|
+
flowAssignmentId: z.ZodMiniString<string>;
|
|
180
|
+
flowId: z.ZodMiniString<string>;
|
|
181
|
+
holdGroupToken: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
182
|
+
presentedFlowVersionId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
183
|
+
latestFlowVersionId: z.ZodMiniString<string>;
|
|
184
|
+
status: z.ZodMiniEnum<{
|
|
185
185
|
pending: "pending";
|
|
186
186
|
held: "held";
|
|
187
187
|
presented: "presented";
|
|
@@ -192,26 +192,26 @@ export declare const flowAssignmentRecordSchema: z.ZodObject<{
|
|
|
192
192
|
withdrawn_presented: "withdrawn_presented";
|
|
193
193
|
withdrawn_final: "withdrawn_final";
|
|
194
194
|
}>;
|
|
195
|
-
assignedAt: z.
|
|
196
|
-
expiresAt: z.
|
|
197
|
-
heldAt: z.
|
|
198
|
-
holdExpiresAt: z.
|
|
199
|
-
presentedAt: z.
|
|
200
|
-
completedAt: z.
|
|
201
|
-
expiredAt: z.
|
|
202
|
-
supersededAt: z.
|
|
203
|
-
withdrawnAt: z.
|
|
204
|
-
withdrawnFinalAt: z.
|
|
195
|
+
assignedAt: z.ZodMiniString<string>;
|
|
196
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
197
|
+
heldAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
198
|
+
holdExpiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
199
|
+
presentedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
200
|
+
completedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
201
|
+
expiredAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
202
|
+
supersededAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
203
|
+
withdrawnAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
204
|
+
withdrawnFinalAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
205
205
|
}, z.core.$strip>;
|
|
206
|
-
export declare const listPendingFlowAssignmentsResponseSchema: z.
|
|
207
|
-
fetchedAt: z.
|
|
208
|
-
flowAssignments: z.
|
|
209
|
-
flowAssignmentId: z.
|
|
210
|
-
flowId: z.
|
|
211
|
-
holdGroupToken: z.
|
|
212
|
-
presentedFlowVersionId: z.
|
|
213
|
-
latestFlowVersionId: z.
|
|
214
|
-
status: z.
|
|
206
|
+
export declare const listPendingFlowAssignmentsResponseSchema: z.ZodMiniObject<{
|
|
207
|
+
fetchedAt: z.ZodMiniString<string>;
|
|
208
|
+
flowAssignments: z.ZodMiniArray<z.ZodMiniObject<{
|
|
209
|
+
flowAssignmentId: z.ZodMiniString<string>;
|
|
210
|
+
flowId: z.ZodMiniString<string>;
|
|
211
|
+
holdGroupToken: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
212
|
+
presentedFlowVersionId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
213
|
+
latestFlowVersionId: z.ZodMiniString<string>;
|
|
214
|
+
status: z.ZodMiniEnum<{
|
|
215
215
|
pending: "pending";
|
|
216
216
|
held: "held";
|
|
217
217
|
presented: "presented";
|
|
@@ -222,28 +222,28 @@ export declare const listPendingFlowAssignmentsResponseSchema: z.ZodObject<{
|
|
|
222
222
|
withdrawn_presented: "withdrawn_presented";
|
|
223
223
|
withdrawn_final: "withdrawn_final";
|
|
224
224
|
}>;
|
|
225
|
-
assignedAt: z.
|
|
226
|
-
expiresAt: z.
|
|
227
|
-
heldAt: z.
|
|
228
|
-
holdExpiresAt: z.
|
|
229
|
-
presentedAt: z.
|
|
230
|
-
completedAt: z.
|
|
231
|
-
expiredAt: z.
|
|
232
|
-
supersededAt: z.
|
|
233
|
-
withdrawnAt: z.
|
|
234
|
-
withdrawnFinalAt: z.
|
|
225
|
+
assignedAt: z.ZodMiniString<string>;
|
|
226
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
227
|
+
heldAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
228
|
+
holdExpiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
229
|
+
presentedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
230
|
+
completedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
231
|
+
expiredAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
232
|
+
supersededAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
233
|
+
withdrawnAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
234
|
+
withdrawnFinalAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
235
235
|
}, z.core.$strip>>;
|
|
236
236
|
}, z.core.$strip>;
|
|
237
|
-
export declare const claimPendingFlowAssignmentsRequestSchema: z.
|
|
238
|
-
identities: z.
|
|
239
|
-
type: z.
|
|
240
|
-
value: z.
|
|
237
|
+
export declare const claimPendingFlowAssignmentsRequestSchema: z.ZodMiniObject<{
|
|
238
|
+
identities: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniObject<{
|
|
239
|
+
type: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<"anonymousId" | "userId" | "traits.email" | "traits.phone" | "context.device.id" | "context.device.advertisingId" | "context.device.token", string>>;
|
|
240
|
+
value: z.ZodMiniString<string>;
|
|
241
241
|
}, z.core.$strip>>>;
|
|
242
|
-
context: z.
|
|
243
|
-
flags: z.
|
|
244
|
-
key: z.
|
|
245
|
-
target: z.
|
|
246
|
-
value: z.
|
|
242
|
+
context: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
243
|
+
flags: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
244
|
+
key: z.ZodMiniString<string>;
|
|
245
|
+
target: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
246
|
+
value: z.ZodMiniType<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
247
247
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
248
248
|
} | null)[] | {
|
|
249
249
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -292,45 +292,45 @@ export declare const claimPendingFlowAssignmentsRequestSchema: z.ZodObject<{
|
|
|
292
292
|
} | null)[] | {
|
|
293
293
|
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
294
294
|
} | null, unknown>>;
|
|
295
|
-
variant: z.
|
|
296
|
-
origin: z.
|
|
295
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
296
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
297
297
|
runtime_config: "runtime_config";
|
|
298
298
|
trigger_context: "trigger_context";
|
|
299
299
|
provider_sync: "provider_sync";
|
|
300
300
|
api: "api";
|
|
301
301
|
}>>;
|
|
302
|
-
provider: z.
|
|
303
|
-
name: z.
|
|
304
|
-
project: z.
|
|
305
|
-
environment: z.
|
|
302
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
303
|
+
name: z.ZodMiniString<string>;
|
|
304
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
305
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
306
306
|
}, z.core.$strip>>;
|
|
307
|
-
status: z.
|
|
308
|
-
reason: z.
|
|
309
|
-
evaluatedAt: z.
|
|
307
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
308
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
309
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
310
310
|
}, z.core.$strip>>>;
|
|
311
|
-
capabilities: z.
|
|
312
|
-
key: z.
|
|
313
|
-
source: z.
|
|
314
|
-
provider: z.
|
|
315
|
-
name: z.
|
|
316
|
-
project: z.
|
|
317
|
-
environment: z.
|
|
311
|
+
capabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
312
|
+
key: z.ZodMiniString<string>;
|
|
313
|
+
source: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
314
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
315
|
+
name: z.ZodMiniString<string>;
|
|
316
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
317
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
318
318
|
}, z.core.$strip>>;
|
|
319
319
|
}, z.core.$strip>>>;
|
|
320
320
|
}, z.core.$strip>>;
|
|
321
|
-
holdOwnerKey: z.
|
|
322
|
-
at: z.
|
|
323
|
-
limit: z.
|
|
321
|
+
holdOwnerKey: z.ZodMiniString<string>;
|
|
322
|
+
at: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
323
|
+
limit: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
324
324
|
}, z.core.$strip>;
|
|
325
|
-
export declare const claimPendingFlowAssignmentsResponseSchema: z.
|
|
326
|
-
fetchedAt: z.
|
|
327
|
-
flowAssignments: z.
|
|
328
|
-
flowAssignmentId: z.
|
|
329
|
-
flowId: z.
|
|
330
|
-
holdGroupToken: z.
|
|
331
|
-
presentedFlowVersionId: z.
|
|
332
|
-
latestFlowVersionId: z.
|
|
333
|
-
status: z.
|
|
325
|
+
export declare const claimPendingFlowAssignmentsResponseSchema: z.ZodMiniObject<{
|
|
326
|
+
fetchedAt: z.ZodMiniString<string>;
|
|
327
|
+
flowAssignments: z.ZodMiniArray<z.ZodMiniObject<{
|
|
328
|
+
flowAssignmentId: z.ZodMiniString<string>;
|
|
329
|
+
flowId: z.ZodMiniString<string>;
|
|
330
|
+
holdGroupToken: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
331
|
+
presentedFlowVersionId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
332
|
+
latestFlowVersionId: z.ZodMiniString<string>;
|
|
333
|
+
status: z.ZodMiniEnum<{
|
|
334
334
|
pending: "pending";
|
|
335
335
|
held: "held";
|
|
336
336
|
presented: "presented";
|
|
@@ -341,47 +341,47 @@ export declare const claimPendingFlowAssignmentsResponseSchema: z.ZodObject<{
|
|
|
341
341
|
withdrawn_presented: "withdrawn_presented";
|
|
342
342
|
withdrawn_final: "withdrawn_final";
|
|
343
343
|
}>;
|
|
344
|
-
assignedAt: z.
|
|
345
|
-
expiresAt: z.
|
|
346
|
-
heldAt: z.
|
|
347
|
-
holdExpiresAt: z.
|
|
348
|
-
presentedAt: z.
|
|
349
|
-
completedAt: z.
|
|
350
|
-
expiredAt: z.
|
|
351
|
-
supersededAt: z.
|
|
352
|
-
withdrawnAt: z.
|
|
353
|
-
withdrawnFinalAt: z.
|
|
344
|
+
assignedAt: z.ZodMiniString<string>;
|
|
345
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
346
|
+
heldAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
347
|
+
holdExpiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
348
|
+
presentedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
349
|
+
completedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
350
|
+
expiredAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
351
|
+
supersededAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
352
|
+
withdrawnAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
353
|
+
withdrawnFinalAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
354
354
|
}, z.core.$strip>>;
|
|
355
355
|
}, z.core.$strip>;
|
|
356
|
-
export declare const updateFlowAssignmentLifecycleRequestSchema: z.
|
|
357
|
-
identities: z.
|
|
358
|
-
type: z.
|
|
359
|
-
value: z.
|
|
356
|
+
export declare const updateFlowAssignmentLifecycleRequestSchema: z.ZodMiniObject<{
|
|
357
|
+
identities: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniObject<{
|
|
358
|
+
type: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<"anonymousId" | "userId" | "traits.email" | "traits.phone" | "context.device.id" | "context.device.advertisingId" | "context.device.token", string>>;
|
|
359
|
+
value: z.ZodMiniString<string>;
|
|
360
360
|
}, z.core.$strip>>>;
|
|
361
|
-
flowAssignmentId: z.
|
|
362
|
-
flowVersionId: z.
|
|
363
|
-
holdGroupToken: z.
|
|
364
|
-
at: z.
|
|
361
|
+
flowAssignmentId: z.ZodMiniString<string>;
|
|
362
|
+
flowVersionId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
363
|
+
holdGroupToken: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
364
|
+
at: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
365
365
|
}, z.core.$strip>;
|
|
366
|
-
export declare const releaseFlowAssignmentClaimRequestSchema: z.
|
|
367
|
-
identities: z.
|
|
368
|
-
type: z.
|
|
369
|
-
value: z.
|
|
366
|
+
export declare const releaseFlowAssignmentClaimRequestSchema: z.ZodMiniObject<{
|
|
367
|
+
identities: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniObject<{
|
|
368
|
+
type: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<"anonymousId" | "userId" | "traits.email" | "traits.phone" | "context.device.id" | "context.device.advertisingId" | "context.device.token", string>>;
|
|
369
|
+
value: z.ZodMiniString<string>;
|
|
370
370
|
}, z.core.$strip>>>;
|
|
371
|
-
holdGroupToken: z.
|
|
372
|
-
holdOwnerKey: z.
|
|
373
|
-
at: z.
|
|
371
|
+
holdGroupToken: z.ZodMiniString<string>;
|
|
372
|
+
holdOwnerKey: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
373
|
+
at: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
374
374
|
}, z.core.$strip>;
|
|
375
|
-
export declare const releaseFlowAssignmentClaimResponseSchema: z.
|
|
376
|
-
releasedCount: z.
|
|
375
|
+
export declare const releaseFlowAssignmentClaimResponseSchema: z.ZodMiniObject<{
|
|
376
|
+
releasedCount: z.ZodMiniNumber<number>;
|
|
377
377
|
}, z.core.$strip>;
|
|
378
|
-
export declare const updateFlowAssignmentLifecycleResponseSchema: z.
|
|
379
|
-
flowAssignmentId: z.
|
|
380
|
-
flowId: z.
|
|
381
|
-
holdGroupToken: z.
|
|
382
|
-
presentedFlowVersionId: z.
|
|
383
|
-
latestFlowVersionId: z.
|
|
384
|
-
status: z.
|
|
378
|
+
export declare const updateFlowAssignmentLifecycleResponseSchema: z.ZodMiniObject<{
|
|
379
|
+
flowAssignmentId: z.ZodMiniString<string>;
|
|
380
|
+
flowId: z.ZodMiniString<string>;
|
|
381
|
+
holdGroupToken: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
382
|
+
presentedFlowVersionId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
383
|
+
latestFlowVersionId: z.ZodMiniString<string>;
|
|
384
|
+
status: z.ZodMiniEnum<{
|
|
385
385
|
pending: "pending";
|
|
386
386
|
held: "held";
|
|
387
387
|
presented: "presented";
|
|
@@ -392,24 +392,24 @@ export declare const updateFlowAssignmentLifecycleResponseSchema: z.ZodObject<{
|
|
|
392
392
|
withdrawn_presented: "withdrawn_presented";
|
|
393
393
|
withdrawn_final: "withdrawn_final";
|
|
394
394
|
}>;
|
|
395
|
-
assignedAt: z.
|
|
396
|
-
expiresAt: z.
|
|
397
|
-
heldAt: z.
|
|
398
|
-
holdExpiresAt: z.
|
|
399
|
-
presentedAt: z.
|
|
400
|
-
completedAt: z.
|
|
401
|
-
expiredAt: z.
|
|
402
|
-
supersededAt: z.
|
|
403
|
-
withdrawnAt: z.
|
|
404
|
-
withdrawnFinalAt: z.
|
|
395
|
+
assignedAt: z.ZodMiniString<string>;
|
|
396
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
397
|
+
heldAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
398
|
+
holdExpiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
399
|
+
presentedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
400
|
+
completedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
401
|
+
expiredAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
402
|
+
supersededAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
403
|
+
withdrawnAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
404
|
+
withdrawnFinalAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
405
405
|
}, z.core.$strip>;
|
|
406
|
-
export declare const nullableUpdateFlowAssignmentLifecycleResponseSchema: z.
|
|
407
|
-
flowAssignmentId: z.
|
|
408
|
-
flowId: z.
|
|
409
|
-
holdGroupToken: z.
|
|
410
|
-
presentedFlowVersionId: z.
|
|
411
|
-
latestFlowVersionId: z.
|
|
412
|
-
status: z.
|
|
406
|
+
export declare const nullableUpdateFlowAssignmentLifecycleResponseSchema: z.ZodMiniNullable<z.ZodMiniObject<{
|
|
407
|
+
flowAssignmentId: z.ZodMiniString<string>;
|
|
408
|
+
flowId: z.ZodMiniString<string>;
|
|
409
|
+
holdGroupToken: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
410
|
+
presentedFlowVersionId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
411
|
+
latestFlowVersionId: z.ZodMiniString<string>;
|
|
412
|
+
status: z.ZodMiniEnum<{
|
|
413
413
|
pending: "pending";
|
|
414
414
|
held: "held";
|
|
415
415
|
presented: "presented";
|
|
@@ -420,16 +420,16 @@ export declare const nullableUpdateFlowAssignmentLifecycleResponseSchema: z.ZodN
|
|
|
420
420
|
withdrawn_presented: "withdrawn_presented";
|
|
421
421
|
withdrawn_final: "withdrawn_final";
|
|
422
422
|
}>;
|
|
423
|
-
assignedAt: z.
|
|
424
|
-
expiresAt: z.
|
|
425
|
-
heldAt: z.
|
|
426
|
-
holdExpiresAt: z.
|
|
427
|
-
presentedAt: z.
|
|
428
|
-
completedAt: z.
|
|
429
|
-
expiredAt: z.
|
|
430
|
-
supersededAt: z.
|
|
431
|
-
withdrawnAt: z.
|
|
432
|
-
withdrawnFinalAt: z.
|
|
423
|
+
assignedAt: z.ZodMiniString<string>;
|
|
424
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
425
|
+
heldAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
426
|
+
holdExpiresAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
427
|
+
presentedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
428
|
+
completedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
429
|
+
expiredAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
430
|
+
supersededAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
431
|
+
withdrawnAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
432
|
+
withdrawnFinalAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
433
433
|
}, z.core.$strip>>;
|
|
434
434
|
export type FlowAssignmentStatus = z.output<typeof flowAssignmentStatusSchema>;
|
|
435
435
|
export type FlowAssignmentRecipientRequest = z.output<typeof flowAssignmentRecipientRequestSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flow-assignments.d.ts","sourceRoot":"","sources":["../src/flow-assignments.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"flow-assignments.d.ts","sourceRoot":"","sources":["../src/flow-assignments.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAQ9B,eAAO,MAAM,0BAA0B;;;;;;;;;;EAUrC,CAAC;AAEH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG/C,CAAC;AAEH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAI/C,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAmBrC,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGnD,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMnD,CAAC;AAEH,eAAO,MAAM,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGpD,CAAC;AAEH,eAAO,MAAM,0CAA0C;;;;;;;;;iBAMrD,CAAC;AAEH,eAAO,MAAM,uCAAuC;;;;;;;;iBAKlD,CAAC;AAEH,eAAO,MAAM,wCAAwC;;iBAEnD,CAAC;AAEH,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAC7B,CAAC;AAC5B,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAE/D,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC/E,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CACpD,OAAO,oCAAoC,CAC3C,CAAC;AACF,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CACpD,OAAO,oCAAoC,CAC3C,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC/E,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CACxD,OAAO,wCAAwC,CAC/C,CAAC;AACF,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,MAAM,CACzD,OAAO,yCAAyC,CAChD,CAAC;AACF,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CACxD,OAAO,wCAAwC,CAC/C,CAAC;AACF,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CACvD,OAAO,uCAAuC,CAC9C,CAAC;AACF,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CACxD,OAAO,wCAAwC,CAC/C,CAAC;AACF,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,MAAM,CAC1D,OAAO,0CAA0C,CACjD,CAAC;AACF,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,MAAM,CAC3D,OAAO,2CAA2C,CAClD,CAAC"}
|
package/dist/flow-assignments.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
1
|
+
import * as z from "zod/mini";
|
|
2
2
|
import { appEventCapabilitySchema, appEventFlagSchema, appEventIdentitySchema, } from "./app-event.js";
|
|
3
3
|
export const flowAssignmentStatusSchema = z.enum([
|
|
4
4
|
"pending",
|
|
@@ -16,16 +16,16 @@ export const flowAssignmentTargetingContextSchema = z.object({
|
|
|
16
16
|
capabilities: z.optional(z.array(appEventCapabilitySchema)),
|
|
17
17
|
});
|
|
18
18
|
export const flowAssignmentRecipientRequestSchema = z.object({
|
|
19
|
-
identities: z.array(appEventIdentitySchema)
|
|
19
|
+
identities: z._default(z.array(appEventIdentitySchema), []),
|
|
20
20
|
context: z.optional(flowAssignmentTargetingContextSchema),
|
|
21
21
|
at: z.optional(z.number()),
|
|
22
22
|
});
|
|
23
23
|
export const flowAssignmentRecordSchema = z.object({
|
|
24
|
-
flowAssignmentId: z.string().trim().
|
|
25
|
-
flowId: z.string().trim().
|
|
26
|
-
holdGroupToken: z.optional(z.string().trim().
|
|
27
|
-
presentedFlowVersionId: z.optional(z.string().trim().
|
|
28
|
-
latestFlowVersionId: z.string().trim().
|
|
24
|
+
flowAssignmentId: z.string().check(z.trim(), z.minLength(1)),
|
|
25
|
+
flowId: z.string().check(z.trim(), z.minLength(1)),
|
|
26
|
+
holdGroupToken: z.optional(z.string().check(z.trim(), z.minLength(1))),
|
|
27
|
+
presentedFlowVersionId: z.optional(z.string().check(z.trim(), z.minLength(1))),
|
|
28
|
+
latestFlowVersionId: z.string().check(z.trim(), z.minLength(1)),
|
|
29
29
|
status: flowAssignmentStatusSchema,
|
|
30
30
|
assignedAt: z.string(),
|
|
31
31
|
expiresAt: z.optional(z.string()),
|
|
@@ -43,9 +43,9 @@ export const listPendingFlowAssignmentsResponseSchema = z.object({
|
|
|
43
43
|
flowAssignments: z.array(flowAssignmentRecordSchema),
|
|
44
44
|
});
|
|
45
45
|
export const claimPendingFlowAssignmentsRequestSchema = z.object({
|
|
46
|
-
identities: z.array(appEventIdentitySchema)
|
|
46
|
+
identities: z._default(z.array(appEventIdentitySchema), []),
|
|
47
47
|
context: z.optional(flowAssignmentTargetingContextSchema),
|
|
48
|
-
holdOwnerKey: z.string().trim().
|
|
48
|
+
holdOwnerKey: z.string().check(z.trim(), z.minLength(1)),
|
|
49
49
|
at: z.optional(z.number()),
|
|
50
50
|
limit: z.optional(z.number()),
|
|
51
51
|
});
|
|
@@ -54,16 +54,16 @@ export const claimPendingFlowAssignmentsResponseSchema = z.object({
|
|
|
54
54
|
flowAssignments: z.array(flowAssignmentRecordSchema),
|
|
55
55
|
});
|
|
56
56
|
export const updateFlowAssignmentLifecycleRequestSchema = z.object({
|
|
57
|
-
identities: z.array(appEventIdentitySchema)
|
|
58
|
-
flowAssignmentId: z.string().trim().
|
|
59
|
-
flowVersionId: z.optional(z.string().trim().
|
|
60
|
-
holdGroupToken: z.optional(z.string().trim().
|
|
57
|
+
identities: z._default(z.array(appEventIdentitySchema), []),
|
|
58
|
+
flowAssignmentId: z.string().check(z.trim(), z.minLength(1)),
|
|
59
|
+
flowVersionId: z.optional(z.string().check(z.trim(), z.minLength(1))),
|
|
60
|
+
holdGroupToken: z.optional(z.string().check(z.trim(), z.minLength(1))),
|
|
61
61
|
at: z.optional(z.number()),
|
|
62
62
|
});
|
|
63
63
|
export const releaseFlowAssignmentClaimRequestSchema = z.object({
|
|
64
|
-
identities: z.array(appEventIdentitySchema)
|
|
65
|
-
holdGroupToken: z.string().trim().
|
|
66
|
-
holdOwnerKey: z.optional(z.string().trim().
|
|
64
|
+
identities: z._default(z.array(appEventIdentitySchema), []),
|
|
65
|
+
holdGroupToken: z.string().check(z.trim(), z.minLength(1)),
|
|
66
|
+
holdOwnerKey: z.optional(z.string().check(z.trim(), z.minLength(1))),
|
|
67
67
|
at: z.optional(z.number()),
|
|
68
68
|
});
|
|
69
69
|
export const releaseFlowAssignmentClaimResponseSchema = z.object({
|
package/dist/identity-type.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
1
|
+
import * as z from "zod/mini";
|
|
2
2
|
export declare const IDENTITY_TYPE_VALUES: readonly ["anonymousId", "userId", "traits.email", "traits.phone", "context.device.id", "context.device.advertisingId", "context.device.token"];
|
|
3
3
|
export type IdentityTypeValue = (typeof IDENTITY_TYPE_VALUES)[number];
|
|
4
4
|
export declare const isIdentityTypeValue: (value: string) => value is IdentityTypeValue;
|
|
5
5
|
export declare const getIdentityTypeSuggestion: (value: string) => IdentityTypeValue | null;
|
|
6
6
|
export declare const buildIdentityTypeGuidanceMessage: (value: string) => string;
|
|
7
|
-
export declare const appEventIdentityTypeSchema: z.
|
|
7
|
+
export declare const appEventIdentityTypeSchema: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<"anonymousId" | "userId" | "traits.email" | "traits.phone" | "context.device.id" | "context.device.advertisingId" | "context.device.token", string>>;
|
|
8
8
|
//# sourceMappingURL=identity-type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-type.d.ts","sourceRoot":"","sources":["../src/identity-type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"identity-type.d.ts","sourceRoot":"","sources":["../src/identity-type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAE9B,eAAO,MAAM,oBAAoB,iJAQvB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAsBtE,eAAO,MAAM,mBAAmB,GAC/B,OAAO,MAAM,KACX,KAAK,IAAI,iBACkD,CAAC;AAK/D,eAAO,MAAM,yBAAyB,GACrC,OAAO,MAAM,KACX,iBAAiB,GAAG,IACuD,CAAC;AAE/E,eAAO,MAAM,gCAAgC,GAAI,OAAO,MAAM,KAAG,MAehE,CAAC;AAkBF,eAAO,MAAM,0BAA0B,gNAWtC,CAAC"}
|