@ketch-sdk/ketch-types 0.1.0 → 0.2.0
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/index.d.ts +5 -4
- package/package.json +1 -1
- package/src/index.ts +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -371,11 +371,11 @@ export interface GetBootstrapConfigurationRequest {
|
|
|
371
371
|
export interface GetFullConfigurationRequest {
|
|
372
372
|
organizationCode: string;
|
|
373
373
|
propertyCode: string;
|
|
374
|
-
environmentCode
|
|
375
|
-
hash
|
|
374
|
+
environmentCode?: string;
|
|
375
|
+
hash?: string;
|
|
376
376
|
deploymentID?: string;
|
|
377
|
-
jurisdictionCode
|
|
378
|
-
languageCode
|
|
377
|
+
jurisdictionCode?: string;
|
|
378
|
+
languageCode?: string;
|
|
379
379
|
}
|
|
380
380
|
/**
|
|
381
381
|
* GetPreferenceQRRequest
|
|
@@ -428,6 +428,7 @@ export interface Property {
|
|
|
428
428
|
code?: string;
|
|
429
429
|
name?: string;
|
|
430
430
|
platform?: string;
|
|
431
|
+
proxy?: string;
|
|
431
432
|
}
|
|
432
433
|
/**
|
|
433
434
|
* Environment
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@ketch-sdk/ketch-types", "version": "0.
|
|
1
|
+
{"name": "@ketch-sdk/ketch-types", "version": "0.2.0", "description": "Ketch Types", "types": "./dist/index.d.ts", "scripts": {"build": "ncc build --minify --license licenses.txt src/index.ts", "lint": "eslint src/**/*.ts", "test": "jest --runInBand --passWithNoTests", "format": "prettier --write \"**/*.{ts,tsx,yml,yaml}\"", "format-check": "prettier --check '**/*.ts'", "docs": "typedoc --githubPages true --excludeInternal src/index.ts"}, "repository": {"type": "git", "url": "git+https://github.com/ketch-sdk/ketch-types.git"}, "author": "Ketch Kloud, Inc. (https://www.ketch.com/)", "license": "MIT", "homepage": "https://github.com/ketch-sdk/ketch-types", "bugs": {"url": "https://github.com/ketch-sdk/ketch-types/issues"}, "devDependencies": {"@jest/globals": "^29.2.1", "@types/jest": "^29.2.0", "@typescript-eslint/eslint-plugin": "^5.40.1", "@typescript-eslint/parser": "^5.40.1", "@vercel/ncc": "^0.34.0", "eslint": "^8.26.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jest": "^27.1.3", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.2.1", "jest-environment-jsdom": "^29.2.1", "jest-junit": "^14.0.1", "prettier": "^2.7.1", "ts-jest": "^29.0.3", "typedoc": "^0.23.17", "typescript": "^4.8.4"}}
|
package/src/index.ts
CHANGED
|
@@ -428,11 +428,11 @@ export interface GetBootstrapConfigurationRequest {
|
|
|
428
428
|
export interface GetFullConfigurationRequest {
|
|
429
429
|
organizationCode: string
|
|
430
430
|
propertyCode: string
|
|
431
|
-
environmentCode
|
|
432
|
-
hash
|
|
431
|
+
environmentCode?: string
|
|
432
|
+
hash?: string
|
|
433
433
|
deploymentID?: string
|
|
434
|
-
jurisdictionCode
|
|
435
|
-
languageCode
|
|
434
|
+
jurisdictionCode?: string
|
|
435
|
+
languageCode?: string
|
|
436
436
|
}
|
|
437
437
|
|
|
438
438
|
/**
|
|
@@ -484,6 +484,7 @@ export interface Property {
|
|
|
484
484
|
code?: string
|
|
485
485
|
name?: string
|
|
486
486
|
platform?: string
|
|
487
|
+
proxy?: string
|
|
487
488
|
}
|
|
488
489
|
|
|
489
490
|
/**
|