@unified-api/typescript-sdk 1.0.34 → 1.0.35
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/sdk/models/operations/createtaskproject.d.ts +28 -0
- package/dist/sdk/models/operations/createtaskproject.js +95 -0
- package/dist/sdk/models/operations/createtasktask.d.ts +28 -0
- package/dist/sdk/models/operations/createtasktask.js +95 -0
- package/dist/sdk/models/operations/gettaskproject.d.ts +35 -0
- package/dist/sdk/models/operations/gettaskproject.js +99 -0
- package/dist/sdk/models/operations/gettasktask.d.ts +35 -0
- package/dist/sdk/models/operations/gettasktask.js +99 -0
- package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +5 -1
- package/dist/sdk/models/operations/getunifiedintegrationauth.js +4 -0
- package/dist/sdk/models/operations/index.d.ts +12 -0
- package/dist/sdk/models/operations/index.js +12 -0
- package/dist/sdk/models/operations/listtaskprojects.d.ts +44 -0
- package/dist/sdk/models/operations/listtaskprojects.js +123 -0
- package/dist/sdk/models/operations/listtasktasks.d.ts +45 -0
- package/dist/sdk/models/operations/listtasktasks.js +127 -0
- package/dist/sdk/models/operations/listunifiedconnections.d.ts +2 -1
- package/dist/sdk/models/operations/listunifiedconnections.js +1 -0
- package/dist/sdk/models/operations/listunifiedintegrations.d.ts +2 -1
- package/dist/sdk/models/operations/listunifiedintegrations.js +1 -0
- package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +2 -1
- package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +1 -0
- package/dist/sdk/models/operations/patchtaskproject.d.ts +32 -0
- package/dist/sdk/models/operations/patchtaskproject.js +99 -0
- package/dist/sdk/models/operations/patchtasktask.d.ts +32 -0
- package/dist/sdk/models/operations/patchtasktask.js +99 -0
- package/dist/sdk/models/operations/removetaskproject.d.ts +30 -0
- package/dist/sdk/models/operations/removetaskproject.js +71 -0
- package/dist/sdk/models/operations/removetasktask.d.ts +30 -0
- package/dist/sdk/models/operations/removetasktask.js +71 -0
- package/dist/sdk/models/operations/updatetaskproject.d.ts +32 -0
- package/dist/sdk/models/operations/updatetaskproject.js +99 -0
- package/dist/sdk/models/operations/updatetasktask.d.ts +32 -0
- package/dist/sdk/models/operations/updatetasktask.js +99 -0
- package/dist/sdk/models/shared/crmdeal.d.ts +2 -0
- package/dist/sdk/models/shared/crmdeal.js +10 -0
- package/dist/sdk/models/shared/crmpipeline.d.ts +2 -0
- package/dist/sdk/models/shared/crmpipeline.js +7 -0
- package/dist/sdk/models/shared/crmstage.d.ts +10 -0
- package/dist/sdk/models/shared/crmstage.js +83 -0
- package/dist/sdk/models/shared/genaicontent.d.ts +2 -2
- package/dist/sdk/models/shared/genaicontent.js +2 -2
- package/dist/sdk/models/shared/genaimodel.d.ts +1 -0
- package/dist/sdk/models/shared/genaimodel.js +5 -0
- package/dist/sdk/models/shared/index.d.ts +3 -0
- package/dist/sdk/models/shared/index.js +3 -0
- package/dist/sdk/models/shared/integrationsupport.d.ts +6 -0
- package/dist/sdk/models/shared/integrationsupport.js +12 -1
- package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +2 -1
- package/dist/sdk/models/shared/propertyconnectioncategories.js +1 -0
- package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +5 -1
- package/dist/sdk/models/shared/propertyconnectionpermissions.js +4 -0
- package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +2 -1
- package/dist/sdk/models/shared/propertyintegrationcategories.js +1 -0
- package/dist/sdk/models/shared/taskproject.d.ts +11 -0
- package/dist/sdk/models/shared/taskproject.js +88 -0
- package/dist/sdk/models/shared/tasktask.d.ts +24 -0
- package/dist/sdk/models/shared/tasktask.js +142 -0
- package/dist/sdk/models/shared/webhook.d.ts +3 -1
- package/dist/sdk/models/shared/webhook.js +2 -0
- package/dist/sdk/project.d.ts +31 -0
- package/dist/sdk/project.js +505 -0
- package/dist/sdk/sdk.d.ts +4 -0
- package/dist/sdk/sdk.js +7 -3
- package/dist/sdk/task.d.ts +55 -0
- package/dist/sdk/task.js +907 -0
- package/docs/sdk/models/operations/categories.md +2 -1
- package/docs/sdk/models/operations/createtaskprojectrequest.md +9 -0
- package/docs/sdk/models/operations/createtaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/createtasktaskrequest.md +9 -0
- package/docs/sdk/models/operations/createtasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/gettaskprojectrequest.md +10 -0
- package/docs/sdk/models/operations/gettaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/gettasktaskrequest.md +10 -0
- package/docs/sdk/models/operations/gettasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/listtaskprojectsrequest.md +16 -0
- package/docs/sdk/models/operations/listtaskprojectsresponse.md +11 -0
- package/docs/sdk/models/operations/listtasktasksrequest.md +17 -0
- package/docs/sdk/models/operations/listtasktasksresponse.md +11 -0
- package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +2 -1
- package/docs/sdk/models/operations/patchtaskprojectrequest.md +10 -0
- package/docs/sdk/models/operations/patchtaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/patchtasktaskrequest.md +10 -0
- package/docs/sdk/models/operations/patchtasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/queryparamcategories.md +2 -1
- package/docs/sdk/models/operations/removetaskprojectrequest.md +9 -0
- package/docs/sdk/models/operations/removetaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/removetasktaskrequest.md +9 -0
- package/docs/sdk/models/operations/removetasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/scopes.md +5 -1
- package/docs/sdk/models/operations/updatetaskprojectrequest.md +10 -0
- package/docs/sdk/models/operations/updatetaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/updatetasktaskrequest.md +10 -0
- package/docs/sdk/models/operations/updatetasktaskresponse.md +11 -0
- package/docs/sdk/models/shared/crmdeal.md +2 -0
- package/docs/sdk/models/shared/crmpipeline.md +1 -0
- package/docs/sdk/models/shared/crmstage.md +14 -0
- package/docs/sdk/models/shared/genaimodel.md +9 -8
- package/docs/sdk/models/shared/integrationsupport.md +1 -0
- package/docs/sdk/models/shared/listprojectid.md +10 -0
- package/docs/sdk/models/shared/objecttype.md +3 -1
- package/docs/sdk/models/shared/propertyconnectioncategories.md +2 -1
- package/docs/sdk/models/shared/propertyconnectionpermissions.md +5 -1
- package/docs/sdk/models/shared/propertyintegrationcategories.md +2 -1
- package/docs/sdk/models/shared/role.md +2 -2
- package/docs/sdk/models/shared/taskproject.md +15 -0
- package/docs/sdk/models/shared/tasktask.md +23 -0
- package/docs/sdk/models/shared/tasktaskstatus.md +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
|
+
import * as shared from "../../../sdk/models/shared";
|
|
3
|
+
import { AxiosResponse } from "axios";
|
|
4
|
+
export declare class CreateTaskProjectRequest extends SpeakeasyBase {
|
|
5
|
+
taskProject?: shared.TaskProject;
|
|
6
|
+
/**
|
|
7
|
+
* ID of the connection
|
|
8
|
+
*/
|
|
9
|
+
connectionId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class CreateTaskProjectResponse extends SpeakeasyBase {
|
|
12
|
+
/**
|
|
13
|
+
* HTTP response content type for this operation
|
|
14
|
+
*/
|
|
15
|
+
contentType: string;
|
|
16
|
+
/**
|
|
17
|
+
* HTTP response status code for this operation
|
|
18
|
+
*/
|
|
19
|
+
statusCode: number;
|
|
20
|
+
/**
|
|
21
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
22
|
+
*/
|
|
23
|
+
rawResponse: AxiosResponse;
|
|
24
|
+
/**
|
|
25
|
+
* Successful
|
|
26
|
+
*/
|
|
27
|
+
taskProject?: shared.TaskProject;
|
|
28
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __extends = (this && this.__extends) || (function () {
|
|
6
|
+
var extendStatics = function (d, b) {
|
|
7
|
+
extendStatics = Object.setPrototypeOf ||
|
|
8
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
9
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
10
|
+
return extendStatics(d, b);
|
|
11
|
+
};
|
|
12
|
+
return function (d, b) {
|
|
13
|
+
if (typeof b !== "function" && b !== null)
|
|
14
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
15
|
+
extendStatics(d, b);
|
|
16
|
+
function __() { this.constructor = d; }
|
|
17
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18
|
+
};
|
|
19
|
+
})();
|
|
20
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
23
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
24
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
}) : (function(o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
}));
|
|
31
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
33
|
+
}) : function(o, v) {
|
|
34
|
+
o["default"] = v;
|
|
35
|
+
});
|
|
36
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
37
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
38
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
39
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
40
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
41
|
+
};
|
|
42
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
43
|
+
if (mod && mod.__esModule) return mod;
|
|
44
|
+
var result = {};
|
|
45
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
__setModuleDefault(result, mod);
|
|
47
|
+
return result;
|
|
48
|
+
};
|
|
49
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
50
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
|
+
};
|
|
52
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
+
exports.CreateTaskProjectResponse = exports.CreateTaskProjectRequest = void 0;
|
|
54
|
+
var utils_1 = require("../../../internal/utils");
|
|
55
|
+
var shared = __importStar(require("../../../sdk/models/shared"));
|
|
56
|
+
var CreateTaskProjectRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(CreateTaskProjectRequest, _super);
|
|
58
|
+
function CreateTaskProjectRequest() {
|
|
59
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
|
+
}
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "request, media_type=application/json" }),
|
|
63
|
+
__metadata("design:type", shared.TaskProject)
|
|
64
|
+
], CreateTaskProjectRequest.prototype, "taskProject", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], CreateTaskProjectRequest.prototype, "connectionId", void 0);
|
|
69
|
+
return CreateTaskProjectRequest;
|
|
70
|
+
}(utils_1.SpeakeasyBase));
|
|
71
|
+
exports.CreateTaskProjectRequest = CreateTaskProjectRequest;
|
|
72
|
+
var CreateTaskProjectResponse = /** @class */ (function (_super) {
|
|
73
|
+
__extends(CreateTaskProjectResponse, _super);
|
|
74
|
+
function CreateTaskProjectResponse() {
|
|
75
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
76
|
+
}
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], CreateTaskProjectResponse.prototype, "contentType", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
83
|
+
__metadata("design:type", Number)
|
|
84
|
+
], CreateTaskProjectResponse.prototype, "statusCode", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
87
|
+
__metadata("design:type", Object)
|
|
88
|
+
], CreateTaskProjectResponse.prototype, "rawResponse", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
91
|
+
__metadata("design:type", shared.TaskProject)
|
|
92
|
+
], CreateTaskProjectResponse.prototype, "taskProject", void 0);
|
|
93
|
+
return CreateTaskProjectResponse;
|
|
94
|
+
}(utils_1.SpeakeasyBase));
|
|
95
|
+
exports.CreateTaskProjectResponse = CreateTaskProjectResponse;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
|
+
import * as shared from "../../../sdk/models/shared";
|
|
3
|
+
import { AxiosResponse } from "axios";
|
|
4
|
+
export declare class CreateTaskTaskRequest extends SpeakeasyBase {
|
|
5
|
+
taskTask?: shared.TaskTask;
|
|
6
|
+
/**
|
|
7
|
+
* ID of the connection
|
|
8
|
+
*/
|
|
9
|
+
connectionId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class CreateTaskTaskResponse extends SpeakeasyBase {
|
|
12
|
+
/**
|
|
13
|
+
* HTTP response content type for this operation
|
|
14
|
+
*/
|
|
15
|
+
contentType: string;
|
|
16
|
+
/**
|
|
17
|
+
* HTTP response status code for this operation
|
|
18
|
+
*/
|
|
19
|
+
statusCode: number;
|
|
20
|
+
/**
|
|
21
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
22
|
+
*/
|
|
23
|
+
rawResponse: AxiosResponse;
|
|
24
|
+
/**
|
|
25
|
+
* Successful
|
|
26
|
+
*/
|
|
27
|
+
taskTask?: shared.TaskTask;
|
|
28
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __extends = (this && this.__extends) || (function () {
|
|
6
|
+
var extendStatics = function (d, b) {
|
|
7
|
+
extendStatics = Object.setPrototypeOf ||
|
|
8
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
9
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
10
|
+
return extendStatics(d, b);
|
|
11
|
+
};
|
|
12
|
+
return function (d, b) {
|
|
13
|
+
if (typeof b !== "function" && b !== null)
|
|
14
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
15
|
+
extendStatics(d, b);
|
|
16
|
+
function __() { this.constructor = d; }
|
|
17
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18
|
+
};
|
|
19
|
+
})();
|
|
20
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
23
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
24
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
}) : (function(o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
}));
|
|
31
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
33
|
+
}) : function(o, v) {
|
|
34
|
+
o["default"] = v;
|
|
35
|
+
});
|
|
36
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
37
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
38
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
39
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
40
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
41
|
+
};
|
|
42
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
43
|
+
if (mod && mod.__esModule) return mod;
|
|
44
|
+
var result = {};
|
|
45
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
__setModuleDefault(result, mod);
|
|
47
|
+
return result;
|
|
48
|
+
};
|
|
49
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
50
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
|
+
};
|
|
52
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
+
exports.CreateTaskTaskResponse = exports.CreateTaskTaskRequest = void 0;
|
|
54
|
+
var utils_1 = require("../../../internal/utils");
|
|
55
|
+
var shared = __importStar(require("../../../sdk/models/shared"));
|
|
56
|
+
var CreateTaskTaskRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(CreateTaskTaskRequest, _super);
|
|
58
|
+
function CreateTaskTaskRequest() {
|
|
59
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
|
+
}
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "request, media_type=application/json" }),
|
|
63
|
+
__metadata("design:type", shared.TaskTask)
|
|
64
|
+
], CreateTaskTaskRequest.prototype, "taskTask", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], CreateTaskTaskRequest.prototype, "connectionId", void 0);
|
|
69
|
+
return CreateTaskTaskRequest;
|
|
70
|
+
}(utils_1.SpeakeasyBase));
|
|
71
|
+
exports.CreateTaskTaskRequest = CreateTaskTaskRequest;
|
|
72
|
+
var CreateTaskTaskResponse = /** @class */ (function (_super) {
|
|
73
|
+
__extends(CreateTaskTaskResponse, _super);
|
|
74
|
+
function CreateTaskTaskResponse() {
|
|
75
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
76
|
+
}
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], CreateTaskTaskResponse.prototype, "contentType", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
83
|
+
__metadata("design:type", Number)
|
|
84
|
+
], CreateTaskTaskResponse.prototype, "statusCode", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
87
|
+
__metadata("design:type", Object)
|
|
88
|
+
], CreateTaskTaskResponse.prototype, "rawResponse", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
91
|
+
__metadata("design:type", shared.TaskTask)
|
|
92
|
+
], CreateTaskTaskResponse.prototype, "taskTask", void 0);
|
|
93
|
+
return CreateTaskTaskResponse;
|
|
94
|
+
}(utils_1.SpeakeasyBase));
|
|
95
|
+
exports.CreateTaskTaskResponse = CreateTaskTaskResponse;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
|
+
import * as shared from "../../../sdk/models/shared";
|
|
3
|
+
import { AxiosResponse } from "axios";
|
|
4
|
+
export declare class GetTaskProjectRequest extends SpeakeasyBase {
|
|
5
|
+
/**
|
|
6
|
+
* ID of the connection
|
|
7
|
+
*/
|
|
8
|
+
connectionId: string;
|
|
9
|
+
/**
|
|
10
|
+
* Comma-delimited fields to return
|
|
11
|
+
*/
|
|
12
|
+
fields?: string[];
|
|
13
|
+
/**
|
|
14
|
+
* ID of the Project
|
|
15
|
+
*/
|
|
16
|
+
id: string;
|
|
17
|
+
}
|
|
18
|
+
export declare class GetTaskProjectResponse extends SpeakeasyBase {
|
|
19
|
+
/**
|
|
20
|
+
* HTTP response content type for this operation
|
|
21
|
+
*/
|
|
22
|
+
contentType: string;
|
|
23
|
+
/**
|
|
24
|
+
* HTTP response status code for this operation
|
|
25
|
+
*/
|
|
26
|
+
statusCode: number;
|
|
27
|
+
/**
|
|
28
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
29
|
+
*/
|
|
30
|
+
rawResponse: AxiosResponse;
|
|
31
|
+
/**
|
|
32
|
+
* Successful
|
|
33
|
+
*/
|
|
34
|
+
taskProject?: shared.TaskProject;
|
|
35
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __extends = (this && this.__extends) || (function () {
|
|
6
|
+
var extendStatics = function (d, b) {
|
|
7
|
+
extendStatics = Object.setPrototypeOf ||
|
|
8
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
9
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
10
|
+
return extendStatics(d, b);
|
|
11
|
+
};
|
|
12
|
+
return function (d, b) {
|
|
13
|
+
if (typeof b !== "function" && b !== null)
|
|
14
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
15
|
+
extendStatics(d, b);
|
|
16
|
+
function __() { this.constructor = d; }
|
|
17
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18
|
+
};
|
|
19
|
+
})();
|
|
20
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
23
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
24
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
}) : (function(o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
}));
|
|
31
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
33
|
+
}) : function(o, v) {
|
|
34
|
+
o["default"] = v;
|
|
35
|
+
});
|
|
36
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
37
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
38
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
39
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
40
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
41
|
+
};
|
|
42
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
43
|
+
if (mod && mod.__esModule) return mod;
|
|
44
|
+
var result = {};
|
|
45
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
__setModuleDefault(result, mod);
|
|
47
|
+
return result;
|
|
48
|
+
};
|
|
49
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
50
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
|
+
};
|
|
52
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
+
exports.GetTaskProjectResponse = exports.GetTaskProjectRequest = void 0;
|
|
54
|
+
var utils_1 = require("../../../internal/utils");
|
|
55
|
+
var shared = __importStar(require("../../../sdk/models/shared"));
|
|
56
|
+
var GetTaskProjectRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(GetTaskProjectRequest, _super);
|
|
58
|
+
function GetTaskProjectRequest() {
|
|
59
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
|
+
}
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], GetTaskProjectRequest.prototype, "connectionId", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=fields" }),
|
|
67
|
+
__metadata("design:type", Array)
|
|
68
|
+
], GetTaskProjectRequest.prototype, "fields", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=id" }),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], GetTaskProjectRequest.prototype, "id", void 0);
|
|
73
|
+
return GetTaskProjectRequest;
|
|
74
|
+
}(utils_1.SpeakeasyBase));
|
|
75
|
+
exports.GetTaskProjectRequest = GetTaskProjectRequest;
|
|
76
|
+
var GetTaskProjectResponse = /** @class */ (function (_super) {
|
|
77
|
+
__extends(GetTaskProjectResponse, _super);
|
|
78
|
+
function GetTaskProjectResponse() {
|
|
79
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
80
|
+
}
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], GetTaskProjectResponse.prototype, "contentType", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
87
|
+
__metadata("design:type", Number)
|
|
88
|
+
], GetTaskProjectResponse.prototype, "statusCode", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
91
|
+
__metadata("design:type", Object)
|
|
92
|
+
], GetTaskProjectResponse.prototype, "rawResponse", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
95
|
+
__metadata("design:type", shared.TaskProject)
|
|
96
|
+
], GetTaskProjectResponse.prototype, "taskProject", void 0);
|
|
97
|
+
return GetTaskProjectResponse;
|
|
98
|
+
}(utils_1.SpeakeasyBase));
|
|
99
|
+
exports.GetTaskProjectResponse = GetTaskProjectResponse;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { SpeakeasyBase } from "../../../internal/utils";
|
|
2
|
+
import * as shared from "../../../sdk/models/shared";
|
|
3
|
+
import { AxiosResponse } from "axios";
|
|
4
|
+
export declare class GetTaskTaskRequest extends SpeakeasyBase {
|
|
5
|
+
/**
|
|
6
|
+
* ID of the connection
|
|
7
|
+
*/
|
|
8
|
+
connectionId: string;
|
|
9
|
+
/**
|
|
10
|
+
* Comma-delimited fields to return
|
|
11
|
+
*/
|
|
12
|
+
fields?: string[];
|
|
13
|
+
/**
|
|
14
|
+
* ID of the Task
|
|
15
|
+
*/
|
|
16
|
+
id: string;
|
|
17
|
+
}
|
|
18
|
+
export declare class GetTaskTaskResponse extends SpeakeasyBase {
|
|
19
|
+
/**
|
|
20
|
+
* HTTP response content type for this operation
|
|
21
|
+
*/
|
|
22
|
+
contentType: string;
|
|
23
|
+
/**
|
|
24
|
+
* HTTP response status code for this operation
|
|
25
|
+
*/
|
|
26
|
+
statusCode: number;
|
|
27
|
+
/**
|
|
28
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
29
|
+
*/
|
|
30
|
+
rawResponse: AxiosResponse;
|
|
31
|
+
/**
|
|
32
|
+
* Successful
|
|
33
|
+
*/
|
|
34
|
+
taskTask?: shared.TaskTask;
|
|
35
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __extends = (this && this.__extends) || (function () {
|
|
6
|
+
var extendStatics = function (d, b) {
|
|
7
|
+
extendStatics = Object.setPrototypeOf ||
|
|
8
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
9
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
10
|
+
return extendStatics(d, b);
|
|
11
|
+
};
|
|
12
|
+
return function (d, b) {
|
|
13
|
+
if (typeof b !== "function" && b !== null)
|
|
14
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
15
|
+
extendStatics(d, b);
|
|
16
|
+
function __() { this.constructor = d; }
|
|
17
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18
|
+
};
|
|
19
|
+
})();
|
|
20
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
23
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
24
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
}) : (function(o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
}));
|
|
31
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
33
|
+
}) : function(o, v) {
|
|
34
|
+
o["default"] = v;
|
|
35
|
+
});
|
|
36
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
37
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
38
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
39
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
40
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
41
|
+
};
|
|
42
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
43
|
+
if (mod && mod.__esModule) return mod;
|
|
44
|
+
var result = {};
|
|
45
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
__setModuleDefault(result, mod);
|
|
47
|
+
return result;
|
|
48
|
+
};
|
|
49
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
50
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
51
|
+
};
|
|
52
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
+
exports.GetTaskTaskResponse = exports.GetTaskTaskRequest = void 0;
|
|
54
|
+
var utils_1 = require("../../../internal/utils");
|
|
55
|
+
var shared = __importStar(require("../../../sdk/models/shared"));
|
|
56
|
+
var GetTaskTaskRequest = /** @class */ (function (_super) {
|
|
57
|
+
__extends(GetTaskTaskRequest, _super);
|
|
58
|
+
function GetTaskTaskRequest() {
|
|
59
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
|
+
}
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], GetTaskTaskRequest.prototype, "connectionId", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=fields" }),
|
|
67
|
+
__metadata("design:type", Array)
|
|
68
|
+
], GetTaskTaskRequest.prototype, "fields", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=id" }),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], GetTaskTaskRequest.prototype, "id", void 0);
|
|
73
|
+
return GetTaskTaskRequest;
|
|
74
|
+
}(utils_1.SpeakeasyBase));
|
|
75
|
+
exports.GetTaskTaskRequest = GetTaskTaskRequest;
|
|
76
|
+
var GetTaskTaskResponse = /** @class */ (function (_super) {
|
|
77
|
+
__extends(GetTaskTaskResponse, _super);
|
|
78
|
+
function GetTaskTaskResponse() {
|
|
79
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
80
|
+
}
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], GetTaskTaskResponse.prototype, "contentType", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
87
|
+
__metadata("design:type", Number)
|
|
88
|
+
], GetTaskTaskResponse.prototype, "statusCode", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
91
|
+
__metadata("design:type", Object)
|
|
92
|
+
], GetTaskTaskResponse.prototype, "rawResponse", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
95
|
+
__metadata("design:type", shared.TaskTask)
|
|
96
|
+
], GetTaskTaskResponse.prototype, "taskTask", void 0);
|
|
97
|
+
return GetTaskTaskResponse;
|
|
98
|
+
}(utils_1.SpeakeasyBase));
|
|
99
|
+
exports.GetTaskTaskResponse = GetTaskTaskResponse;
|
|
@@ -88,7 +88,11 @@ export declare enum Scopes {
|
|
|
88
88
|
KmsPageRead = "kms_page_read",
|
|
89
89
|
KmsPageWrite = "kms_page_write",
|
|
90
90
|
KmsCommentRead = "kms_comment_read",
|
|
91
|
-
KmsCommentWrite = "kms_comment_write"
|
|
91
|
+
KmsCommentWrite = "kms_comment_write",
|
|
92
|
+
TaskProjectRead = "task_project_read",
|
|
93
|
+
TaskProjectWrite = "task_project_write",
|
|
94
|
+
TaskTaskRead = "task_task_read",
|
|
95
|
+
TaskTaskWrite = "task_task_write"
|
|
92
96
|
}
|
|
93
97
|
export declare class GetUnifiedIntegrationAuthRequest extends SpeakeasyBase {
|
|
94
98
|
env?: string;
|
|
@@ -119,6 +119,10 @@ var Scopes;
|
|
|
119
119
|
Scopes["KmsPageWrite"] = "kms_page_write";
|
|
120
120
|
Scopes["KmsCommentRead"] = "kms_comment_read";
|
|
121
121
|
Scopes["KmsCommentWrite"] = "kms_comment_write";
|
|
122
|
+
Scopes["TaskProjectRead"] = "task_project_read";
|
|
123
|
+
Scopes["TaskProjectWrite"] = "task_project_write";
|
|
124
|
+
Scopes["TaskTaskRead"] = "task_task_read";
|
|
125
|
+
Scopes["TaskTaskWrite"] = "task_task_write";
|
|
122
126
|
})(Scopes = exports.Scopes || (exports.Scopes = {}));
|
|
123
127
|
var GetUnifiedIntegrationAuthRequest = /** @class */ (function (_super) {
|
|
124
128
|
__extends(GetUnifiedIntegrationAuthRequest, _super);
|
|
@@ -32,6 +32,8 @@ export * from "./createpassthrough";
|
|
|
32
32
|
export * from "./createpaymentlink";
|
|
33
33
|
export * from "./createpaymentpayment";
|
|
34
34
|
export * from "./createstoragefile";
|
|
35
|
+
export * from "./createtaskproject";
|
|
36
|
+
export * from "./createtasktask";
|
|
35
37
|
export * from "./createticketingcustomer";
|
|
36
38
|
export * from "./createticketingnote";
|
|
37
39
|
export * from "./createticketingticket";
|
|
@@ -77,6 +79,8 @@ export * from "./getpaymentpayment";
|
|
|
77
79
|
export * from "./getpaymentpayout";
|
|
78
80
|
export * from "./getpaymentrefund";
|
|
79
81
|
export * from "./getstoragefile";
|
|
82
|
+
export * from "./gettaskproject";
|
|
83
|
+
export * from "./gettasktask";
|
|
80
84
|
export * from "./getticketingcustomer";
|
|
81
85
|
export * from "./getticketingnote";
|
|
82
86
|
export * from "./getticketingticket";
|
|
@@ -130,6 +134,8 @@ export * from "./listpaymentpayments";
|
|
|
130
134
|
export * from "./listpaymentpayouts";
|
|
131
135
|
export * from "./listpaymentrefunds";
|
|
132
136
|
export * from "./liststoragefiles";
|
|
137
|
+
export * from "./listtaskprojects";
|
|
138
|
+
export * from "./listtasktasks";
|
|
133
139
|
export * from "./listticketingcustomers";
|
|
134
140
|
export * from "./listticketingnotes";
|
|
135
141
|
export * from "./listticketingtickets";
|
|
@@ -175,6 +181,8 @@ export * from "./patchpassthrough";
|
|
|
175
181
|
export * from "./patchpaymentlink";
|
|
176
182
|
export * from "./patchpaymentpayment";
|
|
177
183
|
export * from "./patchstoragefile";
|
|
184
|
+
export * from "./patchtaskproject";
|
|
185
|
+
export * from "./patchtasktask";
|
|
178
186
|
export * from "./patchticketingcustomer";
|
|
179
187
|
export * from "./patchticketingnote";
|
|
180
188
|
export * from "./patchticketingticket";
|
|
@@ -214,6 +222,8 @@ export * from "./removepassthrough";
|
|
|
214
222
|
export * from "./removepaymentlink";
|
|
215
223
|
export * from "./removepaymentpayment";
|
|
216
224
|
export * from "./removestoragefile";
|
|
225
|
+
export * from "./removetaskproject";
|
|
226
|
+
export * from "./removetasktask";
|
|
217
227
|
export * from "./removeticketingcustomer";
|
|
218
228
|
export * from "./removeticketingnote";
|
|
219
229
|
export * from "./removeticketingticket";
|
|
@@ -253,6 +263,8 @@ export * from "./updatepassthrough";
|
|
|
253
263
|
export * from "./updatepaymentlink";
|
|
254
264
|
export * from "./updatepaymentpayment";
|
|
255
265
|
export * from "./updatestoragefile";
|
|
266
|
+
export * from "./updatetaskproject";
|
|
267
|
+
export * from "./updatetasktask";
|
|
256
268
|
export * from "./updateticketingcustomer";
|
|
257
269
|
export * from "./updateticketingnote";
|
|
258
270
|
export * from "./updateticketingticket";
|
|
@@ -51,6 +51,8 @@ __exportStar(require("./createpassthrough"), exports);
|
|
|
51
51
|
__exportStar(require("./createpaymentlink"), exports);
|
|
52
52
|
__exportStar(require("./createpaymentpayment"), exports);
|
|
53
53
|
__exportStar(require("./createstoragefile"), exports);
|
|
54
|
+
__exportStar(require("./createtaskproject"), exports);
|
|
55
|
+
__exportStar(require("./createtasktask"), exports);
|
|
54
56
|
__exportStar(require("./createticketingcustomer"), exports);
|
|
55
57
|
__exportStar(require("./createticketingnote"), exports);
|
|
56
58
|
__exportStar(require("./createticketingticket"), exports);
|
|
@@ -96,6 +98,8 @@ __exportStar(require("./getpaymentpayment"), exports);
|
|
|
96
98
|
__exportStar(require("./getpaymentpayout"), exports);
|
|
97
99
|
__exportStar(require("./getpaymentrefund"), exports);
|
|
98
100
|
__exportStar(require("./getstoragefile"), exports);
|
|
101
|
+
__exportStar(require("./gettaskproject"), exports);
|
|
102
|
+
__exportStar(require("./gettasktask"), exports);
|
|
99
103
|
__exportStar(require("./getticketingcustomer"), exports);
|
|
100
104
|
__exportStar(require("./getticketingnote"), exports);
|
|
101
105
|
__exportStar(require("./getticketingticket"), exports);
|
|
@@ -149,6 +153,8 @@ __exportStar(require("./listpaymentpayments"), exports);
|
|
|
149
153
|
__exportStar(require("./listpaymentpayouts"), exports);
|
|
150
154
|
__exportStar(require("./listpaymentrefunds"), exports);
|
|
151
155
|
__exportStar(require("./liststoragefiles"), exports);
|
|
156
|
+
__exportStar(require("./listtaskprojects"), exports);
|
|
157
|
+
__exportStar(require("./listtasktasks"), exports);
|
|
152
158
|
__exportStar(require("./listticketingcustomers"), exports);
|
|
153
159
|
__exportStar(require("./listticketingnotes"), exports);
|
|
154
160
|
__exportStar(require("./listticketingtickets"), exports);
|
|
@@ -194,6 +200,8 @@ __exportStar(require("./patchpassthrough"), exports);
|
|
|
194
200
|
__exportStar(require("./patchpaymentlink"), exports);
|
|
195
201
|
__exportStar(require("./patchpaymentpayment"), exports);
|
|
196
202
|
__exportStar(require("./patchstoragefile"), exports);
|
|
203
|
+
__exportStar(require("./patchtaskproject"), exports);
|
|
204
|
+
__exportStar(require("./patchtasktask"), exports);
|
|
197
205
|
__exportStar(require("./patchticketingcustomer"), exports);
|
|
198
206
|
__exportStar(require("./patchticketingnote"), exports);
|
|
199
207
|
__exportStar(require("./patchticketingticket"), exports);
|
|
@@ -233,6 +241,8 @@ __exportStar(require("./removepassthrough"), exports);
|
|
|
233
241
|
__exportStar(require("./removepaymentlink"), exports);
|
|
234
242
|
__exportStar(require("./removepaymentpayment"), exports);
|
|
235
243
|
__exportStar(require("./removestoragefile"), exports);
|
|
244
|
+
__exportStar(require("./removetaskproject"), exports);
|
|
245
|
+
__exportStar(require("./removetasktask"), exports);
|
|
236
246
|
__exportStar(require("./removeticketingcustomer"), exports);
|
|
237
247
|
__exportStar(require("./removeticketingnote"), exports);
|
|
238
248
|
__exportStar(require("./removeticketingticket"), exports);
|
|
@@ -272,6 +282,8 @@ __exportStar(require("./updatepassthrough"), exports);
|
|
|
272
282
|
__exportStar(require("./updatepaymentlink"), exports);
|
|
273
283
|
__exportStar(require("./updatepaymentpayment"), exports);
|
|
274
284
|
__exportStar(require("./updatestoragefile"), exports);
|
|
285
|
+
__exportStar(require("./updatetaskproject"), exports);
|
|
286
|
+
__exportStar(require("./updatetasktask"), exports);
|
|
275
287
|
__exportStar(require("./updateticketingcustomer"), exports);
|
|
276
288
|
__exportStar(require("./updateticketingnote"), exports);
|
|
277
289
|
__exportStar(require("./updateticketingticket"), exports);
|