@kong-ui-public/entities-gateway-services 3.8.2-pr.1654.df98653f.0 → 3.8.2-pr.1660.342ed593.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/types/components/GatewayServiceConfigCard.vue.d.ts +5 -5
- package/dist/types/components/GatewayServiceForm.vue.d.ts +6 -6
- package/dist/types/components/GatewayServiceList.vue.d.ts +5 -5
- package/dist/types/types/gateway-service-config-card.d.ts +2 -2
- package/dist/types/types/gateway-service-config-card.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -2,7 +2,7 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
import type { AxiosError } from 'axios';
|
|
3
3
|
import type { KongManagerGatewayServiceEntityConfig, KonnectGatewayServiceEntityConfig } from '../types';
|
|
4
4
|
import '@kong-ui-public/entities-shared/dist/style.css';
|
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
|
5
|
+
declare const _default: import("vue").DefineComponent<{
|
|
6
6
|
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
7
7
|
config: {
|
|
8
8
|
type: PropType<KonnectGatewayServiceEntityConfig | KongManagerGatewayServiceEntityConfig>;
|
|
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
-
}
|
|
35
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
36
|
loading: (isLoading: boolean) => void;
|
|
37
37
|
"fetch:error": (error: AxiosError<unknown, any>) => void;
|
|
38
38
|
"fetch:success": (data: Record<string, any>) => void;
|
|
@@ -66,14 +66,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
66
|
type: BooleanConstructor;
|
|
67
67
|
default: boolean;
|
|
68
68
|
};
|
|
69
|
-
}>> &
|
|
69
|
+
}>> & {
|
|
70
70
|
onLoading?: ((isLoading: boolean) => any) | undefined;
|
|
71
71
|
"onFetch:error"?: ((error: AxiosError<unknown, any>) => any) | undefined;
|
|
72
72
|
"onFetch:success"?: ((data: Record<string, any>) => any) | undefined;
|
|
73
|
-
}
|
|
73
|
+
}, {
|
|
74
74
|
configCardDoc: string;
|
|
75
75
|
hideTitle: boolean;
|
|
76
76
|
enableTerraform: boolean;
|
|
77
|
-
}, {}
|
|
77
|
+
}, {}>;
|
|
78
78
|
export default _default;
|
|
79
79
|
//# sourceMappingURL=GatewayServiceConfigCard.vue.d.ts.map
|
|
@@ -2,7 +2,7 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
import type { AxiosResponse } from 'axios';
|
|
3
3
|
import type { KonnectGatewayServiceFormConfig, KongManagerGatewayServiceFormConfig } from '../types';
|
|
4
4
|
import '@kong-ui-public/entities-shared/dist/style.css';
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
6
6
|
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
7
7
|
config: {
|
|
8
8
|
type: PropType<KonnectGatewayServiceFormConfig | KongManagerGatewayServiceFormConfig>;
|
|
@@ -29,13 +29,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
29
29
|
type: BooleanConstructor;
|
|
30
30
|
default: boolean;
|
|
31
31
|
};
|
|
32
|
-
}
|
|
32
|
+
}, {
|
|
33
33
|
validateUrl: () => void;
|
|
34
34
|
getPayload: import("vue").ComputedRef<Record<string, any>>;
|
|
35
35
|
saveFormData: () => Promise<AxiosResponse<any, any> | undefined>;
|
|
36
36
|
canSubmit: import("vue").ComputedRef<boolean>;
|
|
37
37
|
initForm: (data: Record<string, any>) => void;
|
|
38
|
-
},
|
|
38
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
39
|
update: (data: Record<string, any>) => void;
|
|
40
40
|
error: (error: any) => void;
|
|
41
41
|
"url-valid:success": () => void;
|
|
@@ -69,18 +69,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
69
69
|
type: BooleanConstructor;
|
|
70
70
|
default: boolean;
|
|
71
71
|
};
|
|
72
|
-
}>> &
|
|
72
|
+
}>> & {
|
|
73
73
|
onError?: ((error: any) => any) | undefined;
|
|
74
74
|
onLoading?: ((isLoading: boolean) => any) | undefined;
|
|
75
75
|
onUpdate?: ((data: Record<string, any>) => any) | undefined;
|
|
76
76
|
"onUrl-valid:success"?: (() => any) | undefined;
|
|
77
77
|
"onUrl-valid:error"?: ((error: string) => any) | undefined;
|
|
78
78
|
"onModel-updated"?: ((val: Record<string, any>) => any) | undefined;
|
|
79
|
-
}
|
|
79
|
+
}, {
|
|
80
80
|
enableTerraform: boolean;
|
|
81
81
|
gatewayServiceId: string;
|
|
82
82
|
hideSectionsInfo: boolean;
|
|
83
|
-
}, {}
|
|
83
|
+
}, {}>, {
|
|
84
84
|
"form-actions"?(_: {
|
|
85
85
|
canSubmit: boolean;
|
|
86
86
|
cancel: () => void;
|
|
@@ -2,7 +2,7 @@ import type { PropType } from 'vue';
|
|
|
2
2
|
import type { AxiosError } from 'axios';
|
|
3
3
|
import type { KongManagerGatewayServiceListConfig, KonnectGatewayServiceListConfig, EntityRow, CopyEventPayload } from '../types';
|
|
4
4
|
import '@kong-ui-public/entities-shared/dist/style.css';
|
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
|
5
|
+
declare const _default: import("vue").DefineComponent<{
|
|
6
6
|
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
7
7
|
config: {
|
|
8
8
|
type: PropType<KonnectGatewayServiceListConfig | KongManagerGatewayServiceListConfig>;
|
|
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
47
47
|
type: BooleanConstructor;
|
|
48
48
|
default: boolean;
|
|
49
49
|
};
|
|
50
|
-
}
|
|
50
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
51
51
|
error: (error: AxiosError<unknown, any>) => void;
|
|
52
52
|
"copy:success": (payload: CopyEventPayload) => void;
|
|
53
53
|
"copy:error": (payload: CopyEventPayload) => void;
|
|
@@ -98,13 +98,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
98
|
type: BooleanConstructor;
|
|
99
99
|
default: boolean;
|
|
100
100
|
};
|
|
101
|
-
}>> &
|
|
101
|
+
}>> & {
|
|
102
102
|
onError?: ((error: AxiosError<unknown, any>) => any) | undefined;
|
|
103
103
|
"onCopy:success"?: ((payload: CopyEventPayload) => any) | undefined;
|
|
104
104
|
"onCopy:error"?: ((payload: CopyEventPayload) => any) | undefined;
|
|
105
105
|
"onDelete:success"?: ((gatewayService: EntityRow) => any) | undefined;
|
|
106
106
|
"onToggle:success"?: ((gatewayService: EntityRow) => any) | undefined;
|
|
107
|
-
}
|
|
107
|
+
}, {
|
|
108
108
|
cacheIdentifier: string;
|
|
109
109
|
canCreate: () => boolean | Promise<boolean>;
|
|
110
110
|
canDelete: (row: EntityRow) => boolean | Promise<boolean>;
|
|
@@ -112,6 +112,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
112
112
|
canRetrieve: (row: EntityRow) => boolean | Promise<boolean>;
|
|
113
113
|
useActionOutside: boolean;
|
|
114
114
|
isServerless: boolean;
|
|
115
|
-
}, {}
|
|
115
|
+
}, {}>;
|
|
116
116
|
export default _default;
|
|
117
117
|
//# sourceMappingURL=GatewayServiceList.vue.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type { KonnectBaseEntityConfig, KongManagerBaseEntityConfig,
|
|
1
|
+
import type { KonnectBaseEntityConfig, KongManagerBaseEntityConfig, ConfigurationSchemaItem } from '@kong-ui-public/entities-shared';
|
|
2
2
|
/** Konnect GatewayService entity config */
|
|
3
3
|
export interface KonnectGatewayServiceEntityConfig extends KonnectBaseEntityConfig {
|
|
4
4
|
}
|
|
5
5
|
/** Kong Manager GatewayService entity config */
|
|
6
6
|
export interface KongManagerGatewayServiceEntityConfig extends KongManagerBaseEntityConfig {
|
|
7
7
|
}
|
|
8
|
-
export interface GatewayServiceConfigurationSchema
|
|
8
|
+
export interface GatewayServiceConfigurationSchema {
|
|
9
9
|
id: ConfigurationSchemaItem;
|
|
10
10
|
name: ConfigurationSchemaItem;
|
|
11
11
|
enabled: ConfigurationSchemaItem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gateway-service-config-card.d.ts","sourceRoot":"","sources":["../../../src/types/gateway-service-config-card.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,2BAA2B,EAAE,
|
|
1
|
+
{"version":3,"file":"gateway-service-config-card.d.ts","sourceRoot":"","sources":["../../../src/types/gateway-service-config-card.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,2BAA2B,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AAEpI,2CAA2C;AAC3C,MAAM,WAAW,iCAAkC,SAAQ,uBAAuB;CAAG;AAErF,gDAAgD;AAChD,MAAM,WAAW,qCAAsC,SAAQ,2BAA2B;CAAG;AAE7F,MAAM,WAAW,iCAAiC;IAEhD,EAAE,EAAE,uBAAuB,CAAA;IAC3B,IAAI,EAAE,uBAAuB,CAAA;IAC7B,OAAO,EAAE,uBAAuB,CAAA;IAChC,UAAU,EAAE,uBAAuB,CAAA;IACnC,UAAU,EAAE,uBAAuB,CAAA;IACnC,QAAQ,EAAE,uBAAuB,CAAA;IACjC,IAAI,EAAE,uBAAuB,CAAA;IAC7B,IAAI,EAAE,uBAAuB,CAAA;IAC7B,IAAI,EAAE,uBAAuB,CAAA;IAC7B,IAAI,EAAE,uBAAuB,CAAA;IAE7B,OAAO,EAAE,uBAAuB,CAAA;IAChC,eAAe,EAAE,uBAAuB,CAAA;IACxC,aAAa,EAAE,uBAAuB,CAAA;IACtC,YAAY,EAAE,uBAAuB,CAAA;IACrC,kBAAkB,EAAE,uBAAuB,CAAA;IAC3C,eAAe,EAAE,uBAAuB,CAAA;IACxC,UAAU,EAAE,uBAAuB,CAAA;IACnC,gBAAgB,EAAE,uBAAuB,CAAA;CAC1C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/entities-gateway-services",
|
|
3
|
-
"version": "3.8.2-pr.
|
|
3
|
+
"version": "3.8.2-pr.1660.342ed593.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/entities-gateway-services.umd.js",
|
|
6
6
|
"module": "./dist/entities-gateway-services.es.js",
|
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
"axios": "^1.6.8",
|
|
27
27
|
"vue": ">= 3.3.13 < 4",
|
|
28
28
|
"vue-router": "^4.3.3",
|
|
29
|
-
"@kong-ui-public/entities-shared": "^3.9.2-pr.
|
|
29
|
+
"@kong-ui-public/entities-shared": "^3.9.2-pr.1660.342ed593.0",
|
|
30
30
|
"@kong-ui-public/i18n": "^2.2.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@kong/design-tokens": "1.17.2",
|
|
34
34
|
"@kong/icons": "^1.15.2",
|
|
35
|
-
"@kong/kongponents": "9.8.
|
|
35
|
+
"@kong/kongponents": "9.8.3-pr.2405.bd1b6cc7a.0",
|
|
36
36
|
"axios": "^1.6.8",
|
|
37
|
-
"vue": "^3.
|
|
37
|
+
"vue": "^3.4.38",
|
|
38
38
|
"vue-router": "^4.4.5",
|
|
39
|
-
"@kong-ui-public/entities-shared": "^3.9.2-pr.
|
|
39
|
+
"@kong-ui-public/entities-shared": "^3.9.2-pr.1660.342ed593.0",
|
|
40
40
|
"@kong-ui-public/i18n": "^2.2.2"
|
|
41
41
|
},
|
|
42
42
|
"repository": {
|