@veloceapps/sdk 5.0.7 → 5.0.8
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/bundles/veloce-sdk-cms.umd.js +8 -1
- package/bundles/veloce-sdk-cms.umd.js.map +1 -1
- package/bundles/veloce-sdk.umd.js +23 -6
- package/bundles/veloce-sdk.umd.js.map +1 -1
- package/cms/cms.actions.d.ts +4 -0
- package/cms/vendor-map.d.ts +127 -116
- package/esm2015/cms/cms.actions.js +6 -1
- package/esm2015/src/components/header/header.component.js +5 -5
- package/esm2015/src/services/flow-router.service.js +13 -1
- package/esm2015/src/services/flow.service.js +7 -1
- package/fesm2015/veloce-sdk-cms.js +8 -2
- package/fesm2015/veloce-sdk-cms.js.map +1 -1
- package/fesm2015/veloce-sdk.js +20 -3
- package/fesm2015/veloce-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/services/flow-router.service.d.ts +1 -0
package/cms/cms.actions.d.ts
CHANGED
@@ -6,6 +6,7 @@ export declare enum FlowAction {
|
|
6
6
|
FLOW_APPLY_PRODUCT_CONFIGURATION = "FLOW_APPLY_PRODUCT_CONFIGURATION",
|
7
7
|
FLOW_OPEN_DOC_GEN = "FLOW_OPEN_DOC_GEN",
|
8
8
|
FLOW_CLOSE_DOC_GEN = "FLOW_CLOSE_DOC_GEN",
|
9
|
+
FLOW_SWITCH_OBJECT = "FLOW_SWITCH_OBJECT",
|
9
10
|
REMOTE_APPLY = "REMOTE_APPLY",
|
10
11
|
REMOTE_CANCEL = "REMOTE_CANCEL"
|
11
12
|
}
|
@@ -20,3 +21,6 @@ export declare const OpenDocGenAction: () => IntegrationAction;
|
|
20
21
|
export declare const CloseDocGenAction: () => IntegrationAction;
|
21
22
|
export declare const RemoteApplyAction: () => IntegrationAction;
|
22
23
|
export declare const RemoteCancelAction: () => IntegrationAction;
|
24
|
+
export declare const SwitchObjectAction: (payload: {
|
25
|
+
id: string;
|
26
|
+
}) => IntegrationAction;
|
package/cms/vendor-map.d.ts
CHANGED
@@ -55,6 +55,9 @@ export declare const vendorMap: {
|
|
55
55
|
CloseDocGenAction: () => import("@veloce/sdk/cms").IntegrationAction<any>;
|
56
56
|
RemoteApplyAction: () => import("@veloce/sdk/cms").IntegrationAction<any>;
|
57
57
|
RemoteCancelAction: () => import("@veloce/sdk/cms").IntegrationAction<any>;
|
58
|
+
SwitchObjectAction: (payload: {
|
59
|
+
id: string;
|
60
|
+
}) => import("@veloce/sdk/cms").IntegrationAction<any>;
|
58
61
|
DEFAULT_PLUGINS_TOKEN: angularCore.InjectionToken<typeof import("./engine/models/plugin").Plugin[]>;
|
59
62
|
UI_DEFINITION_METADATA: angularCore.InjectionToken<import("@veloce/sdk/core").UIDefinitionMetadata>;
|
60
63
|
ELEMENT_METADATA: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementMetadata>;
|
@@ -266,8 +269,8 @@ export declare const vendorMap: {
|
|
266
269
|
forEachRight<TString_1 extends string | null | undefined>(collection: TString_1, iteratee?: lodash.StringIterator<any> | undefined): TString_1;
|
267
270
|
forEachRight<T_95, TList_2 extends lodash.List<T_95> | null | undefined>(collection: TList_2 & (lodash.List<T_95> | null | undefined), iteratee?: lodash.ListIterator<T_95, any> | undefined): TList_2;
|
268
271
|
forEachRight<T_96 extends object>(collection: T_96 | null | undefined, iteratee?: lodash.ObjectIterator<T_96, any> | undefined): T_96 | null | undefined;
|
269
|
-
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<
|
270
|
-
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<
|
272
|
+
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<T_120[]>;
|
273
|
+
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<T_121[keyof T_121][]>;
|
271
274
|
includes<T_122>(collection: lodash.Dictionary<T_122> | lodash.NumericDictionary<T_122> | null | undefined, target: T_122, fromIndex?: number | undefined): boolean;
|
272
275
|
invokeMap(collection: object | null | undefined, methodName: string, ...args: any[]): any[];
|
273
276
|
invokeMap<TResult_13>(collection: object | null | undefined, method: (...args: any[]) => TResult_13, ...args: any[]): TResult_13[];
|
@@ -321,51 +324,52 @@ export declare const vendorMap: {
|
|
321
324
|
bindKey: lodash.FunctionBindKey;
|
322
325
|
curry: lodash.Curry;
|
323
326
|
curryRight: lodash.CurryRight;
|
324
|
-
debounce<T_163 extends (...args: any) => any>(func: T_163, wait
|
327
|
+
debounce<T_163 extends (...args: any) => any>(func: T_163, wait: number | undefined, options: lodash.DebounceSettingsLeading): lodash.DebouncedFuncLeading<T_163>;
|
328
|
+
debounce<T_164 extends (...args: any) => any>(func: T_164, wait?: number | undefined, options?: lodash.DebounceSettings | undefined): lodash.DebouncedFunc<T_164>;
|
325
329
|
defer(func: (...args: any[]) => any, ...args: any[]): number;
|
326
330
|
delay(func: (...args: any[]) => any, wait: number, ...args: any[]): number;
|
327
|
-
flip<
|
331
|
+
flip<T_165 extends (...args: any) => any>(func: T_165): T_165;
|
328
332
|
memoize: {
|
329
|
-
<
|
333
|
+
<T_166 extends (...args: any) => any>(func: T_166, resolver?: ((...args: Parameters<T_166>) => any) | undefined): T_166 & lodash.MemoizedFunction;
|
330
334
|
Cache: lodash.MapCacheConstructor;
|
331
335
|
};
|
332
|
-
negate<
|
333
|
-
once<
|
336
|
+
negate<T_167 extends any[]>(predicate: (...args: T_167) => boolean): (...args: T_167) => boolean;
|
337
|
+
once<T_168 extends (...args: any) => any>(func: T_168): T_168;
|
334
338
|
overArgs(func: (...args: any[]) => any, ...transforms: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
335
339
|
partial: lodash.Partial;
|
336
340
|
partialRight: lodash.PartialRight;
|
337
341
|
rearg(func: (...args: any[]) => any, ...indexes: lodash.Many<number>[]): (...args: any[]) => any;
|
338
342
|
rest(func: (...args: any[]) => any, start?: number | undefined): (...args: any[]) => any;
|
339
343
|
spread<TResult_23>(func: (...args: any[]) => TResult_23, start?: number | undefined): (...args: any[]) => TResult_23;
|
340
|
-
throttle<
|
341
|
-
unary<
|
342
|
-
wrap<
|
343
|
-
castArray<
|
344
|
-
clone<
|
345
|
-
cloneDeep<
|
346
|
-
cloneDeepWith<
|
347
|
-
cloneDeepWith<
|
348
|
-
cloneWith<
|
349
|
-
cloneWith<
|
350
|
-
cloneWith<
|
351
|
-
conformsTo<
|
344
|
+
throttle<T_169 extends (...args: any) => any>(func: T_169, wait?: number | undefined, options?: lodash.ThrottleSettings | undefined): lodash.DebouncedFunc<T_169>;
|
345
|
+
unary<T_170, TResult_24>(func: (arg1: T_170, ...args: any[]) => TResult_24): (arg1: T_170) => TResult_24;
|
346
|
+
wrap<T_171, TArgs, TResult_25>(value: T_171, wrapper: (value: T_171, ...args: TArgs[]) => TResult_25): (...args: TArgs[]) => TResult_25;
|
347
|
+
castArray<T_172>(value?: lodash.Many<T_172> | undefined): T_172[];
|
348
|
+
clone<T_173>(value: T_173): T_173;
|
349
|
+
cloneDeep<T_174>(value: T_174): T_174;
|
350
|
+
cloneDeepWith<T_175>(value: T_175, customizer: lodash.CloneDeepWithCustomizer<T_175>): any;
|
351
|
+
cloneDeepWith<T_176>(value: T_176): T_176;
|
352
|
+
cloneWith<T_177, TResult_26 extends string | number | boolean | object | null>(value: T_177, customizer: lodash.CloneWithCustomizer<T_177, TResult_26>): TResult_26;
|
353
|
+
cloneWith<T_178, TResult_27>(value: T_178, customizer: lodash.CloneWithCustomizer<T_178, TResult_27 | undefined>): T_178 | TResult_27;
|
354
|
+
cloneWith<T_179>(value: T_179): T_179;
|
355
|
+
conformsTo<T_180>(object: T_180, source: lodash.ConformsPredicateObject<T_180>): boolean;
|
352
356
|
eq(value: any, other: any): boolean;
|
353
357
|
gt(value: any, other: any): boolean;
|
354
358
|
gte(value: any, other: any): boolean;
|
355
359
|
isArguments(value?: any): value is IArguments;
|
356
360
|
isArray(value?: any): value is any[];
|
357
|
-
isArray<
|
361
|
+
isArray<T_181>(value?: any): value is any[];
|
358
362
|
isArrayBuffer(value?: any): value is ArrayBuffer;
|
359
|
-
isArrayLike<
|
363
|
+
isArrayLike<T_182 extends {
|
360
364
|
__lodashAnyHack: any;
|
361
|
-
}>(t:
|
365
|
+
}>(t: T_182): boolean;
|
362
366
|
isArrayLike(value: ((...args: any[]) => any) | null | undefined): value is never;
|
363
367
|
isArrayLike(value: any): value is {
|
364
368
|
length: number;
|
365
369
|
};
|
366
|
-
isArrayLikeObject<
|
370
|
+
isArrayLikeObject<T_183 extends {
|
367
371
|
__lodashAnyHack: any;
|
368
|
-
}>(value:
|
372
|
+
}>(value: T_183): boolean;
|
369
373
|
isArrayLikeObject(value: string | number | boolean | Function | ((...args: any[]) => any) | null | undefined): value is never;
|
370
374
|
isArrayLikeObject(value: any): value is object & {
|
371
375
|
length: number;
|
@@ -374,6 +378,12 @@ export declare const vendorMap: {
|
|
374
378
|
isBuffer(value?: any): boolean;
|
375
379
|
isDate(value?: any): value is Date;
|
376
380
|
isElement(value?: any): boolean;
|
381
|
+
isEmpty<T_184 extends {
|
382
|
+
__trapAny: any;
|
383
|
+
}>(value?: T_184 | undefined): boolean;
|
384
|
+
isEmpty(value: string): value is "";
|
385
|
+
isEmpty(value: lodash.List<any> | Map<any, any> | Set<any> | null | undefined): boolean;
|
386
|
+
isEmpty<T_185 extends object>(value: T_185 | null | undefined): value is lodash.EmptyObjectOf<T_185> | null | undefined;
|
377
387
|
isEmpty(value?: any): boolean;
|
378
388
|
isEqual(value: any, other: any): boolean;
|
379
389
|
isEqualWith(value: any, other: any, customizer?: lodash.IsEqualCustomizer | undefined): boolean;
|
@@ -404,8 +414,8 @@ export declare const vendorMap: {
|
|
404
414
|
isWeakSet(value?: any): value is WeakSet<object>;
|
405
415
|
lt(value: any, other: any): boolean;
|
406
416
|
lte(value: any, other: any): boolean;
|
407
|
-
toArray<
|
408
|
-
toArray<
|
417
|
+
toArray<T_186>(value: lodash.Dictionary<T_186> | lodash.NumericDictionary<T_186> | null | undefined): T_186[];
|
418
|
+
toArray<T_187>(value: T_187): T_187[keyof T_187][];
|
409
419
|
toArray(): any[];
|
410
420
|
toFinite(value: any): number;
|
411
421
|
toInteger(value: any): number;
|
@@ -418,17 +428,17 @@ export declare const vendorMap: {
|
|
418
428
|
ceil(n: number, precision?: number | undefined): number;
|
419
429
|
divide(dividend: number, divisor: number): number;
|
420
430
|
floor(n: number, precision?: number | undefined): number;
|
421
|
-
max<
|
422
|
-
maxBy<
|
431
|
+
max<T_188>(collection: lodash.List<T_188> | null | undefined): T_188 | undefined;
|
432
|
+
maxBy<T_189>(collection: lodash.List<T_189> | null | undefined, iteratee?: lodash.ValueIteratee<T_189> | undefined): T_189 | undefined;
|
423
433
|
mean(collection: lodash.List<any> | null | undefined): number;
|
424
|
-
meanBy<
|
425
|
-
min<
|
426
|
-
minBy<
|
434
|
+
meanBy<T_190>(collection: lodash.List<T_190> | null | undefined, iteratee?: lodash.ValueIteratee<T_190> | undefined): number;
|
435
|
+
min<T_191>(collection: lodash.List<T_191> | null | undefined): T_191 | undefined;
|
436
|
+
minBy<T_192>(collection: lodash.List<T_192> | null | undefined, iteratee?: lodash.ValueIteratee<T_192> | undefined): T_192 | undefined;
|
427
437
|
multiply(multiplier: number, multiplicand: number): number;
|
428
438
|
round(n: number, precision?: number | undefined): number;
|
429
439
|
subtract(minuend: number, subtrahend: number): number;
|
430
440
|
sum(collection: lodash.List<any> | null | undefined): number;
|
431
|
-
sumBy<
|
441
|
+
sumBy<T_193>(collection: lodash.List<T_193> | null | undefined, iteratee?: string | ((value: T_193) => number) | undefined): number;
|
432
442
|
clamp(number: number, lower: number, upper: number): number;
|
433
443
|
clamp(number: number, upper: number): number;
|
434
444
|
inRange(n: number, start: number, end?: number | undefined): boolean;
|
@@ -460,9 +470,9 @@ export declare const vendorMap: {
|
|
460
470
|
assignWith<TObject_18, TSource1_11, TSource2_11, TSource3_7, TSource4_3>(object: TObject_18, source1: TSource1_11, source2: TSource2_11, source3: TSource3_7, source4: TSource4_3, customizer: lodash.AssignCustomizer): TObject_18 & TSource1_11 & TSource2_11 & TSource3_7 & TSource4_3;
|
461
471
|
assignWith<TObject_19>(object: TObject_19): TObject_19;
|
462
472
|
assignWith<TResult_30>(object: any, ...otherArgs: any[]): TResult_30;
|
463
|
-
at<
|
464
|
-
at<
|
465
|
-
create<
|
473
|
+
at<T_194>(object: lodash.Dictionary<T_194> | lodash.NumericDictionary<T_194> | null | undefined, ...props: lodash.PropertyPath[]): T_194[];
|
474
|
+
at<T_195 extends object>(object: T_195 | null | undefined, ...props: lodash.Many<keyof T_195>[]): T_195[keyof T_195][];
|
475
|
+
create<T_196 extends object, U_3 extends object>(prototype: T_196, properties?: U_3 | undefined): T_196 & U_3;
|
466
476
|
defaults<TObject_20, TSource_4>(object: TObject_20, source: TSource_4): NonNullable<TSource_4 & TObject_20>;
|
467
477
|
defaults<TObject_21, TSource1_12, TSource2_12>(object: TObject_21, source1: TSource1_12, source2: TSource2_12): NonNullable<TSource2_12 & TSource1_12 & TObject_21>;
|
468
478
|
defaults<TObject_22, TSource1_13, TSource2_13, TSource3_8>(object: TObject_22, source1: TSource1_13, source2: TSource2_13, source3: TSource3_8): NonNullable<TSource3_8 & TSource2_13 & TSource1_13 & TObject_22>;
|
@@ -470,9 +480,9 @@ export declare const vendorMap: {
|
|
470
480
|
defaults<TObject_24>(object: TObject_24): NonNullable<TObject_24>;
|
471
481
|
defaults(object: any, ...sources: any[]): any;
|
472
482
|
defaultsDeep(object: any, ...sources: any[]): any;
|
473
|
-
entries<
|
483
|
+
entries<T_197>(object?: lodash.Dictionary<T_197> | lodash.NumericDictionary<T_197> | undefined): [string, T_197][];
|
474
484
|
entries(object?: object | undefined): [string, any][];
|
475
|
-
entriesIn<
|
485
|
+
entriesIn<T_198>(object?: lodash.Dictionary<T_198> | lodash.NumericDictionary<T_198> | undefined): [string, T_198][];
|
476
486
|
entriesIn(object?: object | undefined): [string, any][];
|
477
487
|
extend<TObject_25, TSource_5>(object: TObject_25, source: TSource_5): TObject_25 & TSource_5;
|
478
488
|
extend<TObject_26, TSource1_15, TSource2_15>(object: TObject_26, source1: TSource1_15, source2: TSource2_15): TObject_26 & TSource1_15 & TSource2_15;
|
@@ -486,18 +496,18 @@ export declare const vendorMap: {
|
|
486
496
|
extendWith<TObject_33, TSource1_20, TSource2_20, TSource3_13, TSource4_6>(object: TObject_33, source1: TSource1_20, source2: TSource2_20, source3: TSource3_13, source4: TSource4_6, customizer: lodash.AssignCustomizer): TObject_33 & TSource1_20 & TSource2_20 & TSource3_13 & TSource4_6;
|
487
497
|
extendWith<TObject_34>(object: TObject_34): TObject_34;
|
488
498
|
extendWith<TResult_32>(object: any, ...otherArgs: any[]): TResult_32;
|
489
|
-
findKey<
|
490
|
-
findLastKey<
|
491
|
-
forIn<
|
492
|
-
forIn<
|
493
|
-
forInRight<
|
494
|
-
forInRight<
|
495
|
-
forOwn<
|
496
|
-
forOwn<
|
497
|
-
forOwnRight<
|
498
|
-
forOwnRight<
|
499
|
+
findKey<T_199>(object: T_199 | null | undefined, predicate?: lodash.ObjectIteratee<T_199> | undefined): string | undefined;
|
500
|
+
findLastKey<T_200>(object: T_200 | null | undefined, predicate?: lodash.ObjectIteratee<T_200> | undefined): string | undefined;
|
501
|
+
forIn<T_201>(object: T_201, iteratee?: lodash.ObjectIterator<T_201, any> | undefined): T_201;
|
502
|
+
forIn<T_202>(object: T_202 | null | undefined, iteratee?: lodash.ObjectIterator<T_202, any> | undefined): T_202 | null | undefined;
|
503
|
+
forInRight<T_203>(object: T_203, iteratee?: lodash.ObjectIterator<T_203, any> | undefined): T_203;
|
504
|
+
forInRight<T_204>(object: T_204 | null | undefined, iteratee?: lodash.ObjectIterator<T_204, any> | undefined): T_204 | null | undefined;
|
505
|
+
forOwn<T_205>(object: T_205, iteratee?: lodash.ObjectIterator<T_205, any> | undefined): T_205;
|
506
|
+
forOwn<T_206>(object: T_206 | null | undefined, iteratee?: lodash.ObjectIterator<T_206, any> | undefined): T_206 | null | undefined;
|
507
|
+
forOwnRight<T_207>(object: T_207, iteratee?: lodash.ObjectIterator<T_207, any> | undefined): T_207;
|
508
|
+
forOwnRight<T_208>(object: T_208 | null | undefined, iteratee?: lodash.ObjectIterator<T_208, any> | undefined): T_208 | null | undefined;
|
499
509
|
functions(object: any): string[];
|
500
|
-
functionsIn<
|
510
|
+
functionsIn<T_209 extends {}>(object: any): string[];
|
501
511
|
get<TObject_35 extends object, TKey extends keyof TObject_35>(object: TObject_35, path: TKey | [TKey]): TObject_35[TKey];
|
502
512
|
get<TObject_36 extends object, TKey_1 extends keyof TObject_36>(object: TObject_36 | null | undefined, path: TKey_1 | [TKey_1]): TObject_36[TKey_1] | undefined;
|
503
513
|
get<TObject_37 extends object, TKey_2 extends keyof TObject_37, TDefault>(object: TObject_37 | null | undefined, path: TKey_2 | [TKey_2], defaultValue: TDefault): TDefault | Exclude<TObject_37[TKey_2], undefined>;
|
@@ -510,33 +520,33 @@ export declare const vendorMap: {
|
|
510
520
|
get<TObject_44 extends object, TKey1_6 extends keyof TObject_44, TKey2_6 extends keyof TObject_44[TKey1_6], TKey3_3 extends keyof TObject_44[TKey1_6][TKey2_6], TKey4 extends keyof TObject_44[TKey1_6][TKey2_6][TKey3_3]>(object: TObject_44, path: [TKey1_6, TKey2_6, TKey3_3, TKey4]): TObject_44[TKey1_6][TKey2_6][TKey3_3][TKey4];
|
511
521
|
get<TObject_45 extends object, TKey1_7 extends keyof TObject_45, TKey2_7 extends keyof TObject_45[TKey1_7], TKey3_4 extends keyof TObject_45[TKey1_7][TKey2_7], TKey4_1 extends keyof TObject_45[TKey1_7][TKey2_7][TKey3_4]>(object: TObject_45 | null | undefined, path: [TKey1_7, TKey2_7, TKey3_4, TKey4_1]): TObject_45[TKey1_7][TKey2_7][TKey3_4][TKey4_1] | undefined;
|
512
522
|
get<TObject_46 extends object, TKey1_8 extends keyof TObject_46, TKey2_8 extends keyof TObject_46[TKey1_8], TKey3_5 extends keyof TObject_46[TKey1_8][TKey2_8], TKey4_2 extends keyof TObject_46[TKey1_8][TKey2_8][TKey3_5], TDefault_3>(object: TObject_46 | null | undefined, path: [TKey1_8, TKey2_8, TKey3_5, TKey4_2], defaultValue: TDefault_3): TDefault_3 | Exclude<TObject_46[TKey1_8][TKey2_8][TKey3_5][TKey4_2], undefined>;
|
513
|
-
get<
|
514
|
-
get<
|
515
|
-
get<
|
523
|
+
get<T_210>(object: lodash.NumericDictionary<T_210>, path: number): T_210;
|
524
|
+
get<T_211>(object: lodash.NumericDictionary<T_211> | null | undefined, path: number): T_211 | undefined;
|
525
|
+
get<T_212, TDefault_4>(object: lodash.NumericDictionary<T_212> | null | undefined, path: number, defaultValue: TDefault_4): T_212 | TDefault_4;
|
516
526
|
get<TDefault_5>(object: null | undefined, path: lodash.PropertyPath, defaultValue: TDefault_5): TDefault_5;
|
517
527
|
get(object: null | undefined, path: lodash.PropertyPath): undefined;
|
518
528
|
get(object: any, path: lodash.PropertyPath, defaultValue?: any): any;
|
519
|
-
has<
|
520
|
-
hasIn<
|
529
|
+
has<T_213>(object: T_213, path: lodash.PropertyPath): boolean;
|
530
|
+
hasIn<T_214>(object: T_214, path: lodash.PropertyPath): boolean;
|
521
531
|
invert(object: object): lodash.Dictionary<string>;
|
522
|
-
invertBy<
|
523
|
-
invertBy<
|
532
|
+
invertBy<T_215>(object: lodash.Dictionary<T_215> | lodash.NumericDictionary<T_215> | null | undefined, interatee?: lodash.ValueIteratee<T_215> | undefined): lodash.Dictionary<string[]>;
|
533
|
+
invertBy<T_216 extends object>(object: T_216 | null | undefined, interatee?: lodash.ValueIteratee<T_216[keyof T_216]> | undefined): lodash.Dictionary<string[]>;
|
524
534
|
invoke(object: any, path: lodash.PropertyPath, ...args: any[]): any;
|
525
535
|
keys(object?: any): string[];
|
526
536
|
keysIn(object?: any): string[];
|
527
|
-
mapKeys<
|
528
|
-
mapKeys<
|
537
|
+
mapKeys<T_217>(object: lodash.List<T_217> | null | undefined, iteratee?: lodash.ListIteratee<T_217> | undefined): lodash.Dictionary<T_217>;
|
538
|
+
mapKeys<T_218 extends object>(object: T_218 | null | undefined, iteratee?: lodash.ObjectIteratee<T_218> | undefined): lodash.Dictionary<T_218[keyof T_218]>;
|
529
539
|
mapValues<TResult_33>(obj: string | null | undefined, callback: lodash.StringIterator<TResult_33>): lodash.NumericDictionary<TResult_33>;
|
530
|
-
mapValues<
|
531
|
-
mapValues<
|
532
|
-
mapValues<
|
533
|
-
mapValues<
|
534
|
-
mapValues<
|
535
|
-
mapValues<
|
540
|
+
mapValues<T_219 extends object, TResult_34>(obj: T_219 | null | undefined, callback: lodash.ObjectIterator<T_219, TResult_34>): { [P in keyof T_219]: TResult_34; };
|
541
|
+
mapValues<T_220>(obj: lodash.Dictionary<T_220> | lodash.NumericDictionary<T_220> | null | undefined, iteratee: object): lodash.Dictionary<boolean>;
|
542
|
+
mapValues<T_221 extends object>(obj: T_221 | null | undefined, iteratee: object): { [P_1 in keyof T_221]: boolean; };
|
543
|
+
mapValues<T_222, TKey_3 extends keyof T_222>(obj: lodash.Dictionary<T_222> | lodash.NumericDictionary<T_222> | null | undefined, iteratee: TKey_3): lodash.Dictionary<T_222[TKey_3]>;
|
544
|
+
mapValues<T_223>(obj: lodash.Dictionary<T_223> | lodash.NumericDictionary<T_223> | null | undefined, iteratee: string): lodash.Dictionary<any>;
|
545
|
+
mapValues<T_224 extends object>(obj: T_224 | null | undefined, iteratee: string): { [P_2 in keyof T_224]: any; };
|
536
546
|
mapValues(obj: string | null | undefined): lodash.NumericDictionary<string>;
|
537
|
-
mapValues<
|
538
|
-
mapValues<
|
539
|
-
mapValues<
|
547
|
+
mapValues<T_225>(obj: lodash.Dictionary<T_225> | lodash.NumericDictionary<T_225> | null | undefined): lodash.Dictionary<T_225>;
|
548
|
+
mapValues<T_226 extends object>(obj: T_226): T_226;
|
549
|
+
mapValues<T_227 extends object>(obj: T_227 | null | undefined): Partial<T_227>;
|
540
550
|
merge<TObject_47, TSource_7>(object: TObject_47, source: TSource_7): TObject_47 & TSource_7;
|
541
551
|
merge<TObject_48, TSource1_21, TSource2_21>(object: TObject_48, source1: TSource1_21, source2: TSource2_21): TObject_48 & TSource1_21 & TSource2_21;
|
542
552
|
merge<TObject_49, TSource1_22, TSource2_22, TSource3_14>(object: TObject_49, source1: TSource1_22, source2: TSource2_22, source3: TSource3_14): TObject_49 & TSource1_22 & TSource2_22 & TSource3_14;
|
@@ -547,54 +557,54 @@ export declare const vendorMap: {
|
|
547
557
|
mergeWith<TObject_53, TSource1_25, TSource2_25, TSource3_16>(object: TObject_53, source1: TSource1_25, source2: TSource2_25, source3: TSource3_16, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_53 & TSource1_25 & TSource2_25 & TSource3_16;
|
548
558
|
mergeWith<TObject_54, TSource1_26, TSource2_26, TSource3_17, TSource4_8>(object: TObject_54, source1: TSource1_26, source2: TSource2_26, source3: TSource3_17, source4: TSource4_8, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_54 & TSource1_26 & TSource2_26 & TSource3_17 & TSource4_8;
|
549
559
|
mergeWith(object: any, ...otherArgs: any[]): any;
|
550
|
-
omit<
|
551
|
-
omit<
|
552
|
-
omit<
|
553
|
-
omitBy<
|
554
|
-
omitBy<
|
555
|
-
omitBy<
|
556
|
-
pick<
|
557
|
-
pick<
|
558
|
-
pickBy<
|
559
|
-
pickBy<
|
560
|
-
pickBy<
|
561
|
-
pickBy<
|
562
|
-
pickBy<
|
560
|
+
omit<T_228 extends object, K_1 extends lodash.PropertyName[]>(object: T_228 | null | undefined, ...paths: K_1): Pick<T_228, Exclude<keyof T_228, K_1[number]>>;
|
561
|
+
omit<T_229 extends object, K_2 extends keyof T_229>(object: T_229 | null | undefined, ...paths: lodash.Many<K_2>[]): lodash.Omit<T_229, K_2>;
|
562
|
+
omit<T_230 extends object>(object: T_230 | null | undefined, ...paths: lodash.Many<lodash.PropertyName>[]): Partial<T_230>;
|
563
|
+
omitBy<T_231>(object: lodash.Dictionary<T_231> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_231> | undefined): lodash.Dictionary<T_231>;
|
564
|
+
omitBy<T_232>(object: lodash.NumericDictionary<T_232> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_232> | undefined): lodash.NumericDictionary<T_232>;
|
565
|
+
omitBy<T_233 extends object>(object: T_233 | null | undefined, predicate: lodash.ValueKeyIteratee<T_233[keyof T_233]>): Partial<T_233>;
|
566
|
+
pick<T_234 extends object, U_4 extends keyof T_234>(object: T_234, ...props: lodash.Many<U_4>[]): Pick<T_234, U_4>;
|
567
|
+
pick<T_235>(object: T_235 | null | undefined, ...props: lodash.PropertyPath[]): Partial<T_235>;
|
568
|
+
pickBy<T_236, S_6 extends T_236>(object: lodash.Dictionary<T_236> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_236, S_6>): lodash.Dictionary<S_6>;
|
569
|
+
pickBy<T_237, S_7 extends T_237>(object: lodash.NumericDictionary<T_237> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_237, S_7>): lodash.NumericDictionary<S_7>;
|
570
|
+
pickBy<T_238>(object: lodash.Dictionary<T_238> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_238> | undefined): lodash.Dictionary<T_238>;
|
571
|
+
pickBy<T_239>(object: lodash.NumericDictionary<T_239> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_239> | undefined): lodash.NumericDictionary<T_239>;
|
572
|
+
pickBy<T_240 extends object>(object: T_240 | null | undefined, predicate?: lodash.ValueKeyIteratee<T_240[keyof T_240]> | undefined): Partial<T_240>;
|
563
573
|
result<TResult_35>(object: any, path: lodash.PropertyPath, defaultValue?: TResult_35 | ((...args: any[]) => TResult_35) | undefined): TResult_35;
|
564
|
-
set<
|
574
|
+
set<T_241 extends object>(object: T_241, path: lodash.PropertyPath, value: any): T_241;
|
565
575
|
set<TResult_36>(object: object, path: lodash.PropertyPath, value: any): TResult_36;
|
566
|
-
setWith<
|
567
|
-
setWith<
|
568
|
-
toPairs<
|
576
|
+
setWith<T_242 extends object>(object: T_242, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_242> | undefined): T_242;
|
577
|
+
setWith<T_243 extends object, TResult_37>(object: T_243, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_243> | undefined): TResult_37;
|
578
|
+
toPairs<T_244>(object?: lodash.Dictionary<T_244> | lodash.NumericDictionary<T_244> | undefined): [string, T_244][];
|
569
579
|
toPairs(object?: object | undefined): [string, any][];
|
570
|
-
toPairsIn<
|
580
|
+
toPairsIn<T_245>(object?: lodash.Dictionary<T_245> | lodash.NumericDictionary<T_245> | undefined): [string, T_245][];
|
571
581
|
toPairsIn(object?: object | undefined): [string, any][];
|
572
|
-
transform<
|
573
|
-
transform<
|
574
|
-
transform<
|
582
|
+
transform<T_246, TResult_38>(object: readonly T_246[], iteratee: lodash.MemoVoidArrayIterator<T_246, TResult_38>, accumulator?: TResult_38 | undefined): TResult_38;
|
583
|
+
transform<T_247, TResult_39>(object: lodash.Dictionary<T_247>, iteratee: lodash.MemoVoidDictionaryIterator<T_247, string, TResult_39>, accumulator?: TResult_39 | undefined): TResult_39;
|
584
|
+
transform<T_248 extends object, TResult_40>(object: T_248, iteratee: lodash.MemoVoidDictionaryIterator<T_248[keyof T_248], keyof T_248, TResult_40>, accumulator?: TResult_40 | undefined): TResult_40;
|
575
585
|
transform(object: any[]): any[];
|
576
586
|
transform(object: object): lodash.Dictionary<any>;
|
577
587
|
unset(object: any, path: lodash.PropertyPath): boolean;
|
578
588
|
update(object: object, path: lodash.PropertyPath, updater: (value: any) => any): any;
|
579
|
-
updateWith<
|
580
|
-
updateWith<
|
581
|
-
values<
|
582
|
-
values<
|
589
|
+
updateWith<T_249 extends object>(object: T_249, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_249> | undefined): T_249;
|
590
|
+
updateWith<T_250 extends object, TResult_41>(object: T_250, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_250> | undefined): TResult_41;
|
591
|
+
values<T_251>(object: lodash.Dictionary<T_251> | lodash.NumericDictionary<T_251> | lodash.List<T_251> | null | undefined): T_251[];
|
592
|
+
values<T_252 extends object>(object: T_252 | null | undefined): T_252[keyof T_252][];
|
583
593
|
values(object: any): any[];
|
584
|
-
valuesIn<
|
585
|
-
valuesIn<
|
594
|
+
valuesIn<T_253>(object: lodash.Dictionary<T_253> | lodash.NumericDictionary<T_253> | lodash.List<T_253> | null | undefined): T_253[];
|
595
|
+
valuesIn<T_254 extends object>(object: T_254 | null | undefined): T_254[keyof T_254][];
|
586
596
|
chain<TrapAny extends {
|
587
597
|
__lodashAnyHack: any;
|
588
598
|
}>(value: TrapAny): lodash.CollectionChain<any> & lodash.FunctionChain<any> & lodash.ObjectChain<any> & lodash.PrimitiveChain<any> & lodash.StringChain;
|
589
|
-
chain<
|
599
|
+
chain<T_255 extends null | undefined>(value: T_255): lodash.PrimitiveChain<T_255>;
|
590
600
|
chain(value: string): lodash.StringChain;
|
591
601
|
chain(value: string | null | undefined): lodash.StringNullableChain;
|
592
|
-
chain<
|
593
|
-
chain<
|
594
|
-
chain<
|
595
|
-
chain<
|
596
|
-
tap<
|
597
|
-
thru<
|
602
|
+
chain<T_256 extends (...args: any[]) => any>(value: T_256): lodash.FunctionChain<T_256>;
|
603
|
+
chain<T_257 = any>(value: lodash.List<T_257> | null | undefined): lodash.CollectionChain<T_257>;
|
604
|
+
chain<T_258 extends object>(value: T_258 | null | undefined): lodash.ObjectChain<T_258>;
|
605
|
+
chain<T_259>(value: T_259): lodash.PrimitiveChain<T_259>;
|
606
|
+
tap<T_260>(value: T_260, interceptor: (value: T_260) => void): T_260;
|
607
|
+
thru<T_261, TResult_42>(value: T_261, interceptor: (value: T_261) => TResult_42): TResult_42;
|
598
608
|
camelCase(string?: string | undefined): string;
|
599
609
|
capitalize(string?: string | undefined): string;
|
600
610
|
deburr(string?: string | undefined): string;
|
@@ -632,12 +642,13 @@ export declare const vendorMap: {
|
|
632
642
|
words(string?: string | undefined, pattern?: string | RegExp | undefined): string[];
|
633
643
|
words(string: string, index: string | number, guard: object): string[];
|
634
644
|
attempt<TResult_43>(func: (...args: any[]) => TResult_43, ...args: any[]): Error | TResult_43;
|
635
|
-
bindAll<
|
636
|
-
cond<
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
defaultTo<
|
645
|
+
bindAll<T_262>(object: T_262, ...methodNames: lodash.Many<string>[]): T_262;
|
646
|
+
cond<R>(pairs: lodash.CondPairNullary<R>[]): () => R;
|
647
|
+
cond<T_263, R_1>(pairs: lodash.CondPairUnary<T_263, R_1>[]): (Target: T_263) => R_1;
|
648
|
+
conforms<T_264>(source: lodash.ConformsPredicateObject<T_264>): (value: T_264) => boolean;
|
649
|
+
constant<T_265>(value: T_265): () => T_265;
|
650
|
+
defaultTo<T_266>(value: T_266 | null | undefined, defaultValue: T_266): T_266;
|
651
|
+
defaultTo<T_267, TDefault_6>(value: T_267 | null | undefined, defaultValue: TDefault_6): T_267 | TDefault_6;
|
641
652
|
flow<A extends any[], R1, R2, R3, R4, R5, R6, R7>(f1: (...args: A) => R1, f2: (a: R1) => R2, f3: (a: R2) => R3, f4: (a: R3) => R4, f5: (a: R4) => R5, f6: (a: R5) => R6, f7: (a: R6) => R7): (...args: A) => R7;
|
642
653
|
flow<A_1 extends any[], R1_1, R2_1, R3_1, R4_1, R5_1, R6_1, R7_1>(f1: (...args: A_1) => R1_1, f2: (a: R1_1) => R2_1, f3: (a: R2_1) => R3_1, f4: (a: R3_1) => R4_1, f5: (a: R4_1) => R5_1, f6: (a: R5_1) => R6_1, f7: (a: R6_1) => R7_1, ...func: lodash.Many<(a: any) => any>[]): (...args: A_1) => any;
|
643
654
|
flow<A_2 extends any[], R1_2, R2_2, R3_2, R4_2, R5_2, R6_2>(f1: (...args: A_2) => R1_2, f2: (a: R1_2) => R2_2, f3: (a: R2_2) => R3_2, f4: (a: R3_2) => R4_2, f5: (a: R4_2) => R5_2, f6: (a: R5_2) => R6_2): (...args: A_2) => R6_2;
|
@@ -653,14 +664,14 @@ export declare const vendorMap: {
|
|
653
664
|
flowRight<A_11 extends any[], R1_11, R2_11, R3_10>(f3: (a: R2_11) => R3_10, f2: (a: R1_11) => R2_11, f1: (...args: A_11) => R1_11): (...args: A_11) => R3_10;
|
654
665
|
flowRight<A_12 extends any[], R1_12, R2_12>(f2: (a: R1_12) => R2_12, f1: (...args: A_12) => R1_12): (...args: A_12) => R2_12;
|
655
666
|
flowRight(...func: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
656
|
-
identity<
|
667
|
+
identity<T_268>(value: T_268): T_268;
|
657
668
|
identity(): undefined;
|
658
669
|
iteratee<TFunction extends (...args: any[]) => any>(func: TFunction): TFunction;
|
659
670
|
iteratee(func: string | number | symbol | object): (...args: any[]) => any;
|
660
|
-
matches<
|
661
|
-
matches<
|
662
|
-
matchesProperty<
|
663
|
-
matchesProperty<
|
671
|
+
matches<T_269>(source: T_269): (value: any) => boolean;
|
672
|
+
matches<T_270, V>(source: T_270): (value: V) => boolean;
|
673
|
+
matchesProperty<T_271>(path: lodash.PropertyPath, srcValue: T_271): (value: any) => boolean;
|
674
|
+
matchesProperty<T_272, V_1>(path: lodash.PropertyPath, srcValue: T_272): (value: V_1) => boolean;
|
664
675
|
method(path: lodash.PropertyPath, ...args: any[]): (object: any) => any;
|
665
676
|
methodOf(object: object, ...args: any[]): (path: lodash.PropertyPath) => any;
|
666
677
|
mixin<TObject_55>(object: TObject_55, source: lodash.Dictionary<(...args: any[]) => any>, options?: lodash.MixinOptions | undefined): TObject_55;
|
@@ -669,12 +680,12 @@ export declare const vendorMap: {
|
|
669
680
|
noop(...args: any[]): void;
|
670
681
|
nthArg(n?: number | undefined): (...args: any[]) => any;
|
671
682
|
over<TResult_45>(...iteratees: lodash.Many<(...args: any[]) => TResult_45>[]): (...args: any[]) => TResult_45[];
|
672
|
-
overEvery<
|
673
|
-
overEvery<
|
674
|
-
overSome<
|
675
|
-
overSome<
|
683
|
+
overEvery<T_273, Result1 extends T_273, Result2 extends T_273>(predicates_0: (arg: T_273) => arg is Result1, predicates_1: (arg: T_273) => arg is Result2): (arg: T_273) => arg is Result1 & Result2;
|
684
|
+
overEvery<T_274>(...predicates: lodash.Many<(...args: T_274[]) => boolean>[]): (...args: T_274[]) => boolean;
|
685
|
+
overSome<T_275, Result1_1 extends T_275, Result2_1 extends T_275>(predicates_0: (arg: T_275) => arg is Result1_1, predicates_1: (arg: T_275) => arg is Result2_1): (arg: T_275) => arg is Result1_1 | Result2_1;
|
686
|
+
overSome<T_276>(...predicates: lodash.Many<(...args: T_276[]) => boolean>[]): (...args: T_276[]) => boolean;
|
676
687
|
property<TObj, TResult_46>(path: lodash.PropertyPath): (obj: TObj) => TResult_46;
|
677
|
-
propertyOf<
|
688
|
+
propertyOf<T_277 extends {}>(object: T_277): (path: lodash.PropertyPath) => any;
|
678
689
|
range(start: number, end?: number | undefined, step?: number | undefined): number[];
|
679
690
|
range(end: number, index: string | number, guard: object): number[];
|
680
691
|
rangeRight(start: number, end?: number | undefined, step?: number | undefined): number[];
|
@@ -6,6 +6,7 @@ export var FlowAction;
|
|
6
6
|
FlowAction["FLOW_APPLY_PRODUCT_CONFIGURATION"] = "FLOW_APPLY_PRODUCT_CONFIGURATION";
|
7
7
|
FlowAction["FLOW_OPEN_DOC_GEN"] = "FLOW_OPEN_DOC_GEN";
|
8
8
|
FlowAction["FLOW_CLOSE_DOC_GEN"] = "FLOW_CLOSE_DOC_GEN";
|
9
|
+
FlowAction["FLOW_SWITCH_OBJECT"] = "FLOW_SWITCH_OBJECT";
|
9
10
|
FlowAction["REMOTE_APPLY"] = "REMOTE_APPLY";
|
10
11
|
FlowAction["REMOTE_CANCEL"] = "REMOTE_CANCEL";
|
11
12
|
})(FlowAction || (FlowAction = {}));
|
@@ -34,4 +35,8 @@ export const RemoteApplyAction = () => ({
|
|
34
35
|
export const RemoteCancelAction = () => ({
|
35
36
|
type: FlowAction.REMOTE_CANCEL,
|
36
37
|
});
|
37
|
-
|
38
|
+
export const SwitchObjectAction = (payload) => ({
|
39
|
+
type: FlowAction.FLOW_SWITCH_OBJECT,
|
40
|
+
payload,
|
41
|
+
});
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY21zLmFjdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL3Nkay9jbXMvY21zLmFjdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxDQUFOLElBQVksVUFVWDtBQVZELFdBQVksVUFBVTtJQUNwQiwrREFBaUQsQ0FBQTtJQUNqRCx1REFBeUMsQ0FBQTtJQUN6QyxtRUFBcUQsQ0FBQTtJQUNyRCxtRkFBcUUsQ0FBQTtJQUNyRSxxREFBdUMsQ0FBQTtJQUN2Qyx1REFBeUMsQ0FBQTtJQUN6Qyx1REFBeUMsQ0FBQTtJQUN6QywyQ0FBNkIsQ0FBQTtJQUM3Qiw2Q0FBK0IsQ0FBQTtBQUNqQyxDQUFDLEVBVlcsVUFBVSxLQUFWLFVBQVUsUUFVckI7QUFFRCxNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBRyxDQUFDLEVBQ3JDLFVBQVUsRUFDVixTQUFTLEdBSVYsRUFBcUIsRUFBRSxDQUFDLENBQUM7SUFDeEIsSUFBSSxFQUFFLFVBQVUsQ0FBQyxzQkFBc0I7SUFDdkMsT0FBTyxFQUFFLEVBQUUsVUFBVSxFQUFFLFNBQVMsRUFBRTtDQUNuQyxDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBRyxHQUFzQixFQUFFLENBQUMsQ0FBQztJQUMxRCxJQUFJLEVBQUUsVUFBVSxDQUFDLGtCQUFrQjtDQUNwQyxDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSx1QkFBdUIsR0FBRyxHQUFzQixFQUFFLENBQUMsQ0FBQztJQUMvRCxJQUFJLEVBQUUsVUFBVSxDQUFDLHdCQUF3QjtDQUMxQyxDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSwrQkFBK0IsR0FBRyxHQUFzQixFQUFFLENBQUMsQ0FBQztJQUN2RSxJQUFJLEVBQUUsVUFBVSxDQUFDLGdDQUFnQztDQUNsRCxDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSxnQkFBZ0IsR0FBRyxHQUFzQixFQUFFLENBQUMsQ0FBQztJQUN4RCxJQUFJLEVBQUUsVUFBVSxDQUFDLGlCQUFpQjtDQUNuQyxDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSxpQkFBaUIsR0FBRyxHQUFzQixFQUFFLENBQUMsQ0FBQztJQUN6RCxJQUFJLEVBQUUsVUFBVSxDQUFDLGtCQUFrQjtDQUNwQyxDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSxpQkFBaUIsR0FBRyxHQUFzQixFQUFFLENBQUMsQ0FBQztJQUN6RCxJQUFJLEVBQUUsVUFBVSxDQUFDLFlBQVk7Q0FDOUIsQ0FBQyxDQUFDO0FBRUgsTUFBTSxDQUFDLE1BQU0sa0JBQWtCLEdBQUcsR0FBc0IsRUFBRSxDQUFDLENBQUM7SUFDMUQsSUFBSSxFQUFFLFVBQVUsQ0FBQyxhQUFhO0NBQy9CLENBQUMsQ0FBQztBQUVILE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLENBQUMsT0FBdUIsRUFBcUIsRUFBRSxDQUFDLENBQUM7SUFDakYsSUFBSSxFQUFFLFVBQVUsQ0FBQyxrQkFBa0I7SUFDbkMsT0FBTztDQUNSLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEludGVncmF0aW9uQWN0aW9uIH0gZnJvbSAnLi90eXBlcyc7XG5cbmV4cG9ydCBlbnVtIEZsb3dBY3Rpb24ge1xuICBGTE9XX0NPTkZJR1VSRV9QUk9EVUNUID0gJ0ZMT1dfQ09ORklHVVJFX1BST0RVQ1QnLFxuICBGTE9XX05BVklHQVRFX0JBQ0sgPSAnRkxPV19OQVZJR0FURV9CQUNLJyxcbiAgRkxPV19OQVZJR0FURV9UT19DQVRBTE9HID0gJ0ZMT1dfTkFWSUdBVEVfVE9fQ0FUQUxPRycsXG4gIEZMT1dfQVBQTFlfUFJPRFVDVF9DT05GSUdVUkFUSU9OID0gJ0ZMT1dfQVBQTFlfUFJPRFVDVF9DT05GSUdVUkFUSU9OJyxcbiAgRkxPV19PUEVOX0RPQ19HRU4gPSAnRkxPV19PUEVOX0RPQ19HRU4nLFxuICBGTE9XX0NMT1NFX0RPQ19HRU4gPSAnRkxPV19DTE9TRV9ET0NfR0VOJyxcbiAgRkxPV19TV0lUQ0hfT0JKRUNUID0gJ0ZMT1dfU1dJVENIX09CSkVDVCcsXG4gIFJFTU9URV9BUFBMWSA9ICdSRU1PVEVfQVBQTFknLFxuICBSRU1PVEVfQ0FOQ0VMID0gJ1JFTU9URV9DQU5DRUwnLFxufVxuXG5leHBvcnQgY29uc3QgQ29uZmlndXJlUHJvZHVjdEFjdGlvbiA9ICh7XG4gIGxpbmVJdGVtSWQsXG4gIHByb2R1Y3RJZCxcbn06IHtcbiAgbGluZUl0ZW1JZD86IHN0cmluZztcbiAgcHJvZHVjdElkPzogc3RyaW5nO1xufSk6IEludGVncmF0aW9uQWN0aW9uID0+ICh7XG4gIHR5cGU6IEZsb3dBY3Rpb24uRkxPV19DT05GSUdVUkVfUFJPRFVDVCxcbiAgcGF5bG9hZDogeyBsaW5lSXRlbUlkLCBwcm9kdWN0SWQgfSxcbn0pO1xuXG5leHBvcnQgY29uc3QgTmF2aWdhdGVCYWNrQWN0aW9uID0gKCk6IEludGVncmF0aW9uQWN0aW9uID0+ICh7XG4gIHR5cGU6IEZsb3dBY3Rpb24uRkxPV19OQVZJR0FURV9CQUNLLFxufSk7XG5cbmV4cG9ydCBjb25zdCBOYXZpZ2F0ZVRvQ2F0YWxvZ0FjdGlvbiA9ICgpOiBJbnRlZ3JhdGlvbkFjdGlvbiA9PiAoe1xuICB0eXBlOiBGbG93QWN0aW9uLkZMT1dfTkFWSUdBVEVfVE9fQ0FUQUxPRyxcbn0pO1xuXG5leHBvcnQgY29uc3QgQXBwbHlQcm9kdWN0Q29uZmlndXJhdGlvbkFjdGlvbiA9ICgpOiBJbnRlZ3JhdGlvbkFjdGlvbiA9PiAoe1xuICB0eXBlOiBGbG93QWN0aW9uLkZMT1dfQVBQTFlfUFJPRFVDVF9DT05GSUdVUkFUSU9OLFxufSk7XG5cbmV4cG9ydCBjb25zdCBPcGVuRG9jR2VuQWN0aW9uID0gKCk6IEludGVncmF0aW9uQWN0aW9uID0+ICh7XG4gIHR5cGU6IEZsb3dBY3Rpb24uRkxPV19PUEVOX0RPQ19HRU4sXG59KTtcblxuZXhwb3J0IGNvbnN0IENsb3NlRG9jR2VuQWN0aW9uID0gKCk6IEludGVncmF0aW9uQWN0aW9uID0+ICh7XG4gIHR5cGU6IEZsb3dBY3Rpb24uRkxPV19DTE9TRV9ET0NfR0VOLFxufSk7XG5cbmV4cG9ydCBjb25zdCBSZW1vdGVBcHBseUFjdGlvbiA9ICgpOiBJbnRlZ3JhdGlvbkFjdGlvbiA9PiAoe1xuICB0eXBlOiBGbG93QWN0aW9uLlJFTU9URV9BUFBMWSxcbn0pO1xuXG5leHBvcnQgY29uc3QgUmVtb3RlQ2FuY2VsQWN0aW9uID0gKCk6IEludGVncmF0aW9uQWN0aW9uID0+ICh7XG4gIHR5cGU6IEZsb3dBY3Rpb24uUkVNT1RFX0NBTkNFTCxcbn0pO1xuXG5leHBvcnQgY29uc3QgU3dpdGNoT2JqZWN0QWN0aW9uID0gKHBheWxvYWQ6IHsgaWQ6IHN0cmluZyB9KTogSW50ZWdyYXRpb25BY3Rpb24gPT4gKHtcbiAgdHlwZTogRmxvd0FjdGlvbi5GTE9XX1NXSVRDSF9PQkpFQ1QsXG4gIHBheWxvYWQsXG59KTtcbiJdfQ==
|