ch-api-client-typescript2 5.79.27 → 5.79.39
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/lib/api/webhooks-api.d.ts +97 -0
- package/lib/api/webhooks-api.d.ts.map +1 -0
- package/lib/api/webhooks-api.js +225 -0
- package/lib/api.d.ts +1 -1
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -1
- package/lib/models/{devices-model.js → email-recipient.d.ts} +20 -4
- package/lib/models/email-recipient.d.ts.map +1 -0
- package/lib/models/index.d.ts +3 -5
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -5
- package/lib/models/zoho-deal-closed-won-webhook-command.d.ts +45 -0
- package/lib/models/zoho-deal-closed-won-webhook-command.d.ts.map +1 -0
- package/lib/models/zoho-deal-closed-won-webhook-pdf-data.d.ts +115 -0
- package/lib/models/zoho-deal-closed-won-webhook-pdf-data.d.ts.map +1 -0
- package/package.json +1 -1
- package/lib/api/devices-api.d.ts +0 -357
- package/lib/api/devices-api.d.ts.map +0 -1
- package/lib/api/devices-api.js +0 -641
- package/lib/models/create-device-command.d.ts +0 -62
- package/lib/models/create-device-command.d.ts.map +0 -1
- package/lib/models/device-item-model.d.ts +0 -56
- package/lib/models/device-item-model.d.ts.map +0 -1
- package/lib/models/device-model.d.ts +0 -62
- package/lib/models/device-model.d.ts.map +0 -1
- package/lib/models/devices-model.d.ts +0 -33
- package/lib/models/devices-model.d.ts.map +0 -1
- package/lib/models/update-device-command.d.ts +0 -49
- package/lib/models/update-device-command.d.ts.map +0 -1
- package/lib/models/update-device-command.js +0 -15
- /package/lib/models/{create-device-command.js → email-recipient.js} +0 -0
- /package/lib/models/{device-item-model.js → zoho-deal-closed-won-webhook-command.js} +0 -0
- /package/lib/models/{device-model.js → zoho-deal-closed-won-webhook-pdf-data.js} +0 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { ZohoDealClosedWonWebhookCommand } from '../models';
|
|
16
|
+
/**
|
|
17
|
+
* WebhooksApi - axios parameter creator
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export declare const WebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
24
|
+
* @param {string} [xCloudhospitalApiKey]
|
|
25
|
+
* @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
|
|
26
|
+
* @param {*} [options] Override http request option.
|
|
27
|
+
* @throws {RequiredError}
|
|
28
|
+
*/
|
|
29
|
+
apiV2WebhooksZohodealclosedwonPost: (xCloudhospitalApiKey?: string, zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* WebhooksApi - functional programming interface
|
|
33
|
+
* @export
|
|
34
|
+
*/
|
|
35
|
+
export declare const WebhooksApiFp: (configuration?: Configuration) => {
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
39
|
+
* @param {string} [xCloudhospitalApiKey]
|
|
40
|
+
* @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
|
|
41
|
+
* @param {*} [options] Override http request option.
|
|
42
|
+
* @throws {RequiredError}
|
|
43
|
+
*/
|
|
44
|
+
apiV2WebhooksZohodealclosedwonPost(xCloudhospitalApiKey?: string, zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* WebhooksApi - factory interface
|
|
48
|
+
* @export
|
|
49
|
+
*/
|
|
50
|
+
export declare const WebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
54
|
+
* @param {string} [xCloudhospitalApiKey]
|
|
55
|
+
* @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
|
|
56
|
+
* @param {*} [options] Override http request option.
|
|
57
|
+
* @throws {RequiredError}
|
|
58
|
+
*/
|
|
59
|
+
apiV2WebhooksZohodealclosedwonPost(xCloudhospitalApiKey?: string, zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand, options?: any): AxiosPromise<void>;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* Request parameters for apiV2WebhooksZohodealclosedwonPost operation in WebhooksApi.
|
|
63
|
+
* @export
|
|
64
|
+
* @interface WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest
|
|
65
|
+
*/
|
|
66
|
+
export interface WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest {
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof WebhooksApiApiV2WebhooksZohodealclosedwonPost
|
|
71
|
+
*/
|
|
72
|
+
readonly xCloudhospitalApiKey?: string;
|
|
73
|
+
/**
|
|
74
|
+
* paylaod
|
|
75
|
+
* @type {ZohoDealClosedWonWebhookCommand}
|
|
76
|
+
* @memberof WebhooksApiApiV2WebhooksZohodealclosedwonPost
|
|
77
|
+
*/
|
|
78
|
+
readonly zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* WebhooksApi - object-oriented interface
|
|
82
|
+
* @export
|
|
83
|
+
* @class WebhooksApi
|
|
84
|
+
* @extends {BaseAPI}
|
|
85
|
+
*/
|
|
86
|
+
export declare class WebhooksApi extends BaseAPI {
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
90
|
+
* @param {WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest} requestParameters Request parameters.
|
|
91
|
+
* @param {*} [options] Override http request option.
|
|
92
|
+
* @throws {RequiredError}
|
|
93
|
+
* @memberof WebhooksApi
|
|
94
|
+
*/
|
|
95
|
+
apiV2WebhooksZohodealclosedwonPost(requestParameters?: WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
96
|
+
}
|
|
97
|
+
//# sourceMappingURL=webhooks-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhooks-api.d.ts","sourceRoot":"","sources":["../../src/api/webhooks-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAI7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,WAAW,CAAC;AAC5D;;;GAGG;AACH,eAAO,MAAM,4BAA4B,mBAA6B,aAAa;IAE3E;;;;;;;OAOG;gEAC+D,MAAM,oCAAoC,+BAA+B,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;CAgC3M,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,mBAA4B,aAAa;IAG3D;;;;;;;OAOG;8DAC6D,MAAM,oCAAoC,+BAA+B,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,IAAI,CAAC,CAAC;CAK1P,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG3G;;;;;;;OAOG;8DACuD,MAAM,oCAAoC,+BAA+B,YAAY,GAAG,GAAG,YAAY,CAAC,IAAI,CAAC;CAI9K,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,oDAAoD;IACjE;;;;OAIG;IACH,QAAQ,CAAC,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,CAAC,+BAA+B,CAAC,EAAE,+BAA+B,CAAA;CAC7E;AAED;;;;;GAKG;AACH,qBAAa,WAAY,SAAQ,OAAO;IACpC;;;;;;;OAOG;IACI,kCAAkC,CAAC,iBAAiB,GAAE,oDAAyD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGvJ"}
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
var __assign = (this && this.__assign) || function () {
|
|
31
|
+
__assign = Object.assign || function(t) {
|
|
32
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
33
|
+
s = arguments[i];
|
|
34
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
35
|
+
t[p] = s[p];
|
|
36
|
+
}
|
|
37
|
+
return t;
|
|
38
|
+
};
|
|
39
|
+
return __assign.apply(this, arguments);
|
|
40
|
+
};
|
|
41
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
42
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
43
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
44
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
45
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
46
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
47
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
52
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
|
+
function step(op) {
|
|
55
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
56
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
57
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
58
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
59
|
+
switch (op[0]) {
|
|
60
|
+
case 0: case 1: t = op; break;
|
|
61
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
62
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
63
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
64
|
+
default:
|
|
65
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
66
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
67
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
68
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
69
|
+
if (t[2]) _.ops.pop();
|
|
70
|
+
_.trys.pop(); continue;
|
|
71
|
+
}
|
|
72
|
+
op = body.call(thisArg, _);
|
|
73
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
74
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
78
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
79
|
+
if (ar || !(i in from)) {
|
|
80
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
81
|
+
ar[i] = from[i];
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
|
+
};
|
|
86
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
87
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
88
|
+
};
|
|
89
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
90
|
+
exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiAxiosParamCreator = void 0;
|
|
91
|
+
var axios_1 = __importDefault(require("axios"));
|
|
92
|
+
// Some imports not used depending on template conditions
|
|
93
|
+
// @ts-ignore
|
|
94
|
+
var common_1 = require("../common");
|
|
95
|
+
// @ts-ignore
|
|
96
|
+
var base_1 = require("../base");
|
|
97
|
+
/**
|
|
98
|
+
* WebhooksApi - axios parameter creator
|
|
99
|
+
* @export
|
|
100
|
+
*/
|
|
101
|
+
var WebhooksApiAxiosParamCreator = function (configuration) {
|
|
102
|
+
var _this = this;
|
|
103
|
+
return {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
107
|
+
* @param {string} [xCloudhospitalApiKey]
|
|
108
|
+
* @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
apiV2WebhooksZohodealclosedwonPost: function (xCloudhospitalApiKey_1, zohoDealClosedWonWebhookCommand_1) {
|
|
113
|
+
var args_1 = [];
|
|
114
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
115
|
+
args_1[_i - 2] = arguments[_i];
|
|
116
|
+
}
|
|
117
|
+
return __awaiter(_this, __spreadArray([xCloudhospitalApiKey_1, zohoDealClosedWonWebhookCommand_1], args_1, true), void 0, function (xCloudhospitalApiKey, zohoDealClosedWonWebhookCommand, options) {
|
|
118
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
119
|
+
if (options === void 0) { options = {}; }
|
|
120
|
+
return __generator(this, function (_a) {
|
|
121
|
+
localVarPath = "/api/v2/webhooks/zohodealclosedwon";
|
|
122
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
123
|
+
if (configuration) {
|
|
124
|
+
baseOptions = configuration.baseOptions;
|
|
125
|
+
}
|
|
126
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
127
|
+
localVarHeaderParameter = {};
|
|
128
|
+
localVarQueryParameter = {};
|
|
129
|
+
if (xCloudhospitalApiKey != null) {
|
|
130
|
+
localVarHeaderParameter['x-cloudhospital-api-key'] = String(xCloudhospitalApiKey);
|
|
131
|
+
}
|
|
132
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
133
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
134
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
135
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
136
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(zohoDealClosedWonWebhookCommand, localVarRequestOptions, configuration);
|
|
137
|
+
return [2 /*return*/, {
|
|
138
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
139
|
+
options: localVarRequestOptions,
|
|
140
|
+
}];
|
|
141
|
+
});
|
|
142
|
+
});
|
|
143
|
+
},
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
exports.WebhooksApiAxiosParamCreator = WebhooksApiAxiosParamCreator;
|
|
147
|
+
/**
|
|
148
|
+
* WebhooksApi - functional programming interface
|
|
149
|
+
* @export
|
|
150
|
+
*/
|
|
151
|
+
var WebhooksApiFp = function (configuration) {
|
|
152
|
+
var localVarAxiosParamCreator = (0, exports.WebhooksApiAxiosParamCreator)(configuration);
|
|
153
|
+
return {
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
157
|
+
* @param {string} [xCloudhospitalApiKey]
|
|
158
|
+
* @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
|
|
159
|
+
* @param {*} [options] Override http request option.
|
|
160
|
+
* @throws {RequiredError}
|
|
161
|
+
*/
|
|
162
|
+
apiV2WebhooksZohodealclosedwonPost: function (xCloudhospitalApiKey, zohoDealClosedWonWebhookCommand, options) {
|
|
163
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
164
|
+
var localVarAxiosArgs;
|
|
165
|
+
return __generator(this, function (_a) {
|
|
166
|
+
switch (_a.label) {
|
|
167
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2WebhooksZohodealclosedwonPost(xCloudhospitalApiKey, zohoDealClosedWonWebhookCommand, options)];
|
|
168
|
+
case 1:
|
|
169
|
+
localVarAxiosArgs = _a.sent();
|
|
170
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
});
|
|
174
|
+
},
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
exports.WebhooksApiFp = WebhooksApiFp;
|
|
178
|
+
/**
|
|
179
|
+
* WebhooksApi - factory interface
|
|
180
|
+
* @export
|
|
181
|
+
*/
|
|
182
|
+
var WebhooksApiFactory = function (configuration, basePath, axios) {
|
|
183
|
+
var localVarFp = (0, exports.WebhooksApiFp)(configuration);
|
|
184
|
+
return {
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
188
|
+
* @param {string} [xCloudhospitalApiKey]
|
|
189
|
+
* @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
|
|
190
|
+
* @param {*} [options] Override http request option.
|
|
191
|
+
* @throws {RequiredError}
|
|
192
|
+
*/
|
|
193
|
+
apiV2WebhooksZohodealclosedwonPost: function (xCloudhospitalApiKey, zohoDealClosedWonWebhookCommand, options) {
|
|
194
|
+
return localVarFp.apiV2WebhooksZohodealclosedwonPost(xCloudhospitalApiKey, zohoDealClosedWonWebhookCommand, options).then(function (request) { return request(axios, basePath); });
|
|
195
|
+
},
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
exports.WebhooksApiFactory = WebhooksApiFactory;
|
|
199
|
+
/**
|
|
200
|
+
* WebhooksApi - object-oriented interface
|
|
201
|
+
* @export
|
|
202
|
+
* @class WebhooksApi
|
|
203
|
+
* @extends {BaseAPI}
|
|
204
|
+
*/
|
|
205
|
+
var WebhooksApi = /** @class */ (function (_super) {
|
|
206
|
+
__extends(WebhooksApi, _super);
|
|
207
|
+
function WebhooksApi() {
|
|
208
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @summary Webhook endpoint for Zoho dealClosedWon workflow
|
|
213
|
+
* @param {WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest} requestParameters Request parameters.
|
|
214
|
+
* @param {*} [options] Override http request option.
|
|
215
|
+
* @throws {RequiredError}
|
|
216
|
+
* @memberof WebhooksApi
|
|
217
|
+
*/
|
|
218
|
+
WebhooksApi.prototype.apiV2WebhooksZohodealclosedwonPost = function (requestParameters, options) {
|
|
219
|
+
var _this = this;
|
|
220
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
221
|
+
return (0, exports.WebhooksApiFp)(this.configuration).apiV2WebhooksZohodealclosedwonPost(requestParameters.xCloudhospitalApiKey, requestParameters.zohoDealClosedWonWebhookCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
222
|
+
};
|
|
223
|
+
return WebhooksApi;
|
|
224
|
+
}(base_1.BaseAPI));
|
|
225
|
+
exports.WebhooksApi = WebhooksApi;
|
package/lib/api.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ export * from './api/countries-api';
|
|
|
24
24
|
export * from './api/curations-api';
|
|
25
25
|
export * from './api/currencies-api';
|
|
26
26
|
export * from './api/deals-api';
|
|
27
|
-
export * from './api/devices-api';
|
|
28
27
|
export * from './api/doctor-affiliations-api';
|
|
29
28
|
export * from './api/doctors-api';
|
|
30
29
|
export * from './api/external-api';
|
|
@@ -56,4 +55,5 @@ export * from './api/survey-forms-api';
|
|
|
56
55
|
export * from './api/survey-results-api';
|
|
57
56
|
export * from './api/tags-api';
|
|
58
57
|
export * from './api/vonage-users-api';
|
|
58
|
+
export * from './api/webhooks-api';
|
|
59
59
|
//# sourceMappingURL=api.d.ts.map
|
package/lib/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC"}
|
package/lib/api.js
CHANGED
|
@@ -42,7 +42,6 @@ __exportStar(require("./api/countries-api"), exports);
|
|
|
42
42
|
__exportStar(require("./api/curations-api"), exports);
|
|
43
43
|
__exportStar(require("./api/currencies-api"), exports);
|
|
44
44
|
__exportStar(require("./api/deals-api"), exports);
|
|
45
|
-
__exportStar(require("./api/devices-api"), exports);
|
|
46
45
|
__exportStar(require("./api/doctor-affiliations-api"), exports);
|
|
47
46
|
__exportStar(require("./api/doctors-api"), exports);
|
|
48
47
|
__exportStar(require("./api/external-api"), exports);
|
|
@@ -74,3 +73,4 @@ __exportStar(require("./api/survey-forms-api"), exports);
|
|
|
74
73
|
__exportStar(require("./api/survey-results-api"), exports);
|
|
75
74
|
__exportStar(require("./api/tags-api"), exports);
|
|
76
75
|
__exportStar(require("./api/vonage-users-api"), exports);
|
|
76
|
+
__exportStar(require("./api/webhooks-api"), exports);
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
1
|
/**
|
|
5
2
|
* CloudHospital Api
|
|
6
3
|
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
@@ -12,4 +9,23 @@
|
|
|
12
9
|
* https://openapi-generator.tech
|
|
13
10
|
* Do not edit the class manually.
|
|
14
11
|
*/
|
|
15
|
-
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface EmailRecipient
|
|
16
|
+
*/
|
|
17
|
+
export interface EmailRecipient {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EmailRecipient
|
|
22
|
+
*/
|
|
23
|
+
'name'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EmailRecipient
|
|
28
|
+
*/
|
|
29
|
+
'email'?: string | null;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=email-recipient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"email-recipient.d.ts","sourceRoot":"","sources":["../../src/models/email-recipient.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B"}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -79,7 +79,6 @@ export * from './country-model';
|
|
|
79
79
|
export * from './create-appointment-command';
|
|
80
80
|
export * from './create-call-history-command';
|
|
81
81
|
export * from './create-cors-command';
|
|
82
|
-
export * from './create-device-command';
|
|
83
82
|
export * from './create-form-result-command';
|
|
84
83
|
export * from './create-media-command';
|
|
85
84
|
export * from './create-patient-command';
|
|
@@ -115,9 +114,6 @@ export * from './deals-model';
|
|
|
115
114
|
export * from './deals-simple-model';
|
|
116
115
|
export * from './department-document-model';
|
|
117
116
|
export * from './department-sub-document-model';
|
|
118
|
-
export * from './device-item-model';
|
|
119
|
-
export * from './device-model';
|
|
120
|
-
export * from './devices-model';
|
|
121
117
|
export * from './doctor-affiliation-item-model';
|
|
122
118
|
export * from './doctor-affiliation-model';
|
|
123
119
|
export * from './doctor-affiliation-translation-document-model';
|
|
@@ -148,6 +144,7 @@ export * from './doctor-specialty-sub-document-model';
|
|
|
148
144
|
export * from './doctor-specialty-translation-item-document-model';
|
|
149
145
|
export * from './doctors-model';
|
|
150
146
|
export * from './doctors-simple-model';
|
|
147
|
+
export * from './email-recipient';
|
|
151
148
|
export * from './evic-cache-command';
|
|
152
149
|
export * from './facebook-user-data-deletion-response-model';
|
|
153
150
|
export * from './faq-categories-model';
|
|
@@ -371,7 +368,6 @@ export * from './translation-document-model';
|
|
|
371
368
|
export * from './translation-item-document-model';
|
|
372
369
|
export * from './update-appointment-command';
|
|
373
370
|
export * from './update-call-history-command';
|
|
374
|
-
export * from './update-device-command';
|
|
375
371
|
export * from './update-media-command';
|
|
376
372
|
export * from './update-patient-command';
|
|
377
373
|
export * from './update-profile-command';
|
|
@@ -392,4 +388,6 @@ export * from './vonage-user';
|
|
|
392
388
|
export * from './web-app-metadata-model';
|
|
393
389
|
export * from './working-day-item-model';
|
|
394
390
|
export * from './working-day-model';
|
|
391
|
+
export * from './zoho-deal-closed-won-webhook-command';
|
|
392
|
+
export * from './zoho-deal-closed-won-webhook-pdf-data';
|
|
395
393
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0CAA0C,CAAC;AACzD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sBAAsB,CAAC;AACrC,cAAc,oCAAoC,CAAC;AACnD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,yCAAyC,CAAC;AACxD,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mCAAmC,CAAC;AAClD,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AACxC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iBAAiB,CAAC;AAChC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|
package/lib/models/index.js
CHANGED
|
@@ -95,7 +95,6 @@ __exportStar(require("./country-model"), exports);
|
|
|
95
95
|
__exportStar(require("./create-appointment-command"), exports);
|
|
96
96
|
__exportStar(require("./create-call-history-command"), exports);
|
|
97
97
|
__exportStar(require("./create-cors-command"), exports);
|
|
98
|
-
__exportStar(require("./create-device-command"), exports);
|
|
99
98
|
__exportStar(require("./create-form-result-command"), exports);
|
|
100
99
|
__exportStar(require("./create-media-command"), exports);
|
|
101
100
|
__exportStar(require("./create-patient-command"), exports);
|
|
@@ -131,9 +130,6 @@ __exportStar(require("./deals-model"), exports);
|
|
|
131
130
|
__exportStar(require("./deals-simple-model"), exports);
|
|
132
131
|
__exportStar(require("./department-document-model"), exports);
|
|
133
132
|
__exportStar(require("./department-sub-document-model"), exports);
|
|
134
|
-
__exportStar(require("./device-item-model"), exports);
|
|
135
|
-
__exportStar(require("./device-model"), exports);
|
|
136
|
-
__exportStar(require("./devices-model"), exports);
|
|
137
133
|
__exportStar(require("./doctor-affiliation-item-model"), exports);
|
|
138
134
|
__exportStar(require("./doctor-affiliation-model"), exports);
|
|
139
135
|
__exportStar(require("./doctor-affiliation-translation-document-model"), exports);
|
|
@@ -164,6 +160,7 @@ __exportStar(require("./doctor-specialty-sub-document-model"), exports);
|
|
|
164
160
|
__exportStar(require("./doctor-specialty-translation-item-document-model"), exports);
|
|
165
161
|
__exportStar(require("./doctors-model"), exports);
|
|
166
162
|
__exportStar(require("./doctors-simple-model"), exports);
|
|
163
|
+
__exportStar(require("./email-recipient"), exports);
|
|
167
164
|
__exportStar(require("./evic-cache-command"), exports);
|
|
168
165
|
__exportStar(require("./facebook-user-data-deletion-response-model"), exports);
|
|
169
166
|
__exportStar(require("./faq-categories-model"), exports);
|
|
@@ -387,7 +384,6 @@ __exportStar(require("./translation-document-model"), exports);
|
|
|
387
384
|
__exportStar(require("./translation-item-document-model"), exports);
|
|
388
385
|
__exportStar(require("./update-appointment-command"), exports);
|
|
389
386
|
__exportStar(require("./update-call-history-command"), exports);
|
|
390
|
-
__exportStar(require("./update-device-command"), exports);
|
|
391
387
|
__exportStar(require("./update-media-command"), exports);
|
|
392
388
|
__exportStar(require("./update-patient-command"), exports);
|
|
393
389
|
__exportStar(require("./update-profile-command"), exports);
|
|
@@ -408,3 +404,5 @@ __exportStar(require("./vonage-user"), exports);
|
|
|
408
404
|
__exportStar(require("./web-app-metadata-model"), exports);
|
|
409
405
|
__exportStar(require("./working-day-item-model"), exports);
|
|
410
406
|
__exportStar(require("./working-day-model"), exports);
|
|
407
|
+
__exportStar(require("./zoho-deal-closed-won-webhook-command"), exports);
|
|
408
|
+
__exportStar(require("./zoho-deal-closed-won-webhook-pdf-data"), exports);
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { EmailRecipient } from './email-recipient';
|
|
13
|
+
import { ZohoDealClosedWonWebhookPdfData } from './zoho-deal-closed-won-webhook-pdf-data';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ZohoDealClosedWonWebhookCommand
|
|
18
|
+
*/
|
|
19
|
+
export interface ZohoDealClosedWonWebhookCommand {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof ZohoDealClosedWonWebhookCommand
|
|
24
|
+
*/
|
|
25
|
+
'$type'?: string | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ZohoDealClosedWonWebhookPdfData}
|
|
29
|
+
* @memberof ZohoDealClosedWonWebhookCommand
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ZohoDealClosedWonWebhookPdfData;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof ZohoDealClosedWonWebhookCommand
|
|
36
|
+
*/
|
|
37
|
+
'recordId'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Array<EmailRecipient>}
|
|
41
|
+
* @memberof ZohoDealClosedWonWebhookCommand
|
|
42
|
+
*/
|
|
43
|
+
'recipients'?: Array<EmailRecipient> | null;
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=zoho-deal-closed-won-webhook-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zoho-deal-closed-won-webhook-command.d.ts","sourceRoot":"","sources":["../../src/models/zoho-deal-closed-won-webhook-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAGnD,OAAO,EAAE,+BAA+B,EAAE,MAAM,yCAAyC,CAAC;AAE1F;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,MAAM,CAAC,EAAE,+BAA+B,CAAC;IACzC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;CAC/C"}
|