@kong-ui-public/entities-gateway-services 3.10.5 → 3.10.6-pr.2001.dfcf418cd.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/entities-gateway-services.es.js +1554 -657
- package/dist/entities-gateway-services.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/components/GatewayServiceForm.vue.d.ts +26 -0
- package/dist/types/components/GatewayServiceForm.vue.d.ts.map +1 -1
- package/dist/types/components/LegacyGatewayServiceForm.vue.d.ts +86 -0
- package/dist/types/components/LegacyGatewayServiceForm.vue.d.ts.map +1 -0
- package/dist/types/composables/index.d.ts +2 -0
- package/dist/types/composables/index.d.ts.map +1 -1
- package/dist/types/composables/useUrlValidators.d.ts +8 -0
- package/dist/types/composables/useUrlValidators.d.ts.map +1 -0
- package/dist/types/constants.d.ts +15 -0
- package/dist/types/constants.d.ts.map +1 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/types/gateway-service-form.d.ts +33 -2
- package/dist/types/types/gateway-service-form.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useUrlValidators.d.ts","sourceRoot":"","sources":["../../../src/composables/useUrlValidators.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAG7C,MAAM,CAAC,OAAO,UAAU,gBAAgB;yBAGV,MAAM,KAAG,MAAM;iCAuDP,MAAM,+BAA+B,YAAY,EAAE,KAAI,MAAM;yBAtBrE,MAAM,GAAG,IAAI,GAAG,SAAS,KAAG,MAAM;yBAvBlC,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,KAAG,MAAM;EAmExE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const KongAirService: {
|
|
2
|
+
name: string;
|
|
3
|
+
tags: never[];
|
|
4
|
+
protocol: string;
|
|
5
|
+
path: string;
|
|
6
|
+
read_timeout: number;
|
|
7
|
+
retries: number;
|
|
8
|
+
host: string;
|
|
9
|
+
connect_timeout: number;
|
|
10
|
+
ca_certificates: null;
|
|
11
|
+
client_certificate: null;
|
|
12
|
+
write_timeout: number;
|
|
13
|
+
port: number;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,cAAc;;;;;;;;;;;;;CAa1B,CAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import GatewayServiceList from './components/GatewayServiceList.vue';
|
|
2
|
-
import
|
|
2
|
+
import LegacyGatewayServiceForm from './components/LegacyGatewayServiceForm.vue';
|
|
3
3
|
import GatewayServiceConfigCard from './components/GatewayServiceConfigCard.vue';
|
|
4
|
-
|
|
4
|
+
import GatewayServiceForm from './components/GatewayServiceForm.vue';
|
|
5
|
+
export { GatewayServiceList, GatewayServiceForm, GatewayServiceConfigCard, LegacyGatewayServiceForm };
|
|
5
6
|
export * from './types';
|
|
6
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,qCAAqC,CAAA;AACpE,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,qCAAqC,CAAA;AACpE,OAAO,wBAAwB,MAAM,2CAA2C,CAAA;AAChF,OAAO,wBAAwB,MAAM,2CAA2C,CAAA;AAChF,OAAO,kBAAkB,MAAM,qCAAqC,CAAA;AAEpE,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,wBAAwB,EAAE,CAAA;AAErG,cAAc,SAAS,CAAA"}
|
|
@@ -27,17 +27,48 @@ export interface GatewayServiceFormFields {
|
|
|
27
27
|
tls_verify_value: boolean;
|
|
28
28
|
tags: string;
|
|
29
29
|
}
|
|
30
|
-
export interface
|
|
30
|
+
export interface FormFieldErrors {
|
|
31
|
+
host: string;
|
|
32
|
+
port: string;
|
|
33
|
+
path: string;
|
|
34
|
+
url: string;
|
|
35
|
+
tags: string;
|
|
36
|
+
retries: string;
|
|
37
|
+
connect_timeout: string;
|
|
38
|
+
write_timeout: string;
|
|
39
|
+
read_timeout: string;
|
|
40
|
+
client_certificate: string;
|
|
41
|
+
ca_certificates: string;
|
|
42
|
+
tls_verify_enabled: string;
|
|
43
|
+
tls_verify_value: string;
|
|
44
|
+
name: string;
|
|
45
|
+
}
|
|
46
|
+
export interface LegacyGatewayServiceFormState {
|
|
31
47
|
/** Form fields */
|
|
32
48
|
fields: GatewayServiceFormFields;
|
|
33
49
|
/** Form readonly state (only used when saving entity details) */
|
|
34
50
|
isReadonly: boolean;
|
|
35
|
-
/** The error
|
|
51
|
+
/** The Array of error messages to show */
|
|
36
52
|
errorMessage: string;
|
|
37
53
|
}
|
|
54
|
+
export interface GatewayServiceFormState {
|
|
55
|
+
/** Form fields */
|
|
56
|
+
fields: GatewayServiceFormFields;
|
|
57
|
+
/** Form readonly state (only used when saving entity details) */
|
|
58
|
+
isReadonly: boolean;
|
|
59
|
+
/** The Array of error messages to show */
|
|
60
|
+
errorMessages: string[];
|
|
61
|
+
/** The error Object is to show error on each form field */
|
|
62
|
+
formFieldErrors: FormFieldErrors;
|
|
63
|
+
}
|
|
38
64
|
export interface SelectItem {
|
|
39
65
|
label: string;
|
|
40
66
|
value: string | number;
|
|
41
67
|
selected?: boolean;
|
|
42
68
|
}
|
|
69
|
+
export interface ProtocolItem {
|
|
70
|
+
label: string;
|
|
71
|
+
value: string;
|
|
72
|
+
group: string;
|
|
73
|
+
}
|
|
43
74
|
//# sourceMappingURL=gateway-service-form.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gateway-service-form.d.ts","sourceRoot":"","sources":["../../../src/types/gateway-service-form.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAClD,OAAO,KAAK,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAEvG,yCAAyC;AACzC,MAAM,WAAW,+BAAgC,SAAQ,qBAAqB;IAC5E,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,8CAA8C;AAC9C,MAAM,WAAW,mCAAoC,SAAQ,yBAAyB;IACpF,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,EAAE,MAAM,CAAA;IACf,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAA;IAC3B,gBAAgB,EAAE,OAAO,CAAA;IACzB,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,uBAAuB;IACtC,kBAAkB;IAClB,MAAM,EAAE,wBAAwB,CAAA;IAChC,iEAAiE;IACjE,UAAU,EAAE,OAAO,CAAA;IACnB,
|
|
1
|
+
{"version":3,"file":"gateway-service-form.d.ts","sourceRoot":"","sources":["../../../src/types/gateway-service-form.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAClD,OAAO,KAAK,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAEvG,yCAAyC;AACzC,MAAM,WAAW,+BAAgC,SAAQ,qBAAqB;IAC5E,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,8CAA8C;AAC9C,MAAM,WAAW,mCAAoC,SAAQ,yBAAyB;IACpF,mEAAmE;IACnE,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,EAAE,MAAM,CAAA;IACf,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAA;IAC3B,gBAAgB,EAAE,OAAO,CAAA;IACzB,IAAI,EAAE,MAAM,CAAA;CACb;AACD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAA;IACf,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,gBAAgB,EAAE,MAAM,CAAA;IACxB,IAAI,EAAC,MAAM,CAAA;CACZ;AAED,MAAM,WAAW,6BAA6B;IAC5C,kBAAkB;IAClB,MAAM,EAAE,wBAAwB,CAAA;IAChC,iEAAiE;IACjE,UAAU,EAAE,OAAO,CAAA;IACnB,2CAA2C;IAC3C,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,uBAAuB;IACtC,kBAAkB;IAClB,MAAM,EAAE,wBAAwB,CAAA;IAChC,iEAAiE;IACjE,UAAU,EAAE,OAAO,CAAA;IACnB,2CAA2C;IAC3C,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,2DAA2D;IAC3D,eAAe,EAAE,eAAe,CAAA;CACjC;AAGD,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-gateway-services",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.6-pr.2001.dfcf418cd.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-gateway-services.umd.js",
|
|
6
6
|
"module": "./dist/entities-gateway-services.es.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"axios": "^1.7.7",
|
|
27
27
|
"vue": ">= 3.3.13 < 4",
|
|
28
28
|
"vue-router": "^4.4.5",
|
|
29
|
-
"@kong-ui-public/entities-shared": "^3.19.
|
|
29
|
+
"@kong-ui-public/entities-shared": "^3.19.3-pr.2001.dfcf418cd.0",
|
|
30
30
|
"@kong-ui-public/i18n": "^2.2.10"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"axios": "^1.7.7",
|
|
37
37
|
"vue": "^3.5.13",
|
|
38
38
|
"vue-router": "^4.4.5",
|
|
39
|
-
"@kong-ui-public/entities-shared": "^3.19.
|
|
39
|
+
"@kong-ui-public/entities-shared": "^3.19.3-pr.2001.dfcf418cd.0",
|
|
40
40
|
"@kong-ui-public/i18n": "^2.2.10"
|
|
41
41
|
},
|
|
42
42
|
"repository": {
|