@rlvt/entity-manager-openapi-client 1.0.77 → 1.0.79
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/build/api.d.ts +21 -19
- package/build/definitions.d.ts +109 -34
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ export default class {
|
|
|
68
68
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
69
69
|
status: "success";
|
|
70
70
|
} & {
|
|
71
|
-
data:
|
|
71
|
+
data: string;
|
|
72
72
|
program: string;
|
|
73
73
|
version: string;
|
|
74
74
|
datetime: string;
|
|
@@ -206,7 +206,6 @@ export default class {
|
|
|
206
206
|
};
|
|
207
207
|
securityPolicy: {
|
|
208
208
|
password: {
|
|
209
|
-
duration: number;
|
|
210
209
|
rules: {
|
|
211
210
|
options: {
|
|
212
211
|
maximum?: number | undefined;
|
|
@@ -214,6 +213,7 @@ export default class {
|
|
|
214
213
|
};
|
|
215
214
|
type: "special-characters" | "numbers" | "characters" | "uppercases" | "lowercases";
|
|
216
215
|
}[];
|
|
216
|
+
duration: number;
|
|
217
217
|
attempts: {
|
|
218
218
|
maximum: number;
|
|
219
219
|
lockDuration: number;
|
|
@@ -479,7 +479,6 @@ export default class {
|
|
|
479
479
|
};
|
|
480
480
|
securityPolicy: {
|
|
481
481
|
password: {
|
|
482
|
-
duration: number;
|
|
483
482
|
rules: {
|
|
484
483
|
options: {
|
|
485
484
|
maximum?: number | undefined;
|
|
@@ -487,6 +486,7 @@ export default class {
|
|
|
487
486
|
};
|
|
488
487
|
type: "special-characters" | "numbers" | "characters" | "uppercases" | "lowercases";
|
|
489
488
|
}[];
|
|
489
|
+
duration: number;
|
|
490
490
|
attempts: {
|
|
491
491
|
maximum: number;
|
|
492
492
|
lockDuration: number;
|
|
@@ -768,7 +768,6 @@ export default class {
|
|
|
768
768
|
};
|
|
769
769
|
securityPolicy: {
|
|
770
770
|
password: {
|
|
771
|
-
duration: number;
|
|
772
771
|
rules: {
|
|
773
772
|
options: {
|
|
774
773
|
maximum?: number | undefined;
|
|
@@ -776,6 +775,7 @@ export default class {
|
|
|
776
775
|
};
|
|
777
776
|
type: "special-characters" | "numbers" | "characters" | "uppercases" | "lowercases";
|
|
778
777
|
}[];
|
|
778
|
+
duration: number;
|
|
779
779
|
attempts: {
|
|
780
780
|
maximum: number;
|
|
781
781
|
lockDuration: number;
|
|
@@ -1015,7 +1015,9 @@ export default class {
|
|
|
1015
1015
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1016
1016
|
status: "success";
|
|
1017
1017
|
} & {
|
|
1018
|
-
data:
|
|
1018
|
+
data: {
|
|
1019
|
+
companyId: string;
|
|
1020
|
+
};
|
|
1019
1021
|
program: string;
|
|
1020
1022
|
version: string;
|
|
1021
1023
|
datetime: string;
|
|
@@ -1049,10 +1051,10 @@ export default class {
|
|
|
1049
1051
|
readonly resourceGroupIds: string[];
|
|
1050
1052
|
createdAt: string;
|
|
1051
1053
|
state: InvitationState;
|
|
1054
|
+
usedAt?: string | undefined;
|
|
1052
1055
|
readonly email: string & {
|
|
1053
1056
|
readonly?: "__readonly" | undefined;
|
|
1054
1057
|
};
|
|
1055
|
-
usedAt?: string | undefined;
|
|
1056
1058
|
}[];
|
|
1057
1059
|
program: string;
|
|
1058
1060
|
version: string;
|
|
@@ -1081,11 +1083,11 @@ export default class {
|
|
|
1081
1083
|
readonly resourceGroupIds: string[];
|
|
1082
1084
|
createdAt: string;
|
|
1083
1085
|
state: InvitationState;
|
|
1086
|
+
usedAt?: string | undefined;
|
|
1084
1087
|
readonly email: string & {
|
|
1085
1088
|
readonly?: "__readonly" | undefined;
|
|
1086
1089
|
};
|
|
1087
|
-
|
|
1088
|
-
}[];
|
|
1090
|
+
};
|
|
1089
1091
|
program: string;
|
|
1090
1092
|
version: string;
|
|
1091
1093
|
datetime: string;
|
|
@@ -1111,11 +1113,11 @@ export default class {
|
|
|
1111
1113
|
readonly resourceGroupIds: string[];
|
|
1112
1114
|
createdAt: string;
|
|
1113
1115
|
state: InvitationState;
|
|
1116
|
+
usedAt?: string | undefined;
|
|
1114
1117
|
readonly email: string & {
|
|
1115
1118
|
readonly?: "__readonly" | undefined;
|
|
1116
1119
|
};
|
|
1117
|
-
|
|
1118
|
-
}[];
|
|
1120
|
+
};
|
|
1119
1121
|
program: string;
|
|
1120
1122
|
version: string;
|
|
1121
1123
|
datetime: string;
|
|
@@ -1299,7 +1301,7 @@ export default class {
|
|
|
1299
1301
|
value: "id" | "companyId" | "roleId" | "resourceGroupIds" | "companyId?" | "resourceGroupIds?";
|
|
1300
1302
|
})[] | undefined;
|
|
1301
1303
|
}[];
|
|
1302
|
-
}
|
|
1304
|
+
};
|
|
1303
1305
|
program: string;
|
|
1304
1306
|
version: string;
|
|
1305
1307
|
datetime: string;
|
|
@@ -1350,7 +1352,7 @@ export default class {
|
|
|
1350
1352
|
value: "id" | "companyId" | "roleId" | "resourceGroupIds" | "companyId?" | "resourceGroupIds?";
|
|
1351
1353
|
})[] | undefined;
|
|
1352
1354
|
}[];
|
|
1353
|
-
}
|
|
1355
|
+
};
|
|
1354
1356
|
program: string;
|
|
1355
1357
|
version: string;
|
|
1356
1358
|
datetime: string;
|
|
@@ -1496,7 +1498,6 @@ export default class {
|
|
|
1496
1498
|
};
|
|
1497
1499
|
securityPolicy: {
|
|
1498
1500
|
password: {
|
|
1499
|
-
duration: number;
|
|
1500
1501
|
rules: {
|
|
1501
1502
|
options: {
|
|
1502
1503
|
maximum?: number | undefined;
|
|
@@ -1504,6 +1505,7 @@ export default class {
|
|
|
1504
1505
|
};
|
|
1505
1506
|
type: "special-characters" | "numbers" | "characters" | "uppercases" | "lowercases";
|
|
1506
1507
|
}[];
|
|
1508
|
+
duration: number;
|
|
1507
1509
|
attempts: {
|
|
1508
1510
|
maximum: number;
|
|
1509
1511
|
lockDuration: number;
|
|
@@ -1781,7 +1783,7 @@ export default class {
|
|
|
1781
1783
|
readonly accountType?: (("service-account" | "user") & {
|
|
1782
1784
|
readonly?: "__readonly" | undefined;
|
|
1783
1785
|
}) | undefined;
|
|
1784
|
-
}
|
|
1786
|
+
};
|
|
1785
1787
|
program: string;
|
|
1786
1788
|
version: string;
|
|
1787
1789
|
datetime: string;
|
|
@@ -1847,7 +1849,7 @@ export default class {
|
|
|
1847
1849
|
readonly accountType?: (("service-account" | "user") & {
|
|
1848
1850
|
readonly?: "__readonly" | undefined;
|
|
1849
1851
|
}) | undefined;
|
|
1850
|
-
}
|
|
1852
|
+
};
|
|
1851
1853
|
program: string;
|
|
1852
1854
|
version: string;
|
|
1853
1855
|
datetime: string;
|
|
@@ -1891,7 +1893,7 @@ export default class {
|
|
|
1891
1893
|
readonly accountType?: (("service-account" | "user") & {
|
|
1892
1894
|
readonly?: "__readonly" | undefined;
|
|
1893
1895
|
}) | undefined;
|
|
1894
|
-
}
|
|
1896
|
+
};
|
|
1895
1897
|
program: string;
|
|
1896
1898
|
version: string;
|
|
1897
1899
|
datetime: string;
|
|
@@ -1937,7 +1939,7 @@ export default class {
|
|
|
1937
1939
|
readonly accountType?: (("service-account" | "user") & {
|
|
1938
1940
|
readonly?: "__readonly" | undefined;
|
|
1939
1941
|
}) | undefined;
|
|
1940
|
-
}
|
|
1942
|
+
};
|
|
1941
1943
|
program: string;
|
|
1942
1944
|
version: string;
|
|
1943
1945
|
datetime: string;
|
|
@@ -1983,7 +1985,7 @@ export default class {
|
|
|
1983
1985
|
readonly accountType?: (("service-account" | "user") & {
|
|
1984
1986
|
readonly?: "__readonly" | undefined;
|
|
1985
1987
|
}) | undefined;
|
|
1986
|
-
}
|
|
1988
|
+
};
|
|
1987
1989
|
program: string;
|
|
1988
1990
|
version: string;
|
|
1989
1991
|
datetime: string;
|
|
@@ -2034,7 +2036,7 @@ export default class {
|
|
|
2034
2036
|
readonly accountType?: (("service-account" | "user") & {
|
|
2035
2037
|
readonly?: "__readonly" | undefined;
|
|
2036
2038
|
}) | undefined;
|
|
2037
|
-
}
|
|
2039
|
+
};
|
|
2038
2040
|
program: string;
|
|
2039
2041
|
version: string;
|
|
2040
2042
|
datetime: string;
|
package/build/definitions.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ declare type PropsWithoutWriteonly<T> = {
|
|
|
17
17
|
export declare type WithoutWriteonly<T> = T extends any ? T extends Primitive ? T : T extends Array<infer U> ? WithoutWriteonly<U>[] : keyof T extends never ? unknown : {
|
|
18
18
|
[key in keyof Pick<T, PropsWithoutWriteonly<T>>]: Pick<T, PropsWithoutWriteonly<T>>[key] extends any ? WithoutWriteonly<Pick<T, PropsWithoutWriteonly<T>>[key]> : never;
|
|
19
19
|
} : never;
|
|
20
|
-
export declare type
|
|
20
|
+
export declare type InternalResponse_ = {
|
|
21
21
|
program: string;
|
|
22
22
|
version: string;
|
|
23
23
|
datetime: string;
|
|
@@ -26,17 +26,25 @@ export declare type InternalResponse = {
|
|
|
26
26
|
message: string;
|
|
27
27
|
data: {};
|
|
28
28
|
};
|
|
29
|
-
export declare type
|
|
30
|
-
|
|
29
|
+
export declare type InternalResponse_string = {
|
|
30
|
+
program: string;
|
|
31
|
+
version: string;
|
|
32
|
+
datetime: string;
|
|
33
|
+
status: string;
|
|
34
|
+
code?: number;
|
|
35
|
+
message: string;
|
|
36
|
+
data: string;
|
|
31
37
|
};
|
|
32
|
-
export declare type
|
|
38
|
+
export declare type InternalResponse_revoked_boolean = {
|
|
33
39
|
program: string;
|
|
34
40
|
version: string;
|
|
35
41
|
datetime: string;
|
|
36
42
|
status: string;
|
|
37
43
|
code?: number;
|
|
38
44
|
message: string;
|
|
39
|
-
data:
|
|
45
|
+
data: {
|
|
46
|
+
revoked: boolean;
|
|
47
|
+
};
|
|
40
48
|
};
|
|
41
49
|
export declare type UserProfile = {
|
|
42
50
|
firstname?: string;
|
|
@@ -58,33 +66,40 @@ export declare type SerializedUser = {
|
|
|
58
66
|
readonly accountType?: ("service-account" | "user") & readonlyP;
|
|
59
67
|
};
|
|
60
68
|
export declare type User = SerializedUser;
|
|
61
|
-
export declare type
|
|
62
|
-
isValid: boolean;
|
|
63
|
-
revokedAt: string | null;
|
|
64
|
-
expiresAt: string | null;
|
|
65
|
-
user: User;
|
|
66
|
-
};
|
|
67
|
-
export declare type __type_DescribeTokenResponse = {
|
|
69
|
+
export declare type InternalResponse_isValid_boolean_revokedAt_Date_null_expiresAt_Date_null_user_User = {
|
|
68
70
|
program: string;
|
|
69
71
|
version: string;
|
|
70
72
|
datetime: string;
|
|
71
73
|
status: string;
|
|
72
74
|
code?: number;
|
|
73
75
|
message: string;
|
|
74
|
-
data:
|
|
76
|
+
data: {
|
|
77
|
+
isValid: boolean;
|
|
78
|
+
revokedAt: string | null;
|
|
79
|
+
expiresAt: string | null;
|
|
80
|
+
user: User;
|
|
81
|
+
};
|
|
75
82
|
};
|
|
76
|
-
export declare type
|
|
77
|
-
|
|
78
|
-
|
|
83
|
+
export declare type InternalResponse_void = {
|
|
84
|
+
program: string;
|
|
85
|
+
version: string;
|
|
86
|
+
datetime: string;
|
|
87
|
+
status: string;
|
|
88
|
+
code?: number;
|
|
89
|
+
message: string;
|
|
90
|
+
data: {};
|
|
79
91
|
};
|
|
80
|
-
export declare type
|
|
92
|
+
export declare type InternalResponse_roleId_string_resourceGroupIds_Array_string = {
|
|
81
93
|
program: string;
|
|
82
94
|
version: string;
|
|
83
95
|
datetime: string;
|
|
84
96
|
status: string;
|
|
85
97
|
code?: number;
|
|
86
98
|
message: string;
|
|
87
|
-
data:
|
|
99
|
+
data: {
|
|
100
|
+
roleId: string;
|
|
101
|
+
resourceGroupIds: string[];
|
|
102
|
+
};
|
|
88
103
|
};
|
|
89
104
|
export declare type Quota = {
|
|
90
105
|
type: "datasource" | "individual" | "display";
|
|
@@ -270,7 +285,7 @@ export declare type SerializedCompany = {
|
|
|
270
285
|
};
|
|
271
286
|
};
|
|
272
287
|
export declare type Company = SerializedCompany;
|
|
273
|
-
export declare type
|
|
288
|
+
export declare type InternalResponse_Company = {
|
|
274
289
|
program: string;
|
|
275
290
|
version: string;
|
|
276
291
|
datetime: string;
|
|
@@ -279,6 +294,17 @@ export declare type __type_Company = {
|
|
|
279
294
|
message: string;
|
|
280
295
|
data: Company;
|
|
281
296
|
};
|
|
297
|
+
export declare type InternalResponse_companyId_string = {
|
|
298
|
+
program: string;
|
|
299
|
+
version: string;
|
|
300
|
+
datetime: string;
|
|
301
|
+
status: string;
|
|
302
|
+
code?: number;
|
|
303
|
+
message: string;
|
|
304
|
+
data: {
|
|
305
|
+
companyId: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
282
308
|
export declare type RoleRule_Without_ = {
|
|
283
309
|
fields?: string[];
|
|
284
310
|
conditions?: {
|
|
@@ -300,8 +326,19 @@ export declare type SerializedRole = {
|
|
|
300
326
|
name: string;
|
|
301
327
|
rules: RoleRule[];
|
|
302
328
|
};
|
|
329
|
+
export declare type InternalResponse_roles_Array_OmitAlias = {
|
|
330
|
+
program: string;
|
|
331
|
+
version: string;
|
|
332
|
+
datetime: string;
|
|
333
|
+
status: string;
|
|
334
|
+
code?: number;
|
|
335
|
+
message: string;
|
|
336
|
+
data: {
|
|
337
|
+
roles: SerializedRole[];
|
|
338
|
+
};
|
|
339
|
+
};
|
|
303
340
|
export declare type Role = SerializedRole;
|
|
304
|
-
export declare type
|
|
341
|
+
export declare type InternalResponse_Array_Role = {
|
|
305
342
|
program: string;
|
|
306
343
|
version: string;
|
|
307
344
|
datetime: string;
|
|
@@ -310,6 +347,19 @@ export declare type __type_Role = {
|
|
|
310
347
|
message: string;
|
|
311
348
|
data: Role[];
|
|
312
349
|
};
|
|
350
|
+
export declare type ObjectId = string;
|
|
351
|
+
export declare type InternalResponse_companyId_ObjectId_resourceGroupIds_Array_ObjectId = {
|
|
352
|
+
program: string;
|
|
353
|
+
version: string;
|
|
354
|
+
datetime: string;
|
|
355
|
+
status: string;
|
|
356
|
+
code?: number;
|
|
357
|
+
message: string;
|
|
358
|
+
data: {
|
|
359
|
+
companyId: ObjectId;
|
|
360
|
+
resourceGroupIds: ObjectId[];
|
|
361
|
+
};
|
|
362
|
+
};
|
|
313
363
|
export declare enum InvitationState {
|
|
314
364
|
WAITING = "waiting",
|
|
315
365
|
USED = "used",
|
|
@@ -326,7 +376,7 @@ export declare type SerializedInvitation = {
|
|
|
326
376
|
state: InvitationState;
|
|
327
377
|
};
|
|
328
378
|
export declare type Invitation = SerializedInvitation;
|
|
329
|
-
export declare type
|
|
379
|
+
export declare type InternalResponse_Array_Invitation = {
|
|
330
380
|
program: string;
|
|
331
381
|
version: string;
|
|
332
382
|
datetime: string;
|
|
@@ -335,17 +385,25 @@ export declare type __type_Invitation = {
|
|
|
335
385
|
message: string;
|
|
336
386
|
data: Invitation[];
|
|
337
387
|
};
|
|
338
|
-
export declare type
|
|
339
|
-
|
|
388
|
+
export declare type InternalResponse_Invitation = {
|
|
389
|
+
program: string;
|
|
390
|
+
version: string;
|
|
391
|
+
datetime: string;
|
|
392
|
+
status: string;
|
|
393
|
+
code?: number;
|
|
394
|
+
message: string;
|
|
395
|
+
data: Invitation;
|
|
340
396
|
};
|
|
341
|
-
export declare type
|
|
397
|
+
export declare type InternalResponse_id_string = {
|
|
342
398
|
program: string;
|
|
343
399
|
version: string;
|
|
344
400
|
datetime: string;
|
|
345
401
|
status: string;
|
|
346
402
|
code?: number;
|
|
347
403
|
message: string;
|
|
348
|
-
data:
|
|
404
|
+
data: {
|
|
405
|
+
id: string;
|
|
406
|
+
};
|
|
349
407
|
};
|
|
350
408
|
export declare type SerializedResourceGroup = {
|
|
351
409
|
readonly id: (string) & readonlyP;
|
|
@@ -354,7 +412,7 @@ export declare type SerializedResourceGroup = {
|
|
|
354
412
|
color?: string;
|
|
355
413
|
};
|
|
356
414
|
export declare type ResourceGroup = SerializedResourceGroup;
|
|
357
|
-
export declare type
|
|
415
|
+
export declare type InternalResponse_Array_import_home_node_src_models_resource_groups_ResourceGroup_usersCount_number_ = {
|
|
358
416
|
program: string;
|
|
359
417
|
version: string;
|
|
360
418
|
datetime: string;
|
|
@@ -365,7 +423,7 @@ export declare type __type_import_home_node_src_models_resource_groups_ResourceG
|
|
|
365
423
|
usersCount: number;
|
|
366
424
|
})[];
|
|
367
425
|
};
|
|
368
|
-
export declare type
|
|
426
|
+
export declare type InternalResponse_ResourceGroup = {
|
|
369
427
|
program: string;
|
|
370
428
|
version: string;
|
|
371
429
|
datetime: string;
|
|
@@ -374,7 +432,7 @@ export declare type __type_ResourceGroup = {
|
|
|
374
432
|
message: string;
|
|
375
433
|
data: ResourceGroup;
|
|
376
434
|
};
|
|
377
|
-
export declare type
|
|
435
|
+
export declare type InternalResponse_Array_import_home_node_src_models_roles_Role_usersCount_number_ = {
|
|
378
436
|
program: string;
|
|
379
437
|
version: string;
|
|
380
438
|
datetime: string;
|
|
@@ -385,7 +443,16 @@ export declare type __type_import_home_node_src_models_roles_Role_usersCount_num
|
|
|
385
443
|
usersCount: number;
|
|
386
444
|
})[];
|
|
387
445
|
};
|
|
388
|
-
export declare type
|
|
446
|
+
export declare type InternalResponse_Role = {
|
|
447
|
+
program: string;
|
|
448
|
+
version: string;
|
|
449
|
+
datetime: string;
|
|
450
|
+
status: string;
|
|
451
|
+
code?: number;
|
|
452
|
+
message: string;
|
|
453
|
+
data: Role;
|
|
454
|
+
};
|
|
455
|
+
export declare type InternalResponse_Array_User = {
|
|
389
456
|
program: string;
|
|
390
457
|
version: string;
|
|
391
458
|
datetime: string;
|
|
@@ -394,18 +461,26 @@ export declare type __type_User = {
|
|
|
394
461
|
message: string;
|
|
395
462
|
data: User[];
|
|
396
463
|
};
|
|
397
|
-
export declare type
|
|
398
|
-
|
|
399
|
-
|
|
464
|
+
export declare type InternalResponse_User = {
|
|
465
|
+
program: string;
|
|
466
|
+
version: string;
|
|
467
|
+
datetime: string;
|
|
468
|
+
status: string;
|
|
469
|
+
code?: number;
|
|
470
|
+
message: string;
|
|
471
|
+
data: User;
|
|
400
472
|
};
|
|
401
|
-
export declare type
|
|
473
|
+
export declare type InternalResponse_user_User_company_Company = {
|
|
402
474
|
program: string;
|
|
403
475
|
version: string;
|
|
404
476
|
datetime: string;
|
|
405
477
|
status: string;
|
|
406
478
|
code?: number;
|
|
407
479
|
message: string;
|
|
408
|
-
data:
|
|
480
|
+
data: {
|
|
481
|
+
user: User;
|
|
482
|
+
company: Company;
|
|
483
|
+
};
|
|
409
484
|
};
|
|
410
485
|
export declare enum Variables {
|
|
411
486
|
"RLVT-U" = "rlvt-u",
|
package/build/definitions.js
CHANGED
|
@@ -18,4 +18,4 @@ var Variables;
|
|
|
18
18
|
Variables["UTM_MEDIUM"] = "utm_medium";
|
|
19
19
|
Variables["UTM_TERM"] = "utm_term";
|
|
20
20
|
})(Variables = exports.Variables || (exports.Variables = {}));
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBeVhwQixJQUFZLGVBSVg7QUFKRCxXQUFZLGVBQWU7SUFDdkIsc0NBQW1CLENBQUE7SUFDbkIsZ0NBQWEsQ0FBQTtJQUNiLHdDQUFxQixDQUFBO0FBQ3pCLENBQUMsRUFKVyxlQUFlLEdBQWYsdUJBQWUsS0FBZix1QkFBZSxRQUkxQjtBQXdIRCxJQUFZLFNBT1g7QUFQRCxXQUFZLFNBQVM7SUFDakIsOEJBQW1CLENBQUE7SUFDbkIsOEJBQW1CLENBQUE7SUFDbkIsMENBQTZCLENBQUE7SUFDN0Isc0NBQXlCLENBQUE7SUFDekIsc0NBQXlCLENBQUE7SUFDekIsa0NBQXFCLENBQUE7QUFDekIsQ0FBQyxFQVBXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBT3BCIn0=
|
package/package.json
CHANGED