@managesome/knotr-toolkit 0.8.18 → 0.8.20
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/backend/index.d.ts +2 -2
- package/dist/backend/index.d.ts.map +1 -1
- package/dist/backend/index.js +1 -1
- package/dist/backend/index.js.map +1 -1
- package/dist/backend/worker-queue.d.ts +203 -13
- package/dist/backend/worker-queue.d.ts.map +1 -1
- package/dist/backend/worker-queue.js +67 -12
- package/dist/backend/worker-queue.js.map +1 -1
- package/dist/constants/worker.d.ts +8 -0
- package/dist/constants/worker.d.ts.map +1 -1
- package/dist/constants/worker.js +8 -0
- package/dist/constants/worker.js.map +1 -1
- package/dist/schemas/account.schema.d.ts +66 -66
- package/dist/schemas/chat.schema.d.ts +49 -49
- package/dist/schemas/chat.schema.d.ts.map +1 -1
- package/dist/schemas/collaboration-request.schema.d.ts +84 -84
- package/dist/schemas/collaboration-request.schema.d.ts.map +1 -1
- package/dist/schemas/company-review.schema.d.ts +83 -83
- package/dist/schemas/company-review.schema.d.ts.map +1 -1
- package/dist/schemas/company.schema.d.ts +88 -88
- package/dist/schemas/company.schema.d.ts.map +1 -1
- package/dist/schemas/contract.schema.d.ts +120 -120
- package/dist/schemas/contract.schema.d.ts.map +1 -1
- package/dist/schemas/dispute.schema.d.ts +84 -84
- package/dist/schemas/dispute.schema.d.ts.map +1 -1
- package/dist/schemas/donation.schema.d.ts +49 -49
- package/dist/schemas/donation.schema.d.ts.map +1 -1
- package/dist/schemas/escrow.schema.d.ts +84 -84
- package/dist/schemas/escrow.schema.d.ts.map +1 -1
- package/dist/schemas/interest.schema.d.ts +87 -87
- package/dist/schemas/interest.schema.d.ts.map +1 -1
- package/dist/schemas/match.schema.d.ts +87 -87
- package/dist/schemas/match.schema.d.ts.map +1 -1
- package/dist/schemas/message.schema.d.ts +53 -53
- package/dist/schemas/message.schema.d.ts.map +1 -1
- package/dist/schemas/milestone.schema.d.ts +48 -48
- package/dist/schemas/notification.schema.d.ts +155 -155
- package/dist/schemas/notification.schema.d.ts.map +1 -1
- package/dist/schemas/profile.schema.d.ts +87 -87
- package/dist/schemas/profile.schema.d.ts.map +1 -1
- package/dist/schemas/profit-share-agreement.schema.d.ts +48 -48
- package/dist/schemas/profit-share.schema.d.ts +48 -48
- package/dist/schemas/proposal.schema.d.ts +48 -48
- package/dist/schemas/purchase.schema.d.ts +49 -49
- package/dist/schemas/purchase.schema.d.ts.map +1 -1
- package/dist/schemas/requirement-post.schema.d.ts +84 -84
- package/dist/schemas/requirement-post.schema.d.ts.map +1 -1
- package/dist/schemas/service-listing.schema.d.ts +48 -48
- package/dist/schemas/subscription.schema.d.ts +83 -83
- package/dist/schemas/subscription.schema.d.ts.map +1 -1
- package/dist/schemas/tmc-application.schema.d.ts +48 -48
- package/dist/schemas/tmc-membership.schema.d.ts +48 -48
- package/dist/schemas/trust-badge.schema.d.ts +48 -48
- package/dist/schemas/verification.schema.d.ts +87 -87
- package/dist/schemas/verification.schema.d.ts.map +1 -1
- package/dist/schemas/webhook-event.schema.d.ts +48 -48
- package/dist/types/worker.d.ts +9 -2
- package/dist/types/worker.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1080,7 +1080,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1080
1080
|
id: string;
|
|
1081
1081
|
}> | undefined;
|
|
1082
1082
|
get?: import("mongoose").SchemaDefinitionProperty<{
|
|
1083
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1083
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T, type?: any, options?: any): (Omit<IPurchase, "id"> & {
|
|
1084
1084
|
_id: string;
|
|
1085
1085
|
})[T];
|
|
1086
1086
|
(path: string, type?: any, options?: any): any;
|
|
@@ -1239,7 +1239,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1239
1239
|
id: string;
|
|
1240
1240
|
}> | undefined;
|
|
1241
1241
|
invalidate?: import("mongoose").SchemaDefinitionProperty<{
|
|
1242
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1242
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1243
1243
|
(path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1244
1244
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1245
1245
|
_id: string;
|
|
@@ -1273,7 +1273,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1273
1273
|
id: string;
|
|
1274
1274
|
}> | undefined;
|
|
1275
1275
|
isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1276
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1276
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T | T[]): boolean;
|
|
1277
1277
|
(path: string | Array<string>): boolean;
|
|
1278
1278
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1279
1279
|
_id: string;
|
|
@@ -1307,7 +1307,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1307
1307
|
id: string;
|
|
1308
1308
|
}> | undefined;
|
|
1309
1309
|
isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1310
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1310
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T): boolean;
|
|
1311
1311
|
(path: string): boolean;
|
|
1312
1312
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1313
1313
|
_id: string;
|
|
@@ -1341,7 +1341,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1341
1341
|
id: string;
|
|
1342
1342
|
}> | undefined;
|
|
1343
1343
|
isInit?: import("mongoose").SchemaDefinitionProperty<{
|
|
1344
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1344
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T): boolean;
|
|
1345
1345
|
(path: string): boolean;
|
|
1346
1346
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1347
1347
|
_id: string;
|
|
@@ -1375,7 +1375,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1375
1375
|
id: string;
|
|
1376
1376
|
}> | undefined;
|
|
1377
1377
|
isModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1378
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1378
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path?: T | T[] | undefined, options?: {
|
|
1379
1379
|
ignoreAtomics?: boolean;
|
|
1380
1380
|
} | null): boolean;
|
|
1381
1381
|
(path?: string | Array<string>, options?: {
|
|
@@ -1444,7 +1444,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1444
1444
|
id: string;
|
|
1445
1445
|
}> | undefined;
|
|
1446
1446
|
isSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1447
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1447
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T): boolean;
|
|
1448
1448
|
(path: string): boolean;
|
|
1449
1449
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1450
1450
|
_id: string;
|
|
@@ -1478,7 +1478,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1478
1478
|
id: string;
|
|
1479
1479
|
}> | undefined;
|
|
1480
1480
|
markModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1481
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1481
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T, scope?: any): void;
|
|
1482
1482
|
(path: string, scope?: any): void;
|
|
1483
1483
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1484
1484
|
_id: string;
|
|
@@ -1917,7 +1917,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
1917
1917
|
id: string;
|
|
1918
1918
|
}> | undefined;
|
|
1919
1919
|
set?: import("mongoose").SchemaDefinitionProperty<{
|
|
1920
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
1920
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T, val: (Omit<IPurchase, "id"> & {
|
|
1921
1921
|
_id: string;
|
|
1922
1922
|
})[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
1923
1923
|
_id: string;
|
|
@@ -2005,10 +2005,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2005
2005
|
currency: string;
|
|
2006
2006
|
amount: number;
|
|
2007
2007
|
type: PurchaseType;
|
|
2008
|
+
accountId: string;
|
|
2008
2009
|
createdAt: Date;
|
|
2009
2010
|
updatedAt: Date;
|
|
2010
2011
|
_id: string;
|
|
2011
|
-
accountId: string;
|
|
2012
2012
|
isAnonymous?: boolean | undefined;
|
|
2013
2013
|
provider: PaymentProvider;
|
|
2014
2014
|
providerTransactionId: string;
|
|
@@ -2026,9 +2026,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2026
2026
|
currency: string;
|
|
2027
2027
|
amount: number;
|
|
2028
2028
|
type: PurchaseType;
|
|
2029
|
+
accountId: string;
|
|
2029
2030
|
createdAt: Date;
|
|
2030
2031
|
updatedAt: Date;
|
|
2031
|
-
accountId: string;
|
|
2032
2032
|
isAnonymous?: boolean | undefined;
|
|
2033
2033
|
provider: PaymentProvider;
|
|
2034
2034
|
providerTransactionId: string;
|
|
@@ -2067,10 +2067,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2067
2067
|
currency: string;
|
|
2068
2068
|
amount: number;
|
|
2069
2069
|
type: PurchaseType;
|
|
2070
|
+
accountId: string;
|
|
2070
2071
|
createdAt: Date;
|
|
2071
2072
|
updatedAt: Date;
|
|
2072
2073
|
_id: string;
|
|
2073
|
-
accountId: string;
|
|
2074
2074
|
isAnonymous?: boolean | undefined;
|
|
2075
2075
|
provider: PaymentProvider;
|
|
2076
2076
|
providerTransactionId: string;
|
|
@@ -2088,9 +2088,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2088
2088
|
currency: string;
|
|
2089
2089
|
amount: number;
|
|
2090
2090
|
type: PurchaseType;
|
|
2091
|
+
accountId: string;
|
|
2091
2092
|
createdAt: Date;
|
|
2092
2093
|
updatedAt: Date;
|
|
2093
|
-
accountId: string;
|
|
2094
2094
|
isAnonymous?: boolean | undefined;
|
|
2095
2095
|
provider: PaymentProvider;
|
|
2096
2096
|
providerTransactionId: string;
|
|
@@ -2129,10 +2129,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2129
2129
|
currency: string;
|
|
2130
2130
|
amount: number;
|
|
2131
2131
|
type: PurchaseType;
|
|
2132
|
+
accountId: string;
|
|
2132
2133
|
createdAt: Date;
|
|
2133
2134
|
updatedAt: Date;
|
|
2134
2135
|
_id: string;
|
|
2135
|
-
accountId: string;
|
|
2136
2136
|
isAnonymous?: boolean | undefined;
|
|
2137
2137
|
provider: PaymentProvider;
|
|
2138
2138
|
providerTransactionId: string;
|
|
@@ -2150,9 +2150,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2150
2150
|
currency: string;
|
|
2151
2151
|
amount: number;
|
|
2152
2152
|
type: PurchaseType;
|
|
2153
|
+
accountId: string;
|
|
2153
2154
|
createdAt: Date;
|
|
2154
2155
|
updatedAt: Date;
|
|
2155
|
-
accountId: string;
|
|
2156
2156
|
isAnonymous?: boolean | undefined;
|
|
2157
2157
|
provider: PaymentProvider;
|
|
2158
2158
|
providerTransactionId: string;
|
|
@@ -2191,10 +2191,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2191
2191
|
currency: string;
|
|
2192
2192
|
amount: number;
|
|
2193
2193
|
type: PurchaseType;
|
|
2194
|
+
accountId: string;
|
|
2194
2195
|
createdAt: Date;
|
|
2195
2196
|
updatedAt: Date;
|
|
2196
2197
|
_id: string;
|
|
2197
|
-
accountId: string;
|
|
2198
2198
|
isAnonymous?: boolean | undefined;
|
|
2199
2199
|
provider: PaymentProvider;
|
|
2200
2200
|
providerTransactionId: string;
|
|
@@ -2212,9 +2212,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2212
2212
|
currency: string;
|
|
2213
2213
|
amount: number;
|
|
2214
2214
|
type: PurchaseType;
|
|
2215
|
+
accountId: string;
|
|
2215
2216
|
createdAt: Date;
|
|
2216
2217
|
updatedAt: Date;
|
|
2217
|
-
accountId: string;
|
|
2218
2218
|
isAnonymous?: boolean | undefined;
|
|
2219
2219
|
provider: PaymentProvider;
|
|
2220
2220
|
providerTransactionId: string;
|
|
@@ -2252,9 +2252,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2252
2252
|
currency: string;
|
|
2253
2253
|
amount: number;
|
|
2254
2254
|
type: PurchaseType;
|
|
2255
|
+
accountId: string;
|
|
2255
2256
|
createdAt: Date;
|
|
2256
2257
|
updatedAt: Date;
|
|
2257
|
-
accountId: string;
|
|
2258
2258
|
isAnonymous?: boolean | undefined;
|
|
2259
2259
|
provider: PaymentProvider;
|
|
2260
2260
|
providerTransactionId: string;
|
|
@@ -2272,9 +2272,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2272
2272
|
currency: string;
|
|
2273
2273
|
amount: number;
|
|
2274
2274
|
type: PurchaseType;
|
|
2275
|
+
accountId: string;
|
|
2275
2276
|
createdAt: Date;
|
|
2276
2277
|
updatedAt: Date;
|
|
2277
|
-
accountId: string;
|
|
2278
2278
|
isAnonymous?: boolean | undefined;
|
|
2279
2279
|
provider: PaymentProvider;
|
|
2280
2280
|
providerTransactionId: string;
|
|
@@ -2292,9 +2292,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2292
2292
|
currency: string;
|
|
2293
2293
|
amount: number;
|
|
2294
2294
|
type: PurchaseType;
|
|
2295
|
+
accountId: string;
|
|
2295
2296
|
createdAt: Date;
|
|
2296
2297
|
updatedAt: Date;
|
|
2297
|
-
accountId: string;
|
|
2298
2298
|
isAnonymous?: boolean | undefined;
|
|
2299
2299
|
provider: PaymentProvider;
|
|
2300
2300
|
providerTransactionId: string;
|
|
@@ -2311,9 +2311,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2311
2311
|
currency: string;
|
|
2312
2312
|
amount: number;
|
|
2313
2313
|
type: PurchaseType;
|
|
2314
|
+
accountId: string;
|
|
2314
2315
|
createdAt: Date;
|
|
2315
2316
|
updatedAt: Date;
|
|
2316
|
-
accountId: string;
|
|
2317
2317
|
isAnonymous?: boolean | undefined;
|
|
2318
2318
|
provider: PaymentProvider;
|
|
2319
2319
|
providerTransactionId: string;
|
|
@@ -2348,10 +2348,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2348
2348
|
currency: string;
|
|
2349
2349
|
amount: number;
|
|
2350
2350
|
type: PurchaseType;
|
|
2351
|
+
accountId: string;
|
|
2351
2352
|
createdAt: Date;
|
|
2352
2353
|
updatedAt: Date;
|
|
2353
2354
|
_id: string;
|
|
2354
|
-
accountId: string;
|
|
2355
2355
|
isAnonymous?: boolean | undefined;
|
|
2356
2356
|
provider: PaymentProvider;
|
|
2357
2357
|
providerTransactionId: string;
|
|
@@ -2370,10 +2370,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2370
2370
|
currency: string;
|
|
2371
2371
|
amount: number;
|
|
2372
2372
|
type: PurchaseType;
|
|
2373
|
+
accountId: string;
|
|
2373
2374
|
createdAt: Date;
|
|
2374
2375
|
updatedAt: Date;
|
|
2375
2376
|
_id: string;
|
|
2376
|
-
accountId: string;
|
|
2377
2377
|
isAnonymous?: boolean | undefined;
|
|
2378
2378
|
provider: PaymentProvider;
|
|
2379
2379
|
providerTransactionId: string;
|
|
@@ -2400,10 +2400,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2400
2400
|
currency: string;
|
|
2401
2401
|
amount: number;
|
|
2402
2402
|
type: PurchaseType;
|
|
2403
|
+
accountId: string;
|
|
2403
2404
|
createdAt: Date;
|
|
2404
2405
|
updatedAt: Date;
|
|
2405
2406
|
_id: string;
|
|
2406
|
-
accountId: string;
|
|
2407
2407
|
isAnonymous?: boolean | undefined;
|
|
2408
2408
|
provider: PaymentProvider;
|
|
2409
2409
|
providerTransactionId: string;
|
|
@@ -2429,10 +2429,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2429
2429
|
currency: string;
|
|
2430
2430
|
amount: number;
|
|
2431
2431
|
type: PurchaseType;
|
|
2432
|
+
accountId: string;
|
|
2432
2433
|
createdAt: Date;
|
|
2433
2434
|
updatedAt: Date;
|
|
2434
2435
|
_id: string;
|
|
2435
|
-
accountId: string;
|
|
2436
2436
|
isAnonymous?: boolean | undefined;
|
|
2437
2437
|
provider: PaymentProvider;
|
|
2438
2438
|
providerTransactionId: string;
|
|
@@ -2449,10 +2449,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2449
2449
|
currency: string;
|
|
2450
2450
|
amount: number;
|
|
2451
2451
|
type: PurchaseType;
|
|
2452
|
+
accountId: string;
|
|
2452
2453
|
createdAt: Date;
|
|
2453
2454
|
updatedAt: Date;
|
|
2454
2455
|
_id: string;
|
|
2455
|
-
accountId: string;
|
|
2456
2456
|
isAnonymous?: boolean | undefined;
|
|
2457
2457
|
provider: PaymentProvider;
|
|
2458
2458
|
providerTransactionId: string;
|
|
@@ -2535,10 +2535,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2535
2535
|
currency: string;
|
|
2536
2536
|
amount: number;
|
|
2537
2537
|
type: PurchaseType;
|
|
2538
|
+
accountId: string;
|
|
2538
2539
|
createdAt: Date;
|
|
2539
2540
|
updatedAt: Date;
|
|
2540
2541
|
_id: string;
|
|
2541
|
-
accountId: string;
|
|
2542
2542
|
isAnonymous?: boolean | undefined;
|
|
2543
2543
|
provider: PaymentProvider;
|
|
2544
2544
|
providerTransactionId: string;
|
|
@@ -2556,9 +2556,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2556
2556
|
currency: string;
|
|
2557
2557
|
amount: number;
|
|
2558
2558
|
type: PurchaseType;
|
|
2559
|
+
accountId: string;
|
|
2559
2560
|
createdAt: Date;
|
|
2560
2561
|
updatedAt: Date;
|
|
2561
|
-
accountId: string;
|
|
2562
2562
|
isAnonymous?: boolean | undefined;
|
|
2563
2563
|
provider: PaymentProvider;
|
|
2564
2564
|
providerTransactionId: string;
|
|
@@ -2597,10 +2597,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2597
2597
|
currency: string;
|
|
2598
2598
|
amount: number;
|
|
2599
2599
|
type: PurchaseType;
|
|
2600
|
+
accountId: string;
|
|
2600
2601
|
createdAt: Date;
|
|
2601
2602
|
updatedAt: Date;
|
|
2602
2603
|
_id: string;
|
|
2603
|
-
accountId: string;
|
|
2604
2604
|
isAnonymous?: boolean | undefined;
|
|
2605
2605
|
provider: PaymentProvider;
|
|
2606
2606
|
providerTransactionId: string;
|
|
@@ -2618,9 +2618,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2618
2618
|
currency: string;
|
|
2619
2619
|
amount: number;
|
|
2620
2620
|
type: PurchaseType;
|
|
2621
|
+
accountId: string;
|
|
2621
2622
|
createdAt: Date;
|
|
2622
2623
|
updatedAt: Date;
|
|
2623
|
-
accountId: string;
|
|
2624
2624
|
isAnonymous?: boolean | undefined;
|
|
2625
2625
|
provider: PaymentProvider;
|
|
2626
2626
|
providerTransactionId: string;
|
|
@@ -2659,10 +2659,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2659
2659
|
currency: string;
|
|
2660
2660
|
amount: number;
|
|
2661
2661
|
type: PurchaseType;
|
|
2662
|
+
accountId: string;
|
|
2662
2663
|
createdAt: Date;
|
|
2663
2664
|
updatedAt: Date;
|
|
2664
2665
|
_id: string;
|
|
2665
|
-
accountId: string;
|
|
2666
2666
|
isAnonymous?: boolean | undefined;
|
|
2667
2667
|
provider: PaymentProvider;
|
|
2668
2668
|
providerTransactionId: string;
|
|
@@ -2680,9 +2680,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2680
2680
|
currency: string;
|
|
2681
2681
|
amount: number;
|
|
2682
2682
|
type: PurchaseType;
|
|
2683
|
+
accountId: string;
|
|
2683
2684
|
createdAt: Date;
|
|
2684
2685
|
updatedAt: Date;
|
|
2685
|
-
accountId: string;
|
|
2686
2686
|
isAnonymous?: boolean | undefined;
|
|
2687
2687
|
provider: PaymentProvider;
|
|
2688
2688
|
providerTransactionId: string;
|
|
@@ -2721,10 +2721,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2721
2721
|
currency: string;
|
|
2722
2722
|
amount: number;
|
|
2723
2723
|
type: PurchaseType;
|
|
2724
|
+
accountId: string;
|
|
2724
2725
|
createdAt: Date;
|
|
2725
2726
|
updatedAt: Date;
|
|
2726
2727
|
_id: string;
|
|
2727
|
-
accountId: string;
|
|
2728
2728
|
isAnonymous?: boolean | undefined;
|
|
2729
2729
|
provider: PaymentProvider;
|
|
2730
2730
|
providerTransactionId: string;
|
|
@@ -2742,9 +2742,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2742
2742
|
currency: string;
|
|
2743
2743
|
amount: number;
|
|
2744
2744
|
type: PurchaseType;
|
|
2745
|
+
accountId: string;
|
|
2745
2746
|
createdAt: Date;
|
|
2746
2747
|
updatedAt: Date;
|
|
2747
|
-
accountId: string;
|
|
2748
2748
|
isAnonymous?: boolean | undefined;
|
|
2749
2749
|
provider: PaymentProvider;
|
|
2750
2750
|
providerTransactionId: string;
|
|
@@ -2782,9 +2782,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2782
2782
|
currency: string;
|
|
2783
2783
|
amount: number;
|
|
2784
2784
|
type: PurchaseType;
|
|
2785
|
+
accountId: string;
|
|
2785
2786
|
createdAt: Date;
|
|
2786
2787
|
updatedAt: Date;
|
|
2787
|
-
accountId: string;
|
|
2788
2788
|
isAnonymous?: boolean | undefined;
|
|
2789
2789
|
provider: PaymentProvider;
|
|
2790
2790
|
providerTransactionId: string;
|
|
@@ -2802,9 +2802,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2802
2802
|
currency: string;
|
|
2803
2803
|
amount: number;
|
|
2804
2804
|
type: PurchaseType;
|
|
2805
|
+
accountId: string;
|
|
2805
2806
|
createdAt: Date;
|
|
2806
2807
|
updatedAt: Date;
|
|
2807
|
-
accountId: string;
|
|
2808
2808
|
isAnonymous?: boolean | undefined;
|
|
2809
2809
|
provider: PaymentProvider;
|
|
2810
2810
|
providerTransactionId: string;
|
|
@@ -2822,9 +2822,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2822
2822
|
currency: string;
|
|
2823
2823
|
amount: number;
|
|
2824
2824
|
type: PurchaseType;
|
|
2825
|
+
accountId: string;
|
|
2825
2826
|
createdAt: Date;
|
|
2826
2827
|
updatedAt: Date;
|
|
2827
|
-
accountId: string;
|
|
2828
2828
|
isAnonymous?: boolean | undefined;
|
|
2829
2829
|
provider: PaymentProvider;
|
|
2830
2830
|
providerTransactionId: string;
|
|
@@ -2841,9 +2841,9 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2841
2841
|
currency: string;
|
|
2842
2842
|
amount: number;
|
|
2843
2843
|
type: PurchaseType;
|
|
2844
|
+
accountId: string;
|
|
2844
2845
|
createdAt: Date;
|
|
2845
2846
|
updatedAt: Date;
|
|
2846
|
-
accountId: string;
|
|
2847
2847
|
isAnonymous?: boolean | undefined;
|
|
2848
2848
|
provider: PaymentProvider;
|
|
2849
2849
|
providerTransactionId: string;
|
|
@@ -2878,10 +2878,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2878
2878
|
currency: string;
|
|
2879
2879
|
amount: number;
|
|
2880
2880
|
type: PurchaseType;
|
|
2881
|
+
accountId: string;
|
|
2881
2882
|
createdAt: Date;
|
|
2882
2883
|
updatedAt: Date;
|
|
2883
2884
|
_id: string;
|
|
2884
|
-
accountId: string;
|
|
2885
2885
|
isAnonymous?: boolean | undefined;
|
|
2886
2886
|
provider: PaymentProvider;
|
|
2887
2887
|
providerTransactionId: string;
|
|
@@ -2900,10 +2900,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2900
2900
|
currency: string;
|
|
2901
2901
|
amount: number;
|
|
2902
2902
|
type: PurchaseType;
|
|
2903
|
+
accountId: string;
|
|
2903
2904
|
createdAt: Date;
|
|
2904
2905
|
updatedAt: Date;
|
|
2905
2906
|
_id: string;
|
|
2906
|
-
accountId: string;
|
|
2907
2907
|
isAnonymous?: boolean | undefined;
|
|
2908
2908
|
provider: PaymentProvider;
|
|
2909
2909
|
providerTransactionId: string;
|
|
@@ -2930,10 +2930,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2930
2930
|
currency: string;
|
|
2931
2931
|
amount: number;
|
|
2932
2932
|
type: PurchaseType;
|
|
2933
|
+
accountId: string;
|
|
2933
2934
|
createdAt: Date;
|
|
2934
2935
|
updatedAt: Date;
|
|
2935
2936
|
_id: string;
|
|
2936
|
-
accountId: string;
|
|
2937
2937
|
isAnonymous?: boolean | undefined;
|
|
2938
2938
|
provider: PaymentProvider;
|
|
2939
2939
|
providerTransactionId: string;
|
|
@@ -2959,10 +2959,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2959
2959
|
currency: string;
|
|
2960
2960
|
amount: number;
|
|
2961
2961
|
type: PurchaseType;
|
|
2962
|
+
accountId: string;
|
|
2962
2963
|
createdAt: Date;
|
|
2963
2964
|
updatedAt: Date;
|
|
2964
2965
|
_id: string;
|
|
2965
|
-
accountId: string;
|
|
2966
2966
|
isAnonymous?: boolean | undefined;
|
|
2967
2967
|
provider: PaymentProvider;
|
|
2968
2968
|
providerTransactionId: string;
|
|
@@ -2979,10 +2979,10 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
2979
2979
|
currency: string;
|
|
2980
2980
|
amount: number;
|
|
2981
2981
|
type: PurchaseType;
|
|
2982
|
+
accountId: string;
|
|
2982
2983
|
createdAt: Date;
|
|
2983
2984
|
updatedAt: Date;
|
|
2984
2985
|
_id: string;
|
|
2985
|
-
accountId: string;
|
|
2986
2986
|
isAnonymous?: boolean | undefined;
|
|
2987
2987
|
provider: PaymentProvider;
|
|
2988
2988
|
providerTransactionId: string;
|
|
@@ -3055,7 +3055,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3055
3055
|
id: string;
|
|
3056
3056
|
}> | undefined;
|
|
3057
3057
|
unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
3058
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
3058
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(path: T): void;
|
|
3059
3059
|
(path: string): void;
|
|
3060
3060
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
3061
3061
|
_id: string;
|
|
@@ -3140,7 +3140,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3140
3140
|
id: string;
|
|
3141
3141
|
}> | undefined;
|
|
3142
3142
|
validate?: import("mongoose").SchemaDefinitionProperty<{
|
|
3143
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
3143
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
|
|
3144
3144
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
|
|
3145
3145
|
(options: {
|
|
3146
3146
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
@@ -3181,7 +3181,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3181
3181
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
3182
3182
|
[k: string]: any;
|
|
3183
3183
|
}): import("mongoose").Error.ValidationError | null;
|
|
3184
|
-
<T extends "status" | "currency" | "amount" | "type" | "
|
|
3184
|
+
<T extends "status" | "currency" | "amount" | "type" | "accountId" | "createdAt" | "updatedAt" | "_id" | "isAnonymous" | "provider" | "providerTransactionId" | "productId" | "productName" | "profileCredits" | "donationMessage">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
3185
3185
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
3186
3186
|
}, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
3187
3187
|
_id: string;
|
|
@@ -3338,7 +3338,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3338
3338
|
} & {
|
|
3339
3339
|
id: string;
|
|
3340
3340
|
}> | undefined;
|
|
3341
|
-
|
|
3341
|
+
accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
3342
3342
|
_id: string;
|
|
3343
3343
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IPurchase, "id"> & {
|
|
3344
3344
|
_id: string;
|
|
@@ -3369,7 +3369,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3369
3369
|
} & {
|
|
3370
3370
|
id: string;
|
|
3371
3371
|
}> | undefined;
|
|
3372
|
-
|
|
3372
|
+
createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
3373
3373
|
_id: string;
|
|
3374
3374
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IPurchase, "id"> & {
|
|
3375
3375
|
_id: string;
|
|
@@ -3400,7 +3400,7 @@ export declare const PurchaseSchema: Schema<import("mongoose").Document<unknown,
|
|
|
3400
3400
|
} & {
|
|
3401
3401
|
id: string;
|
|
3402
3402
|
}> | undefined;
|
|
3403
|
-
|
|
3403
|
+
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IPurchase, "id"> & {
|
|
3404
3404
|
_id: string;
|
|
3405
3405
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IPurchase, "id"> & {
|
|
3406
3406
|
_id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purchase.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/purchase.schema.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAM/E,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG;IAAE,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAEzF,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,gBAAgB,CAAC;IAC5D,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAChE,2BAA2B,CAAC,qBAAqB,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IAC7F,UAAU,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC/E,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACnD;AAsDD,wBAAgB,oBAAoB,IAAI,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,CAgD9E;AAED,eAAO,MAAM,cAAc;SA/GoD,MAAM;;SAAN,MAAM;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;yBAgHg2H,CAAC;;;yBAAqG,CAAC;;;aAhH78H,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;uBAgHqvJ,CAAC;;aAhH5vJ,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM
|
|
1
|
+
{"version":3,"file":"purchase.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/purchase.schema.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAM/E,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG;IAAE,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAEzF,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,gBAAgB,CAAC;IAC5D,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAChE,2BAA2B,CAAC,qBAAqB,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IAC7F,UAAU,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC/E,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACnD;AAsDD,wBAAgB,oBAAoB,IAAI,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,CAgD9E;AAED,eAAO,MAAM,cAAc;SA/GoD,MAAM;;SAAN,MAAM;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;yBAgHg2H,CAAC;;;yBAAqG,CAAC;;;aAhH78H,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;uBAgHqvJ,CAAC;;aAhH5vJ,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;iBAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;iBAAN,MAAM;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;iBAAN,MAAM;;;;;;;iBAAN,MAAM;;;;;iBAAN,MAAM;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;iBAAN,MAAM;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;iBAAN,MAAM;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;iBAAN,MAAM;;;;;;;iBAAN,MAAM;;;;;iBAAN,MAAM;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;uBAgHoykB,CAAC;;;aAhH3ykB,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;uBAgHo9kB,CAAC;;;;;;aAhH39kB,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;SAAN,MAAM;;SAAN,MAAM;;;;;;;EA+GjC,CAAC"}
|