@financeable/aggregation 0.7.2 → 0.7.3

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/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@financeable/aggregation",
5
- "version": "0.7.2",
5
+ "version": "0.7.3",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
27
27
  export declare const SDK_METADATA: {
28
28
  readonly language: "typescript";
29
29
  readonly openapiDocVersion: "0.4.0";
30
- readonly sdkVersion: "0.7.2";
30
+ readonly sdkVersion: "0.7.3";
31
31
  readonly genVersion: "2.605.0";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.7.2 2.605.0 0.4.0 @financeable/aggregation";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.7.3 2.605.0 0.4.0 @financeable/aggregation";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
28
28
  exports.SDK_METADATA = {
29
29
  language: "typescript",
30
30
  openapiDocVersion: "0.4.0",
31
- sdkVersion: "0.7.2",
31
+ sdkVersion: "0.7.3",
32
32
  genVersion: "2.605.0",
33
- userAgent: "speakeasy-sdk/typescript 0.7.2 2.605.0 0.4.0 @financeable/aggregation",
33
+ userAgent: "speakeasy-sdk/typescript 0.7.3 2.605.0 0.4.0 @financeable/aggregation",
34
34
  };
35
35
  //# sourceMappingURL=config.js.map
@@ -1,4 +1,5 @@
1
1
  import * as z from "zod";
2
+ import { ClosedEnum } from "../../types/enums.js";
2
3
  import { Result as SafeParseResult } from "../../types/fp.js";
3
4
  import * as components from "../components/index.js";
4
5
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
@@ -6,6 +7,48 @@ export type Data = components.CommercialSecuredApplicationPayload | components.C
6
7
  export type CreateApplicationRequestBody = {
7
8
  data: components.CommercialSecuredApplicationPayload | components.ConsumerSecuredApplicationPayload;
8
9
  };
10
+ export declare const CreateApplicationIncludedApplicationsResponseType: {
11
+ readonly Customers: "customers";
12
+ };
13
+ export type CreateApplicationIncludedApplicationsResponseType = ClosedEnum<typeof CreateApplicationIncludedApplicationsResponseType>;
14
+ export type Five = {
15
+ type: CreateApplicationIncludedApplicationsResponseType;
16
+ id: string;
17
+ };
18
+ export declare const CreateApplicationIncludedApplicationsType: {
19
+ readonly LoanDetails: "loan-details";
20
+ };
21
+ export type CreateApplicationIncludedApplicationsType = ClosedEnum<typeof CreateApplicationIncludedApplicationsType>;
22
+ export type Four = {
23
+ type: CreateApplicationIncludedApplicationsType;
24
+ id: string;
25
+ };
26
+ export declare const CreateApplicationIncludedType: {
27
+ readonly Entities: "entities";
28
+ };
29
+ export type CreateApplicationIncludedType = ClosedEnum<typeof CreateApplicationIncludedType>;
30
+ export type Three = {
31
+ type: CreateApplicationIncludedType;
32
+ id: string;
33
+ };
34
+ export declare const IncludedType: {
35
+ readonly Assets: "assets";
36
+ };
37
+ export type IncludedType = ClosedEnum<typeof IncludedType>;
38
+ export type Two = {
39
+ type: IncludedType;
40
+ id: string;
41
+ };
42
+ export declare const Type: {
43
+ readonly Addresses: "addresses";
44
+ };
45
+ export type Type = ClosedEnum<typeof Type>;
46
+ export type One = {
47
+ type: Type;
48
+ id: string;
49
+ };
50
+ export type Included = One | Two | Three | Four | Five;
51
+ export type Links = {};
9
52
  /**
10
53
  * The request has succeeded and a new resource has been created as a result.
11
54
  */
@@ -14,11 +57,8 @@ export type CreateApplicationResponseBody = {
14
57
  * Represents either a Consumer or Commercial Application resource
15
58
  */
16
59
  data: components.ApplicationResource;
17
- included?: Array<components.ApplicationResource> | undefined;
18
- /**
19
- * Standard link object
20
- */
21
- links?: components.LinkObject | undefined;
60
+ included?: Array<One | Two | Three | Four | Five> | undefined;
61
+ links?: Links | undefined;
22
62
  };
23
63
  /** @internal */
24
64
  export declare const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown>;
@@ -63,12 +103,257 @@ export declare namespace CreateApplicationRequestBody$ {
63
103
  export declare function createApplicationRequestBodyToJSON(createApplicationRequestBody: CreateApplicationRequestBody): string;
64
104
  export declare function createApplicationRequestBodyFromJSON(jsonString: string): SafeParseResult<CreateApplicationRequestBody, SDKValidationError>;
65
105
  /** @internal */
106
+ export declare const CreateApplicationIncludedApplicationsResponseType$inboundSchema: z.ZodNativeEnum<typeof CreateApplicationIncludedApplicationsResponseType>;
107
+ /** @internal */
108
+ export declare const CreateApplicationIncludedApplicationsResponseType$outboundSchema: z.ZodNativeEnum<typeof CreateApplicationIncludedApplicationsResponseType>;
109
+ /**
110
+ * @internal
111
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
112
+ */
113
+ export declare namespace CreateApplicationIncludedApplicationsResponseType$ {
114
+ /** @deprecated use `CreateApplicationIncludedApplicationsResponseType$inboundSchema` instead. */
115
+ const inboundSchema: z.ZodNativeEnum<{
116
+ readonly Customers: "customers";
117
+ }>;
118
+ /** @deprecated use `CreateApplicationIncludedApplicationsResponseType$outboundSchema` instead. */
119
+ const outboundSchema: z.ZodNativeEnum<{
120
+ readonly Customers: "customers";
121
+ }>;
122
+ }
123
+ /** @internal */
124
+ export declare const Five$inboundSchema: z.ZodType<Five, z.ZodTypeDef, unknown>;
125
+ /** @internal */
126
+ export type Five$Outbound = {
127
+ type: string;
128
+ id: string;
129
+ };
130
+ /** @internal */
131
+ export declare const Five$outboundSchema: z.ZodType<Five$Outbound, z.ZodTypeDef, Five>;
132
+ /**
133
+ * @internal
134
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
135
+ */
136
+ export declare namespace Five$ {
137
+ /** @deprecated use `Five$inboundSchema` instead. */
138
+ const inboundSchema: z.ZodType<Five, z.ZodTypeDef, unknown>;
139
+ /** @deprecated use `Five$outboundSchema` instead. */
140
+ const outboundSchema: z.ZodType<Five$Outbound, z.ZodTypeDef, Five>;
141
+ /** @deprecated use `Five$Outbound` instead. */
142
+ type Outbound = Five$Outbound;
143
+ }
144
+ export declare function fiveToJSON(five: Five): string;
145
+ export declare function fiveFromJSON(jsonString: string): SafeParseResult<Five, SDKValidationError>;
146
+ /** @internal */
147
+ export declare const CreateApplicationIncludedApplicationsType$inboundSchema: z.ZodNativeEnum<typeof CreateApplicationIncludedApplicationsType>;
148
+ /** @internal */
149
+ export declare const CreateApplicationIncludedApplicationsType$outboundSchema: z.ZodNativeEnum<typeof CreateApplicationIncludedApplicationsType>;
150
+ /**
151
+ * @internal
152
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
153
+ */
154
+ export declare namespace CreateApplicationIncludedApplicationsType$ {
155
+ /** @deprecated use `CreateApplicationIncludedApplicationsType$inboundSchema` instead. */
156
+ const inboundSchema: z.ZodNativeEnum<{
157
+ readonly LoanDetails: "loan-details";
158
+ }>;
159
+ /** @deprecated use `CreateApplicationIncludedApplicationsType$outboundSchema` instead. */
160
+ const outboundSchema: z.ZodNativeEnum<{
161
+ readonly LoanDetails: "loan-details";
162
+ }>;
163
+ }
164
+ /** @internal */
165
+ export declare const Four$inboundSchema: z.ZodType<Four, z.ZodTypeDef, unknown>;
166
+ /** @internal */
167
+ export type Four$Outbound = {
168
+ type: string;
169
+ id: string;
170
+ };
171
+ /** @internal */
172
+ export declare const Four$outboundSchema: z.ZodType<Four$Outbound, z.ZodTypeDef, Four>;
173
+ /**
174
+ * @internal
175
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
176
+ */
177
+ export declare namespace Four$ {
178
+ /** @deprecated use `Four$inboundSchema` instead. */
179
+ const inboundSchema: z.ZodType<Four, z.ZodTypeDef, unknown>;
180
+ /** @deprecated use `Four$outboundSchema` instead. */
181
+ const outboundSchema: z.ZodType<Four$Outbound, z.ZodTypeDef, Four>;
182
+ /** @deprecated use `Four$Outbound` instead. */
183
+ type Outbound = Four$Outbound;
184
+ }
185
+ export declare function fourToJSON(four: Four): string;
186
+ export declare function fourFromJSON(jsonString: string): SafeParseResult<Four, SDKValidationError>;
187
+ /** @internal */
188
+ export declare const CreateApplicationIncludedType$inboundSchema: z.ZodNativeEnum<typeof CreateApplicationIncludedType>;
189
+ /** @internal */
190
+ export declare const CreateApplicationIncludedType$outboundSchema: z.ZodNativeEnum<typeof CreateApplicationIncludedType>;
191
+ /**
192
+ * @internal
193
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
194
+ */
195
+ export declare namespace CreateApplicationIncludedType$ {
196
+ /** @deprecated use `CreateApplicationIncludedType$inboundSchema` instead. */
197
+ const inboundSchema: z.ZodNativeEnum<{
198
+ readonly Entities: "entities";
199
+ }>;
200
+ /** @deprecated use `CreateApplicationIncludedType$outboundSchema` instead. */
201
+ const outboundSchema: z.ZodNativeEnum<{
202
+ readonly Entities: "entities";
203
+ }>;
204
+ }
205
+ /** @internal */
206
+ export declare const Three$inboundSchema: z.ZodType<Three, z.ZodTypeDef, unknown>;
207
+ /** @internal */
208
+ export type Three$Outbound = {
209
+ type: string;
210
+ id: string;
211
+ };
212
+ /** @internal */
213
+ export declare const Three$outboundSchema: z.ZodType<Three$Outbound, z.ZodTypeDef, Three>;
214
+ /**
215
+ * @internal
216
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
217
+ */
218
+ export declare namespace Three$ {
219
+ /** @deprecated use `Three$inboundSchema` instead. */
220
+ const inboundSchema: z.ZodType<Three, z.ZodTypeDef, unknown>;
221
+ /** @deprecated use `Three$outboundSchema` instead. */
222
+ const outboundSchema: z.ZodType<Three$Outbound, z.ZodTypeDef, Three>;
223
+ /** @deprecated use `Three$Outbound` instead. */
224
+ type Outbound = Three$Outbound;
225
+ }
226
+ export declare function threeToJSON(three: Three): string;
227
+ export declare function threeFromJSON(jsonString: string): SafeParseResult<Three, SDKValidationError>;
228
+ /** @internal */
229
+ export declare const IncludedType$inboundSchema: z.ZodNativeEnum<typeof IncludedType>;
230
+ /** @internal */
231
+ export declare const IncludedType$outboundSchema: z.ZodNativeEnum<typeof IncludedType>;
232
+ /**
233
+ * @internal
234
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
235
+ */
236
+ export declare namespace IncludedType$ {
237
+ /** @deprecated use `IncludedType$inboundSchema` instead. */
238
+ const inboundSchema: z.ZodNativeEnum<{
239
+ readonly Assets: "assets";
240
+ }>;
241
+ /** @deprecated use `IncludedType$outboundSchema` instead. */
242
+ const outboundSchema: z.ZodNativeEnum<{
243
+ readonly Assets: "assets";
244
+ }>;
245
+ }
246
+ /** @internal */
247
+ export declare const Two$inboundSchema: z.ZodType<Two, z.ZodTypeDef, unknown>;
248
+ /** @internal */
249
+ export type Two$Outbound = {
250
+ type: string;
251
+ id: string;
252
+ };
253
+ /** @internal */
254
+ export declare const Two$outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two>;
255
+ /**
256
+ * @internal
257
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
258
+ */
259
+ export declare namespace Two$ {
260
+ /** @deprecated use `Two$inboundSchema` instead. */
261
+ const inboundSchema: z.ZodType<Two, z.ZodTypeDef, unknown>;
262
+ /** @deprecated use `Two$outboundSchema` instead. */
263
+ const outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two>;
264
+ /** @deprecated use `Two$Outbound` instead. */
265
+ type Outbound = Two$Outbound;
266
+ }
267
+ export declare function twoToJSON(two: Two): string;
268
+ export declare function twoFromJSON(jsonString: string): SafeParseResult<Two, SDKValidationError>;
269
+ /** @internal */
270
+ export declare const Type$inboundSchema: z.ZodNativeEnum<typeof Type>;
271
+ /** @internal */
272
+ export declare const Type$outboundSchema: z.ZodNativeEnum<typeof Type>;
273
+ /**
274
+ * @internal
275
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
276
+ */
277
+ export declare namespace Type$ {
278
+ /** @deprecated use `Type$inboundSchema` instead. */
279
+ const inboundSchema: z.ZodNativeEnum<{
280
+ readonly Addresses: "addresses";
281
+ }>;
282
+ /** @deprecated use `Type$outboundSchema` instead. */
283
+ const outboundSchema: z.ZodNativeEnum<{
284
+ readonly Addresses: "addresses";
285
+ }>;
286
+ }
287
+ /** @internal */
288
+ export declare const One$inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown>;
289
+ /** @internal */
290
+ export type One$Outbound = {
291
+ type: string;
292
+ id: string;
293
+ };
294
+ /** @internal */
295
+ export declare const One$outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One>;
296
+ /**
297
+ * @internal
298
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
299
+ */
300
+ export declare namespace One$ {
301
+ /** @deprecated use `One$inboundSchema` instead. */
302
+ const inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown>;
303
+ /** @deprecated use `One$outboundSchema` instead. */
304
+ const outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One>;
305
+ /** @deprecated use `One$Outbound` instead. */
306
+ type Outbound = One$Outbound;
307
+ }
308
+ export declare function oneToJSON(one: One): string;
309
+ export declare function oneFromJSON(jsonString: string): SafeParseResult<One, SDKValidationError>;
310
+ /** @internal */
311
+ export declare const Included$inboundSchema: z.ZodType<Included, z.ZodTypeDef, unknown>;
312
+ /** @internal */
313
+ export type Included$Outbound = One$Outbound | Two$Outbound | Three$Outbound | Four$Outbound | Five$Outbound;
314
+ /** @internal */
315
+ export declare const Included$outboundSchema: z.ZodType<Included$Outbound, z.ZodTypeDef, Included>;
316
+ /**
317
+ * @internal
318
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
319
+ */
320
+ export declare namespace Included$ {
321
+ /** @deprecated use `Included$inboundSchema` instead. */
322
+ const inboundSchema: z.ZodType<Included, z.ZodTypeDef, unknown>;
323
+ /** @deprecated use `Included$outboundSchema` instead. */
324
+ const outboundSchema: z.ZodType<Included$Outbound, z.ZodTypeDef, Included>;
325
+ /** @deprecated use `Included$Outbound` instead. */
326
+ type Outbound = Included$Outbound;
327
+ }
328
+ export declare function includedToJSON(included: Included): string;
329
+ export declare function includedFromJSON(jsonString: string): SafeParseResult<Included, SDKValidationError>;
330
+ /** @internal */
331
+ export declare const Links$inboundSchema: z.ZodType<Links, z.ZodTypeDef, unknown>;
332
+ /** @internal */
333
+ export type Links$Outbound = {};
334
+ /** @internal */
335
+ export declare const Links$outboundSchema: z.ZodType<Links$Outbound, z.ZodTypeDef, Links>;
336
+ /**
337
+ * @internal
338
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
339
+ */
340
+ export declare namespace Links$ {
341
+ /** @deprecated use `Links$inboundSchema` instead. */
342
+ const inboundSchema: z.ZodType<Links, z.ZodTypeDef, unknown>;
343
+ /** @deprecated use `Links$outboundSchema` instead. */
344
+ const outboundSchema: z.ZodType<Links$Outbound, z.ZodTypeDef, Links>;
345
+ /** @deprecated use `Links$Outbound` instead. */
346
+ type Outbound = Links$Outbound;
347
+ }
348
+ export declare function linksToJSON(links: Links): string;
349
+ export declare function linksFromJSON(jsonString: string): SafeParseResult<Links, SDKValidationError>;
350
+ /** @internal */
66
351
  export declare const CreateApplicationResponseBody$inboundSchema: z.ZodType<CreateApplicationResponseBody, z.ZodTypeDef, unknown>;
67
352
  /** @internal */
68
353
  export type CreateApplicationResponseBody$Outbound = {
69
354
  data: components.ApplicationResource$Outbound;
70
- included?: Array<components.ApplicationResource$Outbound> | undefined;
71
- links?: components.LinkObject$Outbound | undefined;
355
+ included?: Array<One$Outbound | Two$Outbound | Three$Outbound | Four$Outbound | Five$Outbound> | undefined;
356
+ links?: Links$Outbound | undefined;
72
357
  };
73
358
  /** @internal */
74
359
  export declare const CreateApplicationResponseBody$outboundSchema: z.ZodType<CreateApplicationResponseBody$Outbound, z.ZodTypeDef, CreateApplicationResponseBody>;
@@ -1 +1 @@
1
- {"version":3,"file":"createapplication.d.ts","sourceRoot":"","sources":["../../src/models/operations/createapplication.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,IAAI,GACZ,UAAU,CAAC,mCAAmC,GAC9C,UAAU,CAAC,iCAAiC,CAAC;AAEjD,MAAM,MAAM,4BAA4B,GAAG;IACzC,IAAI,EACA,UAAU,CAAC,mCAAmC,GAC9C,UAAU,CAAC,iCAAiC,CAAC;CAClD,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,6BAA6B,GAAG;IAC1C;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC,mBAAmB,CAAC;IACrC,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,mBAAmB,CAAC,GAAG,SAAS,CAAC;IAC7D;;OAEG;IACH,KAAK,CAAC,EAAE,UAAU,CAAC,UAAU,GAAG,SAAS,CAAC;CAC3C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAIlE,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,aAAa,GACrB,UAAU,CAAC,4CAA4C,GACvD,UAAU,CAAC,0CAA0C,CAAC;AAE1D,gBAAgB;AAChB,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC,UAAU,EAAE,IAAI,CAIzE,CAAC;AAEL;;;GAGG;AACH,yBAAiB,KAAK,CAAC;IACrB,oDAAoD;IAC7C,MAAM,aAAa,wCAAqB,CAAC;IAChD,qDAAqD;IAC9C,MAAM,cAAc,8CAAsB,CAAC;IAClD,+CAA+C;IAC/C,KAAY,QAAQ,GAAG,aAAa,CAAC;CACtC;AAED,wBAAgB,UAAU,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM,CAE7C;AAED,wBAAgB,YAAY,CAC1B,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,IAAI,EAAE,kBAAkB,CAAC,CAM3C;AAED,gBAAgB;AAChB,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,4BAA4B,EAC5B,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,qCAAqC,GAAG;IAClD,IAAI,EACA,UAAU,CAAC,4CAA4C,GACvD,UAAU,CAAC,0CAA0C,CAAC;CAC3D,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,qCAAqC,EACrC,CAAC,CAAC,UAAU,EACZ,4BAA4B,CAM5B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,6BAA6B,CAAC;IAC7C,4EAA4E;IACrE,MAAM,aAAa,gEAA6C,CAAC;IACxE,6EAA6E;IACtE,MAAM,cAAc,8FAA8C,CAAC;IAC1E,uEAAuE;IACvE,KAAY,QAAQ,GAAG,qCAAqC,CAAC;CAC9D;AAED,wBAAgB,kCAAkC,CAChD,4BAA4B,EAAE,4BAA4B,GACzD,MAAM,CAMR;AAED,wBAAgB,oCAAoC,CAClD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,4BAA4B,EAAE,kBAAkB,CAAC,CAMnE;AAED,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,sCAAsC,GAAG;IACnD,IAAI,EAAE,UAAU,CAAC,4BAA4B,CAAC;IAC9C,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,4BAA4B,CAAC,GAAG,SAAS,CAAC;IACtE,KAAK,CAAC,EAAE,UAAU,CAAC,mBAAmB,GAAG,SAAS,CAAC;CACpD,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,4CAA4C,EAAE,CAAC,CAAC,OAAO,CAClE,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,6BAA6B,CAK7B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,8BAA8B,CAAC;IAC9C,6EAA6E;IACtE,MAAM,aAAa,iEAA8C,CAAC;IACzE,8EAA8E;IACvE,MAAM,cAAc,gGAA+C,CAAC;IAC3E,wEAAwE;IACxE,KAAY,QAAQ,GAAG,sCAAsC,CAAC;CAC/D;AAED,wBAAgB,mCAAmC,CACjD,6BAA6B,EAAE,6BAA6B,GAC3D,MAAM,CAMR;AAED,wBAAgB,qCAAqC,CACnD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,6BAA6B,EAAE,kBAAkB,CAAC,CAMpE"}
1
+ {"version":3,"file":"createapplication.d.ts","sourceRoot":"","sources":["../../src/models/operations/createapplication.ts"],"names":[],"mappings":"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"}