@meshery/schemas 1.2.9 → 1.2.11
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/cloudApi.d.mts +1691 -1516
- package/dist/cloudApi.d.ts +1691 -1516
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta1/support/Support.d.mts +90 -0
- package/dist/constructs/v1beta1/support/Support.d.ts +90 -0
- package/dist/constructs/v1beta1/support/Support.js +1 -0
- package/dist/constructs/v1beta1/support/Support.mjs +0 -0
- package/dist/constructs/v1beta1/support/SupportSchema.d.mts +7 -0
- package/dist/constructs/v1beta1/support/SupportSchema.d.ts +7 -0
- package/dist/constructs/v1beta1/support/SupportSchema.js +2 -0
- package/dist/constructs/v1beta1/support/SupportSchema.mjs +2 -0
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +10 -10
- package/dist/index.mjs +10 -10
- package/package.json +1 -1
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
interface paths {
|
|
6
|
+
"/api/integrations/support": {
|
|
7
|
+
post: operations["submitSupportRequest"];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
interface components {
|
|
11
|
+
schemas: {
|
|
12
|
+
/** @description Payload for submitting a help-and-support request. */
|
|
13
|
+
SupportRequest: {
|
|
14
|
+
/**
|
|
15
|
+
* Subject
|
|
16
|
+
* @description Concise and descriptive title for the support request.
|
|
17
|
+
*/
|
|
18
|
+
subject: string;
|
|
19
|
+
/**
|
|
20
|
+
* Description
|
|
21
|
+
* @description Detailed description of the issue or question.
|
|
22
|
+
*/
|
|
23
|
+
message: string;
|
|
24
|
+
/**
|
|
25
|
+
* Scope
|
|
26
|
+
* @description Category that best represents the nature of the inquiry.
|
|
27
|
+
* @enum {string}
|
|
28
|
+
*/
|
|
29
|
+
scope?: "Support" | "Community" | "Account" | "Commercial";
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
responses: {
|
|
33
|
+
/** Expired JWT token used or insufficient privilege */
|
|
34
|
+
401: {
|
|
35
|
+
content: {
|
|
36
|
+
"text/plain": string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
interface operations {
|
|
42
|
+
submitSupportRequest: {
|
|
43
|
+
responses: {
|
|
44
|
+
/** Support request submitted */
|
|
45
|
+
201: {
|
|
46
|
+
content: {
|
|
47
|
+
"application/json": {
|
|
48
|
+
message?: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
/** Invalid request format */
|
|
53
|
+
400: unknown;
|
|
54
|
+
/** Expired JWT token used or insufficient privilege */
|
|
55
|
+
401: {
|
|
56
|
+
content: {
|
|
57
|
+
"text/plain": string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
/** Internal server error */
|
|
61
|
+
500: unknown;
|
|
62
|
+
};
|
|
63
|
+
requestBody: {
|
|
64
|
+
content: {
|
|
65
|
+
"application/json": {
|
|
66
|
+
/**
|
|
67
|
+
* Subject
|
|
68
|
+
* @description Concise and descriptive title for the support request.
|
|
69
|
+
*/
|
|
70
|
+
subject: string;
|
|
71
|
+
/**
|
|
72
|
+
* Description
|
|
73
|
+
* @description Detailed description of the issue or question.
|
|
74
|
+
*/
|
|
75
|
+
message: string;
|
|
76
|
+
/**
|
|
77
|
+
* Scope
|
|
78
|
+
* @description Category that best represents the nature of the inquiry.
|
|
79
|
+
* @enum {string}
|
|
80
|
+
*/
|
|
81
|
+
scope?: "Support" | "Community" | "Account" | "Commercial";
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
interface external {
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export type { components, external, operations, paths };
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
interface paths {
|
|
6
|
+
"/api/integrations/support": {
|
|
7
|
+
post: operations["submitSupportRequest"];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
interface components {
|
|
11
|
+
schemas: {
|
|
12
|
+
/** @description Payload for submitting a help-and-support request. */
|
|
13
|
+
SupportRequest: {
|
|
14
|
+
/**
|
|
15
|
+
* Subject
|
|
16
|
+
* @description Concise and descriptive title for the support request.
|
|
17
|
+
*/
|
|
18
|
+
subject: string;
|
|
19
|
+
/**
|
|
20
|
+
* Description
|
|
21
|
+
* @description Detailed description of the issue or question.
|
|
22
|
+
*/
|
|
23
|
+
message: string;
|
|
24
|
+
/**
|
|
25
|
+
* Scope
|
|
26
|
+
* @description Category that best represents the nature of the inquiry.
|
|
27
|
+
* @enum {string}
|
|
28
|
+
*/
|
|
29
|
+
scope?: "Support" | "Community" | "Account" | "Commercial";
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
responses: {
|
|
33
|
+
/** Expired JWT token used or insufficient privilege */
|
|
34
|
+
401: {
|
|
35
|
+
content: {
|
|
36
|
+
"text/plain": string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
interface operations {
|
|
42
|
+
submitSupportRequest: {
|
|
43
|
+
responses: {
|
|
44
|
+
/** Support request submitted */
|
|
45
|
+
201: {
|
|
46
|
+
content: {
|
|
47
|
+
"application/json": {
|
|
48
|
+
message?: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
/** Invalid request format */
|
|
53
|
+
400: unknown;
|
|
54
|
+
/** Expired JWT token used or insufficient privilege */
|
|
55
|
+
401: {
|
|
56
|
+
content: {
|
|
57
|
+
"text/plain": string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
/** Internal server error */
|
|
61
|
+
500: unknown;
|
|
62
|
+
};
|
|
63
|
+
requestBody: {
|
|
64
|
+
content: {
|
|
65
|
+
"application/json": {
|
|
66
|
+
/**
|
|
67
|
+
* Subject
|
|
68
|
+
* @description Concise and descriptive title for the support request.
|
|
69
|
+
*/
|
|
70
|
+
subject: string;
|
|
71
|
+
/**
|
|
72
|
+
* Description
|
|
73
|
+
* @description Detailed description of the issue or question.
|
|
74
|
+
*/
|
|
75
|
+
message: string;
|
|
76
|
+
/**
|
|
77
|
+
* Scope
|
|
78
|
+
* @description Category that best represents the nature of the inquiry.
|
|
79
|
+
* @enum {string}
|
|
80
|
+
*/
|
|
81
|
+
scope?: "Support" | "Community" | "Account" | "Commercial";
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
interface external {
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export type { components, external, operations, paths };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
'use strict';var e={openapi:"3.0.0",info:{title:"Support",description:"OpenAPI schema for Meshery help-and-support request submission.",version:"v1beta1",contact:{name:"Meshery Maintainers",email:"maintainers@meshery.io",url:"https://meshery.io"},license:{name:"Apache 2.0",url:"https://www.apache.org/licenses/LICENSE-2.0.html"}},security:[{jwt:[]}],tags:[{name:"Support",description:"Operations related to help and support requests"}],paths:{"/api/integrations/support":{post:{"x-internal":["cloud"],tags:["Support"],summary:"Submit a support request",operationId:"submitSupportRequest",requestBody:{required:true,content:{"application/json":{schema:{type:"object",description:"Payload for submitting a help-and-support request.",required:["subject","message"],properties:{subject:{type:"string",title:"Subject",minLength:1,maxLength:255,description:"Concise and descriptive title for the support request."},message:{type:"string",title:"Description",minLength:10,description:"Detailed description of the issue or question."},scope:{type:"string",title:"Scope",enum:["Support","Community","Account","Commercial"],description:"Category that best represents the nature of the inquiry."}}}}}},responses:{201:{description:"Support request submitted",content:{"application/json":{schema:{type:"object",properties:{message:{type:"string"}}}}}},400:{description:"Invalid request format"},401:{description:"Expired JWT token used or insufficient privilege",content:{"text/plain":{schema:{type:"string"}}}},500:{description:"Internal server error"}}}}},components:{responses:{401:{description:"Expired JWT token used or insufficient privilege",content:{"text/plain":{schema:{type:"string"}}}}},securitySchemes:{jwt:{type:"http",scheme:"bearer",bearerFormat:"JWT"}},schemas:{SupportRequest:{type:"object",description:"Payload for submitting a help-and-support request.",required:["subject","message"],properties:{subject:{type:"string",title:"Subject",minLength:1,maxLength:255,description:"Concise and descriptive title for the support request."},message:{type:"string",title:"Description",minLength:10,description:"Detailed description of the issue or question."},scope:{type:"string",title:"Scope",enum:["Support","Community","Account","Commercial"],description:"Category that best represents the nature of the inquiry."}}}}}},t=e;
|
|
2
|
+
module.exports=t;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var e={openapi:"3.0.0",info:{title:"Support",description:"OpenAPI schema for Meshery help-and-support request submission.",version:"v1beta1",contact:{name:"Meshery Maintainers",email:"maintainers@meshery.io",url:"https://meshery.io"},license:{name:"Apache 2.0",url:"https://www.apache.org/licenses/LICENSE-2.0.html"}},security:[{jwt:[]}],tags:[{name:"Support",description:"Operations related to help and support requests"}],paths:{"/api/integrations/support":{post:{"x-internal":["cloud"],tags:["Support"],summary:"Submit a support request",operationId:"submitSupportRequest",requestBody:{required:true,content:{"application/json":{schema:{type:"object",description:"Payload for submitting a help-and-support request.",required:["subject","message"],properties:{subject:{type:"string",title:"Subject",minLength:1,maxLength:255,description:"Concise and descriptive title for the support request."},message:{type:"string",title:"Description",minLength:10,description:"Detailed description of the issue or question."},scope:{type:"string",title:"Scope",enum:["Support","Community","Account","Commercial"],description:"Category that best represents the nature of the inquiry."}}}}}},responses:{201:{description:"Support request submitted",content:{"application/json":{schema:{type:"object",properties:{message:{type:"string"}}}}}},400:{description:"Invalid request format"},401:{description:"Expired JWT token used or insufficient privilege",content:{"text/plain":{schema:{type:"string"}}}},500:{description:"Internal server error"}}}}},components:{responses:{401:{description:"Expired JWT token used or insufficient privilege",content:{"text/plain":{schema:{type:"string"}}}}},securitySchemes:{jwt:{type:"http",scheme:"bearer",bearerFormat:"JWT"}},schemas:{SupportRequest:{type:"object",description:"Payload for submitting a help-and-support request.",required:["subject","message"],properties:{subject:{type:"string",title:"Subject",minLength:1,maxLength:255,description:"Concise and descriptive title for the support request."},message:{type:"string",title:"Description",minLength:10,description:"Detailed description of the issue or question."},scope:{type:"string",title:"Scope",enum:["Support","Community","Account","Commercial"],description:"Category that best represents the nature of the inquiry."}}}}}},t=e;
|
|
2
|
+
export{t as default};
|
package/dist/index.d.mts
CHANGED
|
@@ -147,6 +147,8 @@ declare const GrafanaCredentialRjsfSchemaV1Beta1: RJSFSchema;
|
|
|
147
147
|
declare const GrafanaCredentialRjsfUiSchemaV1Beta1: UiSchema;
|
|
148
148
|
declare const PrometheusCredentialRjsfSchemaV1Beta1: RJSFSchema;
|
|
149
149
|
declare const PrometheusCredentialRjsfUiSchemaV1Beta1: UiSchema;
|
|
150
|
+
declare const SupportRequestRjsfSchemaV1Beta1: RJSFSchema;
|
|
151
|
+
declare const SupportRequestRjsfUiSchemaV1Beta1: UiSchema;
|
|
150
152
|
|
|
151
153
|
declare namespace v1alpha1 {
|
|
152
154
|
type CatalogData = components["schemas"]["CatalogData"];
|
|
@@ -195,4 +197,4 @@ declare namespace v1beta2 {
|
|
|
195
197
|
type Token = components$y["schemas"]["UserToken"];
|
|
196
198
|
}
|
|
197
199
|
|
|
198
|
-
export { CatalogPublishRjsfSchemaV1Beta2, CatalogPublishRjsfUiSchemaV1Beta2, ConnectionHelmCreateRjsfSchemaV1Beta3, ConnectionHelmCreateRjsfUiSchemaV1Beta3, DesignImportRjsfSchemaV1Beta3, DesignImportRjsfUiSchemaV1Beta3, EnvironmentCreateOrEditRjsfSchemaV1Beta3, EnvironmentCreateOrEditRjsfUiSchemaV1Beta3, FilterImportRjsfSchemaV1Beta3, FilterImportRjsfUiSchemaV1Beta3, GrafanaCredentialRjsfSchemaV1Beta1, GrafanaCredentialRjsfUiSchemaV1Beta1, KubernetesCredentialRjsfSchemaV1Beta1, KubernetesCredentialRjsfUiSchemaV1Beta1, ModelImportRjsfSchemaV1Beta2, ModelImportRjsfUiSchemaV1Beta2, PrometheusCredentialRjsfSchemaV1Beta1, PrometheusCredentialRjsfUiSchemaV1Beta1, WorkspaceCreateOrEditRjsfSchemaV1Beta3, WorkspaceCreateOrEditRjsfUiSchemaV1Beta3, v1alpha1, v1alpha2, v1beta1, v1beta2 };
|
|
200
|
+
export { CatalogPublishRjsfSchemaV1Beta2, CatalogPublishRjsfUiSchemaV1Beta2, ConnectionHelmCreateRjsfSchemaV1Beta3, ConnectionHelmCreateRjsfUiSchemaV1Beta3, DesignImportRjsfSchemaV1Beta3, DesignImportRjsfUiSchemaV1Beta3, EnvironmentCreateOrEditRjsfSchemaV1Beta3, EnvironmentCreateOrEditRjsfUiSchemaV1Beta3, FilterImportRjsfSchemaV1Beta3, FilterImportRjsfUiSchemaV1Beta3, GrafanaCredentialRjsfSchemaV1Beta1, GrafanaCredentialRjsfUiSchemaV1Beta1, KubernetesCredentialRjsfSchemaV1Beta1, KubernetesCredentialRjsfUiSchemaV1Beta1, ModelImportRjsfSchemaV1Beta2, ModelImportRjsfUiSchemaV1Beta2, PrometheusCredentialRjsfSchemaV1Beta1, PrometheusCredentialRjsfUiSchemaV1Beta1, SupportRequestRjsfSchemaV1Beta1, SupportRequestRjsfUiSchemaV1Beta1, WorkspaceCreateOrEditRjsfSchemaV1Beta3, WorkspaceCreateOrEditRjsfUiSchemaV1Beta3, v1alpha1, v1alpha2, v1beta1, v1beta2 };
|
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,8 @@ declare const GrafanaCredentialRjsfSchemaV1Beta1: RJSFSchema;
|
|
|
147
147
|
declare const GrafanaCredentialRjsfUiSchemaV1Beta1: UiSchema;
|
|
148
148
|
declare const PrometheusCredentialRjsfSchemaV1Beta1: RJSFSchema;
|
|
149
149
|
declare const PrometheusCredentialRjsfUiSchemaV1Beta1: UiSchema;
|
|
150
|
+
declare const SupportRequestRjsfSchemaV1Beta1: RJSFSchema;
|
|
151
|
+
declare const SupportRequestRjsfUiSchemaV1Beta1: UiSchema;
|
|
150
152
|
|
|
151
153
|
declare namespace v1alpha1 {
|
|
152
154
|
type CatalogData = components["schemas"]["CatalogData"];
|
|
@@ -195,4 +197,4 @@ declare namespace v1beta2 {
|
|
|
195
197
|
type Token = components$y["schemas"]["UserToken"];
|
|
196
198
|
}
|
|
197
199
|
|
|
198
|
-
export { CatalogPublishRjsfSchemaV1Beta2, CatalogPublishRjsfUiSchemaV1Beta2, ConnectionHelmCreateRjsfSchemaV1Beta3, ConnectionHelmCreateRjsfUiSchemaV1Beta3, DesignImportRjsfSchemaV1Beta3, DesignImportRjsfUiSchemaV1Beta3, EnvironmentCreateOrEditRjsfSchemaV1Beta3, EnvironmentCreateOrEditRjsfUiSchemaV1Beta3, FilterImportRjsfSchemaV1Beta3, FilterImportRjsfUiSchemaV1Beta3, GrafanaCredentialRjsfSchemaV1Beta1, GrafanaCredentialRjsfUiSchemaV1Beta1, KubernetesCredentialRjsfSchemaV1Beta1, KubernetesCredentialRjsfUiSchemaV1Beta1, ModelImportRjsfSchemaV1Beta2, ModelImportRjsfUiSchemaV1Beta2, PrometheusCredentialRjsfSchemaV1Beta1, PrometheusCredentialRjsfUiSchemaV1Beta1, WorkspaceCreateOrEditRjsfSchemaV1Beta3, WorkspaceCreateOrEditRjsfUiSchemaV1Beta3, v1alpha1, v1alpha2, v1beta1, v1beta2 };
|
|
200
|
+
export { CatalogPublishRjsfSchemaV1Beta2, CatalogPublishRjsfUiSchemaV1Beta2, ConnectionHelmCreateRjsfSchemaV1Beta3, ConnectionHelmCreateRjsfUiSchemaV1Beta3, DesignImportRjsfSchemaV1Beta3, DesignImportRjsfUiSchemaV1Beta3, EnvironmentCreateOrEditRjsfSchemaV1Beta3, EnvironmentCreateOrEditRjsfUiSchemaV1Beta3, FilterImportRjsfSchemaV1Beta3, FilterImportRjsfUiSchemaV1Beta3, GrafanaCredentialRjsfSchemaV1Beta1, GrafanaCredentialRjsfUiSchemaV1Beta1, KubernetesCredentialRjsfSchemaV1Beta1, KubernetesCredentialRjsfUiSchemaV1Beta1, ModelImportRjsfSchemaV1Beta2, ModelImportRjsfUiSchemaV1Beta2, PrometheusCredentialRjsfSchemaV1Beta1, PrometheusCredentialRjsfUiSchemaV1Beta1, SupportRequestRjsfSchemaV1Beta1, SupportRequestRjsfUiSchemaV1Beta1, WorkspaceCreateOrEditRjsfSchemaV1Beta3, WorkspaceCreateOrEditRjsfUiSchemaV1Beta3, v1alpha1, v1alpha2, v1beta1, v1beta2 };
|