@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
|
@@ -1081,7 +1081,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1081
1081
|
id: string;
|
|
1082
1082
|
}> | undefined;
|
|
1083
1083
|
get?: import("mongoose").SchemaDefinitionProperty<{
|
|
1084
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1084
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T, type?: any, options?: any): (Omit<ICollaborationRequest, "id"> & {
|
|
1085
1085
|
_id: string;
|
|
1086
1086
|
})[T];
|
|
1087
1087
|
(path: string, type?: any, options?: any): any;
|
|
@@ -1240,7 +1240,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1240
1240
|
id: string;
|
|
1241
1241
|
}> | undefined;
|
|
1242
1242
|
invalidate?: import("mongoose").SchemaDefinitionProperty<{
|
|
1243
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1243
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1244
1244
|
(path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1245
1245
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1246
1246
|
_id: string;
|
|
@@ -1274,7 +1274,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1274
1274
|
id: string;
|
|
1275
1275
|
}> | undefined;
|
|
1276
1276
|
isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1277
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1277
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T | T[]): boolean;
|
|
1278
1278
|
(path: string | Array<string>): boolean;
|
|
1279
1279
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1280
1280
|
_id: string;
|
|
@@ -1308,7 +1308,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1308
1308
|
id: string;
|
|
1309
1309
|
}> | undefined;
|
|
1310
1310
|
isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1311
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1311
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T): boolean;
|
|
1312
1312
|
(path: string): boolean;
|
|
1313
1313
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1314
1314
|
_id: string;
|
|
@@ -1342,7 +1342,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1342
1342
|
id: string;
|
|
1343
1343
|
}> | undefined;
|
|
1344
1344
|
isInit?: import("mongoose").SchemaDefinitionProperty<{
|
|
1345
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1345
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T): boolean;
|
|
1346
1346
|
(path: string): boolean;
|
|
1347
1347
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1348
1348
|
_id: string;
|
|
@@ -1376,7 +1376,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1376
1376
|
id: string;
|
|
1377
1377
|
}> | undefined;
|
|
1378
1378
|
isModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1379
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1379
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path?: T | T[] | undefined, options?: {
|
|
1380
1380
|
ignoreAtomics?: boolean;
|
|
1381
1381
|
} | null): boolean;
|
|
1382
1382
|
(path?: string | Array<string>, options?: {
|
|
@@ -1445,7 +1445,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1445
1445
|
id: string;
|
|
1446
1446
|
}> | undefined;
|
|
1447
1447
|
isSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1448
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1448
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T): boolean;
|
|
1449
1449
|
(path: string): boolean;
|
|
1450
1450
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1451
1451
|
_id: string;
|
|
@@ -1479,7 +1479,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1479
1479
|
id: string;
|
|
1480
1480
|
}> | undefined;
|
|
1481
1481
|
markModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1482
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1482
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T, scope?: any): void;
|
|
1483
1483
|
(path: string, scope?: any): void;
|
|
1484
1484
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1485
1485
|
_id: string;
|
|
@@ -1918,7 +1918,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
1918
1918
|
id: string;
|
|
1919
1919
|
}> | undefined;
|
|
1920
1920
|
set?: import("mongoose").SchemaDefinitionProperty<{
|
|
1921
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
1921
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T, val: (Omit<ICollaborationRequest, "id"> & {
|
|
1922
1922
|
_id: string;
|
|
1923
1923
|
})[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
1924
1924
|
_id: string;
|
|
@@ -2007,11 +2007,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2007
2007
|
status: CollaborationStatus;
|
|
2008
2008
|
type: CollaborationType;
|
|
2009
2009
|
requirementId?: string | undefined;
|
|
2010
|
+
profileId?: string | undefined;
|
|
2011
|
+
matchId?: string | undefined;
|
|
2010
2012
|
createdAt: Date;
|
|
2011
2013
|
updatedAt: Date;
|
|
2012
2014
|
_id: string;
|
|
2013
|
-
matchId?: string | undefined;
|
|
2014
|
-
profileId?: string | undefined;
|
|
2015
2015
|
fromCompanyId: string;
|
|
2016
2016
|
toCompanyId: string;
|
|
2017
2017
|
terms: {
|
|
@@ -2034,10 +2034,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2034
2034
|
status: CollaborationStatus;
|
|
2035
2035
|
type: CollaborationType;
|
|
2036
2036
|
requirementId?: string | undefined;
|
|
2037
|
+
profileId?: string | undefined;
|
|
2038
|
+
matchId?: string | undefined;
|
|
2037
2039
|
createdAt: Date;
|
|
2038
2040
|
updatedAt: Date;
|
|
2039
|
-
matchId?: string | undefined;
|
|
2040
|
-
profileId?: string | undefined;
|
|
2041
2041
|
fromCompanyId: string;
|
|
2042
2042
|
toCompanyId: string;
|
|
2043
2043
|
terms: {
|
|
@@ -2081,11 +2081,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2081
2081
|
status: CollaborationStatus;
|
|
2082
2082
|
type: CollaborationType;
|
|
2083
2083
|
requirementId?: string | undefined;
|
|
2084
|
+
profileId?: string | undefined;
|
|
2085
|
+
matchId?: string | undefined;
|
|
2084
2086
|
createdAt: Date;
|
|
2085
2087
|
updatedAt: Date;
|
|
2086
2088
|
_id: string;
|
|
2087
|
-
matchId?: string | undefined;
|
|
2088
|
-
profileId?: string | undefined;
|
|
2089
2089
|
fromCompanyId: string;
|
|
2090
2090
|
toCompanyId: string;
|
|
2091
2091
|
terms: {
|
|
@@ -2108,10 +2108,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2108
2108
|
status: CollaborationStatus;
|
|
2109
2109
|
type: CollaborationType;
|
|
2110
2110
|
requirementId?: string | undefined;
|
|
2111
|
+
profileId?: string | undefined;
|
|
2112
|
+
matchId?: string | undefined;
|
|
2111
2113
|
createdAt: Date;
|
|
2112
2114
|
updatedAt: Date;
|
|
2113
|
-
matchId?: string | undefined;
|
|
2114
|
-
profileId?: string | undefined;
|
|
2115
2115
|
fromCompanyId: string;
|
|
2116
2116
|
toCompanyId: string;
|
|
2117
2117
|
terms: {
|
|
@@ -2155,11 +2155,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2155
2155
|
status: CollaborationStatus;
|
|
2156
2156
|
type: CollaborationType;
|
|
2157
2157
|
requirementId?: string | undefined;
|
|
2158
|
+
profileId?: string | undefined;
|
|
2159
|
+
matchId?: string | undefined;
|
|
2158
2160
|
createdAt: Date;
|
|
2159
2161
|
updatedAt: Date;
|
|
2160
2162
|
_id: string;
|
|
2161
|
-
matchId?: string | undefined;
|
|
2162
|
-
profileId?: string | undefined;
|
|
2163
2163
|
fromCompanyId: string;
|
|
2164
2164
|
toCompanyId: string;
|
|
2165
2165
|
terms: {
|
|
@@ -2182,10 +2182,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2182
2182
|
status: CollaborationStatus;
|
|
2183
2183
|
type: CollaborationType;
|
|
2184
2184
|
requirementId?: string | undefined;
|
|
2185
|
+
profileId?: string | undefined;
|
|
2186
|
+
matchId?: string | undefined;
|
|
2185
2187
|
createdAt: Date;
|
|
2186
2188
|
updatedAt: Date;
|
|
2187
|
-
matchId?: string | undefined;
|
|
2188
|
-
profileId?: string | undefined;
|
|
2189
2189
|
fromCompanyId: string;
|
|
2190
2190
|
toCompanyId: string;
|
|
2191
2191
|
terms: {
|
|
@@ -2229,11 +2229,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2229
2229
|
status: CollaborationStatus;
|
|
2230
2230
|
type: CollaborationType;
|
|
2231
2231
|
requirementId?: string | undefined;
|
|
2232
|
+
profileId?: string | undefined;
|
|
2233
|
+
matchId?: string | undefined;
|
|
2232
2234
|
createdAt: Date;
|
|
2233
2235
|
updatedAt: Date;
|
|
2234
2236
|
_id: string;
|
|
2235
|
-
matchId?: string | undefined;
|
|
2236
|
-
profileId?: string | undefined;
|
|
2237
2237
|
fromCompanyId: string;
|
|
2238
2238
|
toCompanyId: string;
|
|
2239
2239
|
terms: {
|
|
@@ -2256,10 +2256,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2256
2256
|
status: CollaborationStatus;
|
|
2257
2257
|
type: CollaborationType;
|
|
2258
2258
|
requirementId?: string | undefined;
|
|
2259
|
+
profileId?: string | undefined;
|
|
2260
|
+
matchId?: string | undefined;
|
|
2259
2261
|
createdAt: Date;
|
|
2260
2262
|
updatedAt: Date;
|
|
2261
|
-
matchId?: string | undefined;
|
|
2262
|
-
profileId?: string | undefined;
|
|
2263
2263
|
fromCompanyId: string;
|
|
2264
2264
|
toCompanyId: string;
|
|
2265
2265
|
terms: {
|
|
@@ -2302,10 +2302,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2302
2302
|
status: CollaborationStatus;
|
|
2303
2303
|
type: CollaborationType;
|
|
2304
2304
|
requirementId?: string | undefined;
|
|
2305
|
+
profileId?: string | undefined;
|
|
2306
|
+
matchId?: string | undefined;
|
|
2305
2307
|
createdAt: Date;
|
|
2306
2308
|
updatedAt: Date;
|
|
2307
|
-
matchId?: string | undefined;
|
|
2308
|
-
profileId?: string | undefined;
|
|
2309
2309
|
fromCompanyId: string;
|
|
2310
2310
|
toCompanyId: string;
|
|
2311
2311
|
terms: {
|
|
@@ -2328,10 +2328,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2328
2328
|
status: CollaborationStatus;
|
|
2329
2329
|
type: CollaborationType;
|
|
2330
2330
|
requirementId?: string | undefined;
|
|
2331
|
+
profileId?: string | undefined;
|
|
2332
|
+
matchId?: string | undefined;
|
|
2331
2333
|
createdAt: Date;
|
|
2332
2334
|
updatedAt: Date;
|
|
2333
|
-
matchId?: string | undefined;
|
|
2334
|
-
profileId?: string | undefined;
|
|
2335
2335
|
fromCompanyId: string;
|
|
2336
2336
|
toCompanyId: string;
|
|
2337
2337
|
terms: {
|
|
@@ -2354,10 +2354,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2354
2354
|
status: CollaborationStatus;
|
|
2355
2355
|
type: CollaborationType;
|
|
2356
2356
|
requirementId?: string | undefined;
|
|
2357
|
+
profileId?: string | undefined;
|
|
2358
|
+
matchId?: string | undefined;
|
|
2357
2359
|
createdAt: Date;
|
|
2358
2360
|
updatedAt: Date;
|
|
2359
|
-
matchId?: string | undefined;
|
|
2360
|
-
profileId?: string | undefined;
|
|
2361
2361
|
fromCompanyId: string;
|
|
2362
2362
|
toCompanyId: string;
|
|
2363
2363
|
terms: {
|
|
@@ -2379,10 +2379,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2379
2379
|
status: CollaborationStatus;
|
|
2380
2380
|
type: CollaborationType;
|
|
2381
2381
|
requirementId?: string | undefined;
|
|
2382
|
+
profileId?: string | undefined;
|
|
2383
|
+
matchId?: string | undefined;
|
|
2382
2384
|
createdAt: Date;
|
|
2383
2385
|
updatedAt: Date;
|
|
2384
|
-
matchId?: string | undefined;
|
|
2385
|
-
profileId?: string | undefined;
|
|
2386
2386
|
fromCompanyId: string;
|
|
2387
2387
|
toCompanyId: string;
|
|
2388
2388
|
terms: {
|
|
@@ -2422,11 +2422,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2422
2422
|
status: CollaborationStatus;
|
|
2423
2423
|
type: CollaborationType;
|
|
2424
2424
|
requirementId?: string | undefined;
|
|
2425
|
+
profileId?: string | undefined;
|
|
2426
|
+
matchId?: string | undefined;
|
|
2425
2427
|
createdAt: Date;
|
|
2426
2428
|
updatedAt: Date;
|
|
2427
2429
|
_id: string;
|
|
2428
|
-
matchId?: string | undefined;
|
|
2429
|
-
profileId?: string | undefined;
|
|
2430
2430
|
fromCompanyId: string;
|
|
2431
2431
|
toCompanyId: string;
|
|
2432
2432
|
terms: {
|
|
@@ -2450,11 +2450,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2450
2450
|
status: CollaborationStatus;
|
|
2451
2451
|
type: CollaborationType;
|
|
2452
2452
|
requirementId?: string | undefined;
|
|
2453
|
+
profileId?: string | undefined;
|
|
2454
|
+
matchId?: string | undefined;
|
|
2453
2455
|
createdAt: Date;
|
|
2454
2456
|
updatedAt: Date;
|
|
2455
2457
|
_id: string;
|
|
2456
|
-
matchId?: string | undefined;
|
|
2457
|
-
profileId?: string | undefined;
|
|
2458
2458
|
fromCompanyId: string;
|
|
2459
2459
|
toCompanyId: string;
|
|
2460
2460
|
terms: {
|
|
@@ -2486,11 +2486,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2486
2486
|
status: CollaborationStatus;
|
|
2487
2487
|
type: CollaborationType;
|
|
2488
2488
|
requirementId?: string | undefined;
|
|
2489
|
+
profileId?: string | undefined;
|
|
2490
|
+
matchId?: string | undefined;
|
|
2489
2491
|
createdAt: Date;
|
|
2490
2492
|
updatedAt: Date;
|
|
2491
2493
|
_id: string;
|
|
2492
|
-
matchId?: string | undefined;
|
|
2493
|
-
profileId?: string | undefined;
|
|
2494
2494
|
fromCompanyId: string;
|
|
2495
2495
|
toCompanyId: string;
|
|
2496
2496
|
terms: {
|
|
@@ -2521,11 +2521,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2521
2521
|
status: CollaborationStatus;
|
|
2522
2522
|
type: CollaborationType;
|
|
2523
2523
|
requirementId?: string | undefined;
|
|
2524
|
+
profileId?: string | undefined;
|
|
2525
|
+
matchId?: string | undefined;
|
|
2524
2526
|
createdAt: Date;
|
|
2525
2527
|
updatedAt: Date;
|
|
2526
2528
|
_id: string;
|
|
2527
|
-
matchId?: string | undefined;
|
|
2528
|
-
profileId?: string | undefined;
|
|
2529
2529
|
fromCompanyId: string;
|
|
2530
2530
|
toCompanyId: string;
|
|
2531
2531
|
terms: {
|
|
@@ -2547,11 +2547,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2547
2547
|
status: CollaborationStatus;
|
|
2548
2548
|
type: CollaborationType;
|
|
2549
2549
|
requirementId?: string | undefined;
|
|
2550
|
+
profileId?: string | undefined;
|
|
2551
|
+
matchId?: string | undefined;
|
|
2550
2552
|
createdAt: Date;
|
|
2551
2553
|
updatedAt: Date;
|
|
2552
2554
|
_id: string;
|
|
2553
|
-
matchId?: string | undefined;
|
|
2554
|
-
profileId?: string | undefined;
|
|
2555
2555
|
fromCompanyId: string;
|
|
2556
2556
|
toCompanyId: string;
|
|
2557
2557
|
terms: {
|
|
@@ -2639,11 +2639,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2639
2639
|
status: CollaborationStatus;
|
|
2640
2640
|
type: CollaborationType;
|
|
2641
2641
|
requirementId?: string | undefined;
|
|
2642
|
+
profileId?: string | undefined;
|
|
2643
|
+
matchId?: string | undefined;
|
|
2642
2644
|
createdAt: Date;
|
|
2643
2645
|
updatedAt: Date;
|
|
2644
2646
|
_id: string;
|
|
2645
|
-
matchId?: string | undefined;
|
|
2646
|
-
profileId?: string | undefined;
|
|
2647
2647
|
fromCompanyId: string;
|
|
2648
2648
|
toCompanyId: string;
|
|
2649
2649
|
terms: {
|
|
@@ -2666,10 +2666,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2666
2666
|
status: CollaborationStatus;
|
|
2667
2667
|
type: CollaborationType;
|
|
2668
2668
|
requirementId?: string | undefined;
|
|
2669
|
+
profileId?: string | undefined;
|
|
2670
|
+
matchId?: string | undefined;
|
|
2669
2671
|
createdAt: Date;
|
|
2670
2672
|
updatedAt: Date;
|
|
2671
|
-
matchId?: string | undefined;
|
|
2672
|
-
profileId?: string | undefined;
|
|
2673
2673
|
fromCompanyId: string;
|
|
2674
2674
|
toCompanyId: string;
|
|
2675
2675
|
terms: {
|
|
@@ -2713,11 +2713,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2713
2713
|
status: CollaborationStatus;
|
|
2714
2714
|
type: CollaborationType;
|
|
2715
2715
|
requirementId?: string | undefined;
|
|
2716
|
+
profileId?: string | undefined;
|
|
2717
|
+
matchId?: string | undefined;
|
|
2716
2718
|
createdAt: Date;
|
|
2717
2719
|
updatedAt: Date;
|
|
2718
2720
|
_id: string;
|
|
2719
|
-
matchId?: string | undefined;
|
|
2720
|
-
profileId?: string | undefined;
|
|
2721
2721
|
fromCompanyId: string;
|
|
2722
2722
|
toCompanyId: string;
|
|
2723
2723
|
terms: {
|
|
@@ -2740,10 +2740,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2740
2740
|
status: CollaborationStatus;
|
|
2741
2741
|
type: CollaborationType;
|
|
2742
2742
|
requirementId?: string | undefined;
|
|
2743
|
+
profileId?: string | undefined;
|
|
2744
|
+
matchId?: string | undefined;
|
|
2743
2745
|
createdAt: Date;
|
|
2744
2746
|
updatedAt: Date;
|
|
2745
|
-
matchId?: string | undefined;
|
|
2746
|
-
profileId?: string | undefined;
|
|
2747
2747
|
fromCompanyId: string;
|
|
2748
2748
|
toCompanyId: string;
|
|
2749
2749
|
terms: {
|
|
@@ -2787,11 +2787,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2787
2787
|
status: CollaborationStatus;
|
|
2788
2788
|
type: CollaborationType;
|
|
2789
2789
|
requirementId?: string | undefined;
|
|
2790
|
+
profileId?: string | undefined;
|
|
2791
|
+
matchId?: string | undefined;
|
|
2790
2792
|
createdAt: Date;
|
|
2791
2793
|
updatedAt: Date;
|
|
2792
2794
|
_id: string;
|
|
2793
|
-
matchId?: string | undefined;
|
|
2794
|
-
profileId?: string | undefined;
|
|
2795
2795
|
fromCompanyId: string;
|
|
2796
2796
|
toCompanyId: string;
|
|
2797
2797
|
terms: {
|
|
@@ -2814,10 +2814,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2814
2814
|
status: CollaborationStatus;
|
|
2815
2815
|
type: CollaborationType;
|
|
2816
2816
|
requirementId?: string | undefined;
|
|
2817
|
+
profileId?: string | undefined;
|
|
2818
|
+
matchId?: string | undefined;
|
|
2817
2819
|
createdAt: Date;
|
|
2818
2820
|
updatedAt: Date;
|
|
2819
|
-
matchId?: string | undefined;
|
|
2820
|
-
profileId?: string | undefined;
|
|
2821
2821
|
fromCompanyId: string;
|
|
2822
2822
|
toCompanyId: string;
|
|
2823
2823
|
terms: {
|
|
@@ -2861,11 +2861,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2861
2861
|
status: CollaborationStatus;
|
|
2862
2862
|
type: CollaborationType;
|
|
2863
2863
|
requirementId?: string | undefined;
|
|
2864
|
+
profileId?: string | undefined;
|
|
2865
|
+
matchId?: string | undefined;
|
|
2864
2866
|
createdAt: Date;
|
|
2865
2867
|
updatedAt: Date;
|
|
2866
2868
|
_id: string;
|
|
2867
|
-
matchId?: string | undefined;
|
|
2868
|
-
profileId?: string | undefined;
|
|
2869
2869
|
fromCompanyId: string;
|
|
2870
2870
|
toCompanyId: string;
|
|
2871
2871
|
terms: {
|
|
@@ -2888,10 +2888,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2888
2888
|
status: CollaborationStatus;
|
|
2889
2889
|
type: CollaborationType;
|
|
2890
2890
|
requirementId?: string | undefined;
|
|
2891
|
+
profileId?: string | undefined;
|
|
2892
|
+
matchId?: string | undefined;
|
|
2891
2893
|
createdAt: Date;
|
|
2892
2894
|
updatedAt: Date;
|
|
2893
|
-
matchId?: string | undefined;
|
|
2894
|
-
profileId?: string | undefined;
|
|
2895
2895
|
fromCompanyId: string;
|
|
2896
2896
|
toCompanyId: string;
|
|
2897
2897
|
terms: {
|
|
@@ -2934,10 +2934,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2934
2934
|
status: CollaborationStatus;
|
|
2935
2935
|
type: CollaborationType;
|
|
2936
2936
|
requirementId?: string | undefined;
|
|
2937
|
+
profileId?: string | undefined;
|
|
2938
|
+
matchId?: string | undefined;
|
|
2937
2939
|
createdAt: Date;
|
|
2938
2940
|
updatedAt: Date;
|
|
2939
|
-
matchId?: string | undefined;
|
|
2940
|
-
profileId?: string | undefined;
|
|
2941
2941
|
fromCompanyId: string;
|
|
2942
2942
|
toCompanyId: string;
|
|
2943
2943
|
terms: {
|
|
@@ -2960,10 +2960,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2960
2960
|
status: CollaborationStatus;
|
|
2961
2961
|
type: CollaborationType;
|
|
2962
2962
|
requirementId?: string | undefined;
|
|
2963
|
+
profileId?: string | undefined;
|
|
2964
|
+
matchId?: string | undefined;
|
|
2963
2965
|
createdAt: Date;
|
|
2964
2966
|
updatedAt: Date;
|
|
2965
|
-
matchId?: string | undefined;
|
|
2966
|
-
profileId?: string | undefined;
|
|
2967
2967
|
fromCompanyId: string;
|
|
2968
2968
|
toCompanyId: string;
|
|
2969
2969
|
terms: {
|
|
@@ -2986,10 +2986,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
2986
2986
|
status: CollaborationStatus;
|
|
2987
2987
|
type: CollaborationType;
|
|
2988
2988
|
requirementId?: string | undefined;
|
|
2989
|
+
profileId?: string | undefined;
|
|
2990
|
+
matchId?: string | undefined;
|
|
2989
2991
|
createdAt: Date;
|
|
2990
2992
|
updatedAt: Date;
|
|
2991
|
-
matchId?: string | undefined;
|
|
2992
|
-
profileId?: string | undefined;
|
|
2993
2993
|
fromCompanyId: string;
|
|
2994
2994
|
toCompanyId: string;
|
|
2995
2995
|
terms: {
|
|
@@ -3011,10 +3011,10 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3011
3011
|
status: CollaborationStatus;
|
|
3012
3012
|
type: CollaborationType;
|
|
3013
3013
|
requirementId?: string | undefined;
|
|
3014
|
+
profileId?: string | undefined;
|
|
3015
|
+
matchId?: string | undefined;
|
|
3014
3016
|
createdAt: Date;
|
|
3015
3017
|
updatedAt: Date;
|
|
3016
|
-
matchId?: string | undefined;
|
|
3017
|
-
profileId?: string | undefined;
|
|
3018
3018
|
fromCompanyId: string;
|
|
3019
3019
|
toCompanyId: string;
|
|
3020
3020
|
terms: {
|
|
@@ -3054,11 +3054,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3054
3054
|
status: CollaborationStatus;
|
|
3055
3055
|
type: CollaborationType;
|
|
3056
3056
|
requirementId?: string | undefined;
|
|
3057
|
+
profileId?: string | undefined;
|
|
3058
|
+
matchId?: string | undefined;
|
|
3057
3059
|
createdAt: Date;
|
|
3058
3060
|
updatedAt: Date;
|
|
3059
3061
|
_id: string;
|
|
3060
|
-
matchId?: string | undefined;
|
|
3061
|
-
profileId?: string | undefined;
|
|
3062
3062
|
fromCompanyId: string;
|
|
3063
3063
|
toCompanyId: string;
|
|
3064
3064
|
terms: {
|
|
@@ -3082,11 +3082,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3082
3082
|
status: CollaborationStatus;
|
|
3083
3083
|
type: CollaborationType;
|
|
3084
3084
|
requirementId?: string | undefined;
|
|
3085
|
+
profileId?: string | undefined;
|
|
3086
|
+
matchId?: string | undefined;
|
|
3085
3087
|
createdAt: Date;
|
|
3086
3088
|
updatedAt: Date;
|
|
3087
3089
|
_id: string;
|
|
3088
|
-
matchId?: string | undefined;
|
|
3089
|
-
profileId?: string | undefined;
|
|
3090
3090
|
fromCompanyId: string;
|
|
3091
3091
|
toCompanyId: string;
|
|
3092
3092
|
terms: {
|
|
@@ -3118,11 +3118,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3118
3118
|
status: CollaborationStatus;
|
|
3119
3119
|
type: CollaborationType;
|
|
3120
3120
|
requirementId?: string | undefined;
|
|
3121
|
+
profileId?: string | undefined;
|
|
3122
|
+
matchId?: string | undefined;
|
|
3121
3123
|
createdAt: Date;
|
|
3122
3124
|
updatedAt: Date;
|
|
3123
3125
|
_id: string;
|
|
3124
|
-
matchId?: string | undefined;
|
|
3125
|
-
profileId?: string | undefined;
|
|
3126
3126
|
fromCompanyId: string;
|
|
3127
3127
|
toCompanyId: string;
|
|
3128
3128
|
terms: {
|
|
@@ -3153,11 +3153,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3153
3153
|
status: CollaborationStatus;
|
|
3154
3154
|
type: CollaborationType;
|
|
3155
3155
|
requirementId?: string | undefined;
|
|
3156
|
+
profileId?: string | undefined;
|
|
3157
|
+
matchId?: string | undefined;
|
|
3156
3158
|
createdAt: Date;
|
|
3157
3159
|
updatedAt: Date;
|
|
3158
3160
|
_id: string;
|
|
3159
|
-
matchId?: string | undefined;
|
|
3160
|
-
profileId?: string | undefined;
|
|
3161
3161
|
fromCompanyId: string;
|
|
3162
3162
|
toCompanyId: string;
|
|
3163
3163
|
terms: {
|
|
@@ -3179,11 +3179,11 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3179
3179
|
status: CollaborationStatus;
|
|
3180
3180
|
type: CollaborationType;
|
|
3181
3181
|
requirementId?: string | undefined;
|
|
3182
|
+
profileId?: string | undefined;
|
|
3183
|
+
matchId?: string | undefined;
|
|
3182
3184
|
createdAt: Date;
|
|
3183
3185
|
updatedAt: Date;
|
|
3184
3186
|
_id: string;
|
|
3185
|
-
matchId?: string | undefined;
|
|
3186
|
-
profileId?: string | undefined;
|
|
3187
3187
|
fromCompanyId: string;
|
|
3188
3188
|
toCompanyId: string;
|
|
3189
3189
|
terms: {
|
|
@@ -3260,7 +3260,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3260
3260
|
id: string;
|
|
3261
3261
|
}> | undefined;
|
|
3262
3262
|
unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
3263
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
3263
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(path: T): void;
|
|
3264
3264
|
(path: string): void;
|
|
3265
3265
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
3266
3266
|
_id: string;
|
|
@@ -3345,7 +3345,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3345
3345
|
id: string;
|
|
3346
3346
|
}> | undefined;
|
|
3347
3347
|
validate?: import("mongoose").SchemaDefinitionProperty<{
|
|
3348
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
3348
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
|
|
3349
3349
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
|
|
3350
3350
|
(options: {
|
|
3351
3351
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
@@ -3386,7 +3386,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3386
3386
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
3387
3387
|
[k: string]: any;
|
|
3388
3388
|
}): import("mongoose").Error.ValidationError | null;
|
|
3389
|
-
<T extends "title" | "description" | "status" | "type" | "requirementId" | "
|
|
3389
|
+
<T extends "title" | "description" | "status" | "type" | "requirementId" | "profileId" | "matchId" | "createdAt" | "updatedAt" | "_id" | "fromCompanyId" | "toCompanyId" | "terms" | "respondedAt" | "responseMessage" | "revenueGenerated">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
3390
3390
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
3391
3391
|
}, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
3392
3392
|
_id: string;
|
|
@@ -3574,7 +3574,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3574
3574
|
} & {
|
|
3575
3575
|
id: string;
|
|
3576
3576
|
}> | undefined;
|
|
3577
|
-
|
|
3577
|
+
profileId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
3578
3578
|
_id: string;
|
|
3579
3579
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICollaborationRequest, "id"> & {
|
|
3580
3580
|
_id: string;
|
|
@@ -3605,7 +3605,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3605
3605
|
} & {
|
|
3606
3606
|
id: string;
|
|
3607
3607
|
}> | undefined;
|
|
3608
|
-
|
|
3608
|
+
matchId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
3609
3609
|
_id: string;
|
|
3610
3610
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICollaborationRequest, "id"> & {
|
|
3611
3611
|
_id: string;
|
|
@@ -3636,7 +3636,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3636
3636
|
} & {
|
|
3637
3637
|
id: string;
|
|
3638
3638
|
}> | undefined;
|
|
3639
|
-
|
|
3639
|
+
createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
3640
3640
|
_id: string;
|
|
3641
3641
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICollaborationRequest, "id"> & {
|
|
3642
3642
|
_id: string;
|
|
@@ -3667,7 +3667,7 @@ export declare const CollaborationRequestSchema: Schema<import("mongoose").Docum
|
|
|
3667
3667
|
} & {
|
|
3668
3668
|
id: string;
|
|
3669
3669
|
}> | undefined;
|
|
3670
|
-
|
|
3670
|
+
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<ICollaborationRequest, "id"> & {
|
|
3671
3671
|
_id: string;
|
|
3672
3672
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICollaborationRequest, "id"> & {
|
|
3673
3673
|
_id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collaboration-request.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/collaboration-request.schema.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAC3D,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EACjB,qBAAqB,EACrB,mBAAmB,EACpB,MAAM,yBAAyB,CAAC;AAMjC,MAAM,MAAM,4BAA4B,GAAG,gBAAgB,CAAC,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,GAAG;IAAE,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAEjH,MAAM,WAAW,yBAA0B,SAAQ,KAAK,CAAC,4BAA4B,CAAC;IACpF,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IAC9E,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IAC5E,WAAW,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IACxE,UAAU,IAAI,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IACtD,UAAU,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;CAC9E;AA0DD,wBAAgB,gCAAgC,IAAI,MAAM,CAAC,4BAA4B,EAAE,yBAAyB,CAAC,CAqDlH;AAED,eAAO,MAAM,0BAA0B;SAzHgE,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;;;;;;;;;;yBA0H6uG,CAAC;;;yBAAqG,CAAC;;;aA1H11G,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;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;;;;;;;;;uBA0HkoI,CAAC;;aA1HzoI,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;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;;;;;;;;;;;;uBA0HirjB,CAAC;;;aA1HxrjB,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;uBA0Hi2jB,CAAC;;;;;;aA1Hx2jB,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;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;;;;;;;EAyHjC,CAAC"}
|
|
1
|
+
{"version":3,"file":"collaboration-request.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/collaboration-request.schema.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAC3D,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EACjB,qBAAqB,EACrB,mBAAmB,EACpB,MAAM,yBAAyB,CAAC;AAMjC,MAAM,MAAM,4BAA4B,GAAG,gBAAgB,CAAC,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,GAAG;IAAE,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAEjH,MAAM,WAAW,yBAA0B,SAAQ,KAAK,CAAC,4BAA4B,CAAC;IACpF,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IAC9E,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IAC5E,WAAW,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IACxE,UAAU,IAAI,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IACtD,UAAU,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;CAC9E;AA0DD,wBAAgB,gCAAgC,IAAI,MAAM,CAAC,4BAA4B,EAAE,yBAAyB,CAAC,CAqDlH;AAED,eAAO,MAAM,0BAA0B;SAzHgE,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;;;;;;;;;;yBA0H6uG,CAAC;;;yBAAqG,CAAC;;;aA1H11G,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;;;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;;;;;;;;;uBA0HkoI,CAAC;;aA1HzoI,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;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;;;;;;;;;;;;uBA0HirjB,CAAC;;;aA1HxrjB,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;;uBA0Hi2jB,CAAC;;;;;;aA1Hx2jB,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;aAAN,MAAM;;aAAN,MAAM;;;;;;;;;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;;;;;;;EAyHjC,CAAC"}
|