@meshery/schemas 1.2.9 → 1.2.10
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/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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshery/schemas",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "<p style=\"text-align:center;\" align=\"center\"><a href=\"https://meshery.io\"><picture> <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/readme/meshery-logo-light-text-side.svg\"> <source media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/readme/meshery-logo-dark-text-side.svg\"> <img src=\"https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/readme/meshery-logo-dark-text-side.svg\" alt=\"Meshery Logo\" width=\"70%\" /></picture></a><br /><br /></p> <p align=\"center\"> <a href=\"https://hub.docker.com/r/meshery/meshery\" alt=\"Docker pulls\"> <img src=\"https://img.shields.io/docker/pulls/meshery/meshery.svg\" /></a> <a href=\"https://github.com/issues?q=is%3Aopen+is%3Aissue+archived%3Afalse+org%meshery+org%3Ameshery+org%3Aservice-mesh-performance+org%3Aservice-mesh-patterns+org%3A+label%3A%22help+wanted%22+\" alt=\"GitHub issues by-label\"> <img src=\"https://img.shields.io/github/issues/meshery/meshery/help%20wanted.svg?color=informational\" /></a> <a href=\"https://github.com/meshery/meshery/blob/master/LICENSE\" alt=\"LICENSE\"> <img src=\"https://img.shields.io/github/license/meshery/meshery?color=brightgreen\" /></a> <a href=\"https://artifacthub.io/packages/helm/meshery/meshery\" alt=\"Artifact Hub Meshery\"> <img src=\"https://img.shields.io/endpoint?color=brightgreen&label=Helm%20Chart&style=plastic&url=https%3A%2F%2Fartifacthub.io%2Fbadge%2Frepository%2Fartifact-hub\" /></a> <a href=\"https://goreportcard.com/report/github.com/meshery/meshery\" alt=\"Go Report Card\"> <img src=\"https://goreportcard.com/badge/github.com/meshery/meshery\" /></a> <a href=\"https://github.com/meshery/meshery/actions\" alt=\"Build Status\"> <img src=\"https://img.shields.io/github/actions/workflow/status/meshery/meshery/release-drafter.yml\" /></a> <a href=\"https://bestpractices.coreinfrastructure.org/projects/3564\" alt=\"CLI Best Practices\"> <img src=\"https://bestpractices.coreinfrastructure.org/projects/3564/badge\" /></a> <a href=\"http://discuss.meshery.io\" alt=\"Discuss Users\"> <img src=\"https://img.shields.io/discourse/users?label=discuss&logo=discourse&server=https%3A%2F%2Fdiscuss.meshery.io\" /></a> <a href=\"https://slack.meshery.io\" alt=\"Join Slack\"> <img src=\"https://img.shields.io/badge/Slack-@meshery.svg?logo=slack\" /></a> <a href=\"https://twitter.com/intent/follow?screen_name=mesheryio\" alt=\"Twitter Follow\"> <img src=\"https://img.shields.io/twitter/follow/mesheryio.svg?label=Follow+Meshery&style=social\" /></a> <a href=\"https://github.com/meshery/meshery/releases\" alt=\"Meshery Downloads\"> <img src=\"https://img.shields.io/github/downloads/meshery/meshery/total\" /></a> <!-- <a href=\"https://app.fossa.com/projects/git%2Bgithub.com%2Fmeshery%2Fmeshery?ref=badge_shield\" alt=\"License Scan Report\"> <img src=\"https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmeshery%2Fmeshery.svg?type=shield\"/></a> --> </p>",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|