@commercelayer/cli-core 6.0.0-oclif4.4 → 6.0.0-oclif4.6
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/lib/index.d.mts +3 -4
- package/lib/index.d.ts +3 -4
- package/package.json +2 -2
package/lib/index.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Command,
|
|
2
|
-
import { FlagInput } from '@oclif/core/lib/interfaces/parser';
|
|
1
|
+
import { Command, Interfaces, Help, CommandHelp } from '@oclif/core';
|
|
3
2
|
import chalk from 'chalk';
|
|
4
3
|
|
|
5
4
|
declare const denormalize: (response: any) => any;
|
|
@@ -74,8 +73,8 @@ declare namespace api$1 {
|
|
|
74
73
|
export { type api$1_ApiMode as ApiMode, type api$1_ApiType as ApiType, type api$1_DelayOptions as DelayOptions, api$1_Operation as Operation, api$1_baseURL as baseURL, api$1_execMode as execMode, api$1_extractDomain as extractDomain, api$1_humanizeResource as humanizeResource, api$1_isResourceCacheable as isResourceCacheable, api$1_liveEnvironment as liveEnvironment, api$1_request as request, readDataFile as requestDataFile, api$1_requestRateLimitDelay as requestRateLimitDelay, rawRequest as requestRaw, api$1_response as response, denormalize as responseDenormalize };
|
|
75
74
|
}
|
|
76
75
|
|
|
77
|
-
declare const commandFlags: <T extends FlagInput>(flags: T, exclude?: Array<keyof T>) => T;
|
|
78
|
-
declare const allFlags: (command: Command.Class) => FlagInput;
|
|
76
|
+
declare const commandFlags: <T extends Interfaces.FlagInput>(flags: T, exclude?: Array<keyof T>) => T;
|
|
77
|
+
declare const allFlags: (command: Command.Class) => Interfaces.FlagInput;
|
|
79
78
|
type KeyVal = Record<string, string | number | boolean | undefined | null>;
|
|
80
79
|
type KeyValString = Record<string, string>;
|
|
81
80
|
type KeyValArray = Record<string, string[]>;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Command,
|
|
2
|
-
import { FlagInput } from '@oclif/core/lib/interfaces/parser';
|
|
1
|
+
import { Command, Interfaces, Help, CommandHelp } from '@oclif/core';
|
|
3
2
|
import chalk from 'chalk';
|
|
4
3
|
|
|
5
4
|
declare const denormalize: (response: any) => any;
|
|
@@ -74,8 +73,8 @@ declare namespace api$1 {
|
|
|
74
73
|
export { type api$1_ApiMode as ApiMode, type api$1_ApiType as ApiType, type api$1_DelayOptions as DelayOptions, api$1_Operation as Operation, api$1_baseURL as baseURL, api$1_execMode as execMode, api$1_extractDomain as extractDomain, api$1_humanizeResource as humanizeResource, api$1_isResourceCacheable as isResourceCacheable, api$1_liveEnvironment as liveEnvironment, api$1_request as request, readDataFile as requestDataFile, api$1_requestRateLimitDelay as requestRateLimitDelay, rawRequest as requestRaw, api$1_response as response, denormalize as responseDenormalize };
|
|
75
74
|
}
|
|
76
75
|
|
|
77
|
-
declare const commandFlags: <T extends FlagInput>(flags: T, exclude?: Array<keyof T>) => T;
|
|
78
|
-
declare const allFlags: (command: Command.Class) => FlagInput;
|
|
76
|
+
declare const commandFlags: <T extends Interfaces.FlagInput>(flags: T, exclude?: Array<keyof T>) => T;
|
|
77
|
+
declare const allFlags: (command: Command.Class) => Interfaces.FlagInput;
|
|
79
78
|
type KeyVal = Record<string, string | number | boolean | undefined | null>;
|
|
80
79
|
type KeyValString = Record<string, string>;
|
|
81
80
|
type KeyValArray = Record<string, string[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercelayer/cli-core",
|
|
3
|
-
"version": "6.0.0-oclif4.
|
|
3
|
+
"version": "6.0.0-oclif4.6",
|
|
4
4
|
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Commerce Layer Javascript CLI core lib",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@babel/preset-typescript": "^7.28.5",
|
|
40
40
|
"@semantic-release/changelog": "^6.0.3",
|
|
41
41
|
"@semantic-release/git": "^10.0.1",
|
|
42
|
-
"@types/jest": "^
|
|
42
|
+
"@types/jest": "^30.0.0",
|
|
43
43
|
"@types/jsonwebtoken": "^9.0.10",
|
|
44
44
|
"@types/node": "^24.12.0",
|
|
45
45
|
"dotenv": "^16.6.1",
|