@managespace/sdk 0.0.209 → 0.0.210
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/extensibility/functions/project/billing.d.ts +25 -14
- package/dist/extensibility/functions/project/billing.d.ts.map +1 -1
- package/dist/extensibility/functions/project/billing.js +10 -0
- package/dist/extensibility/functions/project/communication-method.d.ts +1 -1
- package/dist/extensibility/functions/project/communication-method.d.ts.map +1 -1
- package/dist/extensibility/functions/project/managespace.d.ts +6 -0
- package/dist/extensibility/functions/project/managespace.d.ts.map +1 -1
- package/dist/extensibility/functions/project/managespace.js +5 -0
- package/dist/extensibility/functions/project/topics.enum.d.ts +2 -1
- package/dist/extensibility/functions/project/topics.enum.d.ts.map +1 -1
- package/dist/extensibility/functions/project/topics.enum.js +1 -0
- package/dist/generated/apis/default-api.d.ts +77 -38
- package/dist/generated/apis/default-api.d.ts.map +1 -1
- package/dist/generated/apis/default-api.js +813 -730
- package/dist/generated/models/assets.d.ts +34 -0
- package/dist/generated/models/assets.d.ts.map +1 -0
- package/dist/generated/models/assets.js +52 -0
- package/dist/generated/models/base-pagination-query.d.ts +39 -0
- package/dist/generated/models/base-pagination-query.d.ts.map +1 -0
- package/dist/generated/models/base-pagination-query.js +51 -0
- package/dist/generated/models/complex-query.d.ts +48 -0
- package/dist/generated/models/complex-query.d.ts.map +1 -0
- package/dist/generated/models/complex-query.js +56 -0
- package/dist/generated/models/create-journal-entry.d.ts +58 -0
- package/dist/generated/models/create-journal-entry.d.ts.map +1 -0
- package/dist/generated/models/create-journal-entry.js +64 -0
- package/dist/generated/models/create-notes.d.ts +34 -0
- package/dist/generated/models/create-notes.d.ts.map +1 -0
- package/dist/generated/models/create-notes.js +52 -0
- package/dist/generated/models/create-template.d.ts +2 -2
- package/dist/generated/models/create-template.d.ts.map +1 -1
- package/dist/generated/models/create-template.js +3 -3
- package/dist/generated/models/document-complete.d.ts +2 -2
- package/dist/generated/models/document-complete.d.ts.map +1 -1
- package/dist/generated/models/document-complete.js +3 -3
- package/dist/generated/models/filter-item-value.d.ts +27 -0
- package/dist/generated/models/filter-item-value.d.ts.map +1 -0
- package/dist/generated/models/filter-item-value.js +39 -0
- package/dist/generated/models/filter-item.d.ts +47 -0
- package/dist/generated/models/filter-item.d.ts.map +1 -0
- package/dist/generated/models/filter-item.js +61 -0
- package/dist/generated/models/filter-operator.d.ts +36 -0
- package/dist/generated/models/filter-operator.d.ts.map +1 -0
- package/dist/generated/models/filter-operator.js +61 -0
- package/dist/generated/models/get-customers-query.d.ts +48 -0
- package/dist/generated/models/get-customers-query.d.ts.map +1 -0
- package/dist/generated/models/get-customers-query.js +56 -0
- package/dist/generated/models/get-invoices-query.d.ts +60 -0
- package/dist/generated/models/get-invoices-query.d.ts.map +1 -0
- package/dist/generated/models/get-invoices-query.js +60 -0
- package/dist/generated/models/get-subscriptions-query.d.ts +66 -0
- package/dist/generated/models/get-subscriptions-query.d.ts.map +1 -0
- package/dist/generated/models/get-subscriptions-query.js +62 -0
- package/dist/generated/models/index.d.ts +16 -3
- package/dist/generated/models/index.d.ts.map +1 -1
- package/dist/generated/models/index.js +16 -3
- package/dist/generated/models/journal-entry-entries.d.ts +75 -0
- package/dist/generated/models/journal-entry-entries.d.ts.map +1 -0
- package/dist/generated/models/journal-entry-entries.js +73 -0
- package/dist/generated/models/journal-entry.d.ts +94 -0
- package/dist/generated/models/journal-entry.d.ts.map +1 -0
- package/dist/generated/models/journal-entry.js +88 -0
- package/dist/generated/models/order-operator.d.ts +26 -0
- package/dist/generated/models/order-operator.d.ts.map +1 -0
- package/dist/generated/models/order-operator.js +51 -0
- package/dist/generated/models/plugin-filter-item.d.ts +41 -0
- package/dist/generated/models/plugin-filter-item.d.ts.map +1 -0
- package/dist/generated/models/plugin-filter-item.js +57 -0
- package/dist/generated/models/plugin-filter-operator.d.ts +27 -0
- package/dist/generated/models/plugin-filter-operator.d.ts.map +1 -0
- package/dist/generated/models/plugin-filter-operator.js +52 -0
- package/dist/generated/models/sort-order.d.ts +40 -0
- package/dist/generated/models/sort-order.d.ts.map +1 -0
- package/dist/generated/models/sort-order.js +52 -0
- package/dist/generated/models/update-customer200-response.d.ts +41 -0
- package/dist/generated/models/update-customer200-response.d.ts.map +1 -0
- package/dist/generated/models/update-customer200-response.js +55 -0
- package/package.json +1 -1
- package/src/extensibility/functions/project/billing.ts +25 -15
- package/src/extensibility/functions/project/communication-method.ts +1 -1
- package/src/extensibility/functions/project/managespace.ts +5 -0
- package/src/extensibility/functions/project/topics.enum.ts +1 -0
- package/src/generated/.openapi-generator/FILES +16 -1
- package/src/generated/apis/default-api.ts +341 -167
- package/src/generated/models/assets.ts +74 -0
- package/src/generated/models/base-pagination-query.ts +73 -0
- package/src/generated/models/complex-query.ts +103 -0
- package/src/generated/models/create-journal-entry.ts +108 -0
- package/src/generated/models/create-notes.ts +74 -0
- package/src/generated/models/filter-item-value.ts +46 -0
- package/src/generated/models/filter-item.ts +101 -0
- package/src/generated/models/filter-operator.ts +63 -0
- package/src/generated/models/get-customers-query.ts +103 -0
- package/src/generated/models/get-invoices-query.ts +119 -0
- package/src/generated/models/get-subscriptions-query.ts +127 -0
- package/src/generated/models/index.ts +16 -1
- package/src/generated/models/journal-entry-entries.ts +126 -0
- package/src/generated/models/journal-entry.ts +162 -0
- package/src/generated/models/order-operator.ts +53 -0
- package/src/generated/models/plugin-filter-item.ts +92 -0
- package/src/generated/models/plugin-filter-operator.ts +54 -0
- package/src/generated/models/sort-order.ts +83 -0
- package/src/generated/models/update-customer200-response.ts +89 -0
- package/src/generated/models/change-active-site.ts +0 -66
- package/src/generated/models/create-checklist.ts +0 -135
- package/src/generated/models/create-task-template.ts +0 -83
- package/src/generated/models/create-task.ts +0 -135
- package/src/generated/models/custom-update-task-template.ts +0 -93
- package/src/generated/models/document-signed.ts +0 -115
- package/src/generated/models/get-payments1200-response.ts +0 -89
- package/src/generated/models/get-task-templates200-response.ts +0 -89
- package/src/generated/models/get-tasks200-response.ts +0 -89
- package/src/generated/models/task-template.ts +0 -187
- package/src/generated/models/task.ts +0 -290
- package/src/generated/models/update-checklist-task-template.ts +0 -66
|
@@ -5,6 +5,8 @@ export * from './asset-category';
|
|
|
5
5
|
export * from './asset-class';
|
|
6
6
|
export * from './asset-details';
|
|
7
7
|
export * from './asset-feature';
|
|
8
|
+
export * from './assets';
|
|
9
|
+
export * from './base-pagination-query';
|
|
8
10
|
export * from './billing-run';
|
|
9
11
|
export * from './billing-run-filter-condition';
|
|
10
12
|
export * from './billing-run-filter-options';
|
|
@@ -17,6 +19,7 @@ export * from './checklist';
|
|
|
17
19
|
export * from './checklist-recurrence-frequency';
|
|
18
20
|
export * from './communication';
|
|
19
21
|
export * from './communication-type';
|
|
22
|
+
export * from './complex-query';
|
|
20
23
|
export * from './configuration-setting';
|
|
21
24
|
export * from './configuration-setting-type';
|
|
22
25
|
export * from './contact';
|
|
@@ -34,8 +37,10 @@ export * from './create-communication';
|
|
|
34
37
|
export * from './create-configuration-setting';
|
|
35
38
|
export * from './create-document';
|
|
36
39
|
export * from './create-instances';
|
|
40
|
+
export * from './create-journal-entry';
|
|
37
41
|
export * from './create-map-feature';
|
|
38
42
|
export * from './create-note';
|
|
43
|
+
export * from './create-notes';
|
|
39
44
|
export * from './create-notification';
|
|
40
45
|
export * from './create-order';
|
|
41
46
|
export * from './create-org';
|
|
@@ -78,10 +83,12 @@ export * from './field-area';
|
|
|
78
83
|
export * from './field-preferences';
|
|
79
84
|
export * from './field-type';
|
|
80
85
|
export * from './file-uploaded';
|
|
86
|
+
export * from './filter-item';
|
|
87
|
+
export * from './filter-item-value';
|
|
88
|
+
export * from './filter-operator';
|
|
81
89
|
export * from './get-asset-categories200-response';
|
|
82
90
|
export * from './get-asset-classes200-response';
|
|
83
91
|
export * from './get-asset-features200-response';
|
|
84
|
-
export * from './get-assets200-response';
|
|
85
92
|
export * from './get-billing-runs200-response';
|
|
86
93
|
export * from './get-calendar-events-query';
|
|
87
94
|
export * from './get-calendars200-response';
|
|
@@ -95,6 +102,7 @@ export * from './get-customers200-response';
|
|
|
95
102
|
export * from './get-documents200-response';
|
|
96
103
|
export * from './get-intent';
|
|
97
104
|
export * from './get-invoices200-response';
|
|
105
|
+
export * from './get-invoices-query';
|
|
98
106
|
export * from './get-notes200-response';
|
|
99
107
|
export * from './get-notifications200-response';
|
|
100
108
|
export * from './get-orders200-response';
|
|
@@ -109,6 +117,7 @@ export * from './get-revenue-rules200-response';
|
|
|
109
117
|
export * from './get-sites200-response';
|
|
110
118
|
export * from './get-statements200-response';
|
|
111
119
|
export * from './get-subscriptions200-response';
|
|
120
|
+
export * from './get-subscriptions-query';
|
|
112
121
|
export * from './get-task-definitions200-response';
|
|
113
122
|
export * from './get-task-instances200-response';
|
|
114
123
|
export * from './get-templates200-response';
|
|
@@ -118,17 +127,19 @@ export * from './get-workflow-instances200-response';
|
|
|
118
127
|
export * from './intent';
|
|
119
128
|
export * from './invoice';
|
|
120
129
|
export * from './invoice-contact';
|
|
130
|
+
export * from './journal-entry';
|
|
131
|
+
export * from './journal-entry-entries';
|
|
121
132
|
export * from './lease-status';
|
|
122
133
|
export * from './line-item';
|
|
123
134
|
export * from './link-plugin';
|
|
124
135
|
export * from './login';
|
|
125
136
|
export * from './manual-input';
|
|
126
137
|
export * from './map-feature';
|
|
127
|
-
export * from './notstarted';
|
|
128
138
|
export * from './note';
|
|
129
139
|
export * from './notification';
|
|
130
140
|
export * from './order';
|
|
131
141
|
export * from './order-line-item';
|
|
142
|
+
export * from './order-operator';
|
|
132
143
|
export * from './org';
|
|
133
144
|
export * from './page-meta';
|
|
134
145
|
export * from './paginated';
|
|
@@ -145,6 +156,8 @@ export * from './plugin-extensibility-function-definition';
|
|
|
145
156
|
export * from './plugin-extensibility-function-instance';
|
|
146
157
|
export * from './plugin-extensibility-function-metadata';
|
|
147
158
|
export * from './plugin-extensibility-status';
|
|
159
|
+
export * from './plugin-filter-item';
|
|
160
|
+
export * from './plugin-filter-operator';
|
|
148
161
|
export * from './plugin-version';
|
|
149
162
|
export * from './product-custom';
|
|
150
163
|
export * from './product-tax-group';
|
|
@@ -172,6 +185,7 @@ export * from './site-type2';
|
|
|
172
185
|
export * from './site-type3';
|
|
173
186
|
export * from './site-type4';
|
|
174
187
|
export * from './smart-bar-prompt';
|
|
188
|
+
export * from './sort-order';
|
|
175
189
|
export * from './statement';
|
|
176
190
|
export * from './step-data';
|
|
177
191
|
export * from './sub-total';
|
|
@@ -204,7 +218,6 @@ export * from './update-subscription-charge';
|
|
|
204
218
|
export * from './update-task-instance';
|
|
205
219
|
export * from './update-user-properties';
|
|
206
220
|
export * from './update-workflow-instance-description';
|
|
207
|
-
export * from './upload-document';
|
|
208
221
|
export * from './uploaded-document';
|
|
209
222
|
export * from './user';
|
|
210
223
|
export * from './user-id';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"AAEA,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC;AAC5B,cAAc,kCAAkC,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC;AAClD,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -23,6 +23,8 @@ __exportStar(require("./asset-category"), exports);
|
|
|
23
23
|
__exportStar(require("./asset-class"), exports);
|
|
24
24
|
__exportStar(require("./asset-details"), exports);
|
|
25
25
|
__exportStar(require("./asset-feature"), exports);
|
|
26
|
+
__exportStar(require("./assets"), exports);
|
|
27
|
+
__exportStar(require("./base-pagination-query"), exports);
|
|
26
28
|
__exportStar(require("./billing-run"), exports);
|
|
27
29
|
__exportStar(require("./billing-run-filter-condition"), exports);
|
|
28
30
|
__exportStar(require("./billing-run-filter-options"), exports);
|
|
@@ -35,6 +37,7 @@ __exportStar(require("./checklist"), exports);
|
|
|
35
37
|
__exportStar(require("./checklist-recurrence-frequency"), exports);
|
|
36
38
|
__exportStar(require("./communication"), exports);
|
|
37
39
|
__exportStar(require("./communication-type"), exports);
|
|
40
|
+
__exportStar(require("./complex-query"), exports);
|
|
38
41
|
__exportStar(require("./configuration-setting"), exports);
|
|
39
42
|
__exportStar(require("./configuration-setting-type"), exports);
|
|
40
43
|
__exportStar(require("./contact"), exports);
|
|
@@ -52,8 +55,10 @@ __exportStar(require("./create-communication"), exports);
|
|
|
52
55
|
__exportStar(require("./create-configuration-setting"), exports);
|
|
53
56
|
__exportStar(require("./create-document"), exports);
|
|
54
57
|
__exportStar(require("./create-instances"), exports);
|
|
58
|
+
__exportStar(require("./create-journal-entry"), exports);
|
|
55
59
|
__exportStar(require("./create-map-feature"), exports);
|
|
56
60
|
__exportStar(require("./create-note"), exports);
|
|
61
|
+
__exportStar(require("./create-notes"), exports);
|
|
57
62
|
__exportStar(require("./create-notification"), exports);
|
|
58
63
|
__exportStar(require("./create-order"), exports);
|
|
59
64
|
__exportStar(require("./create-org"), exports);
|
|
@@ -96,10 +101,12 @@ __exportStar(require("./field-area"), exports);
|
|
|
96
101
|
__exportStar(require("./field-preferences"), exports);
|
|
97
102
|
__exportStar(require("./field-type"), exports);
|
|
98
103
|
__exportStar(require("./file-uploaded"), exports);
|
|
104
|
+
__exportStar(require("./filter-item"), exports);
|
|
105
|
+
__exportStar(require("./filter-item-value"), exports);
|
|
106
|
+
__exportStar(require("./filter-operator"), exports);
|
|
99
107
|
__exportStar(require("./get-asset-categories200-response"), exports);
|
|
100
108
|
__exportStar(require("./get-asset-classes200-response"), exports);
|
|
101
109
|
__exportStar(require("./get-asset-features200-response"), exports);
|
|
102
|
-
__exportStar(require("./get-assets200-response"), exports);
|
|
103
110
|
__exportStar(require("./get-billing-runs200-response"), exports);
|
|
104
111
|
__exportStar(require("./get-calendar-events-query"), exports);
|
|
105
112
|
__exportStar(require("./get-calendars200-response"), exports);
|
|
@@ -113,6 +120,7 @@ __exportStar(require("./get-customers200-response"), exports);
|
|
|
113
120
|
__exportStar(require("./get-documents200-response"), exports);
|
|
114
121
|
__exportStar(require("./get-intent"), exports);
|
|
115
122
|
__exportStar(require("./get-invoices200-response"), exports);
|
|
123
|
+
__exportStar(require("./get-invoices-query"), exports);
|
|
116
124
|
__exportStar(require("./get-notes200-response"), exports);
|
|
117
125
|
__exportStar(require("./get-notifications200-response"), exports);
|
|
118
126
|
__exportStar(require("./get-orders200-response"), exports);
|
|
@@ -127,6 +135,7 @@ __exportStar(require("./get-revenue-rules200-response"), exports);
|
|
|
127
135
|
__exportStar(require("./get-sites200-response"), exports);
|
|
128
136
|
__exportStar(require("./get-statements200-response"), exports);
|
|
129
137
|
__exportStar(require("./get-subscriptions200-response"), exports);
|
|
138
|
+
__exportStar(require("./get-subscriptions-query"), exports);
|
|
130
139
|
__exportStar(require("./get-task-definitions200-response"), exports);
|
|
131
140
|
__exportStar(require("./get-task-instances200-response"), exports);
|
|
132
141
|
__exportStar(require("./get-templates200-response"), exports);
|
|
@@ -136,17 +145,19 @@ __exportStar(require("./get-workflow-instances200-response"), exports);
|
|
|
136
145
|
__exportStar(require("./intent"), exports);
|
|
137
146
|
__exportStar(require("./invoice"), exports);
|
|
138
147
|
__exportStar(require("./invoice-contact"), exports);
|
|
148
|
+
__exportStar(require("./journal-entry"), exports);
|
|
149
|
+
__exportStar(require("./journal-entry-entries"), exports);
|
|
139
150
|
__exportStar(require("./lease-status"), exports);
|
|
140
151
|
__exportStar(require("./line-item"), exports);
|
|
141
152
|
__exportStar(require("./link-plugin"), exports);
|
|
142
153
|
__exportStar(require("./login"), exports);
|
|
143
154
|
__exportStar(require("./manual-input"), exports);
|
|
144
155
|
__exportStar(require("./map-feature"), exports);
|
|
145
|
-
__exportStar(require("./notstarted"), exports);
|
|
146
156
|
__exportStar(require("./note"), exports);
|
|
147
157
|
__exportStar(require("./notification"), exports);
|
|
148
158
|
__exportStar(require("./order"), exports);
|
|
149
159
|
__exportStar(require("./order-line-item"), exports);
|
|
160
|
+
__exportStar(require("./order-operator"), exports);
|
|
150
161
|
__exportStar(require("./org"), exports);
|
|
151
162
|
__exportStar(require("./page-meta"), exports);
|
|
152
163
|
__exportStar(require("./paginated"), exports);
|
|
@@ -163,6 +174,8 @@ __exportStar(require("./plugin-extensibility-function-definition"), exports);
|
|
|
163
174
|
__exportStar(require("./plugin-extensibility-function-instance"), exports);
|
|
164
175
|
__exportStar(require("./plugin-extensibility-function-metadata"), exports);
|
|
165
176
|
__exportStar(require("./plugin-extensibility-status"), exports);
|
|
177
|
+
__exportStar(require("./plugin-filter-item"), exports);
|
|
178
|
+
__exportStar(require("./plugin-filter-operator"), exports);
|
|
166
179
|
__exportStar(require("./plugin-version"), exports);
|
|
167
180
|
__exportStar(require("./product-custom"), exports);
|
|
168
181
|
__exportStar(require("./product-tax-group"), exports);
|
|
@@ -190,6 +203,7 @@ __exportStar(require("./site-type2"), exports);
|
|
|
190
203
|
__exportStar(require("./site-type3"), exports);
|
|
191
204
|
__exportStar(require("./site-type4"), exports);
|
|
192
205
|
__exportStar(require("./smart-bar-prompt"), exports);
|
|
206
|
+
__exportStar(require("./sort-order"), exports);
|
|
193
207
|
__exportStar(require("./statement"), exports);
|
|
194
208
|
__exportStar(require("./step-data"), exports);
|
|
195
209
|
__exportStar(require("./sub-total"), exports);
|
|
@@ -222,7 +236,6 @@ __exportStar(require("./update-subscription-charge"), exports);
|
|
|
222
236
|
__exportStar(require("./update-task-instance"), exports);
|
|
223
237
|
__exportStar(require("./update-user-properties"), exports);
|
|
224
238
|
__exportStar(require("./update-workflow-instance-description"), exports);
|
|
225
|
-
__exportStar(require("./upload-document"), exports);
|
|
226
239
|
__exportStar(require("./uploaded-document"), exports);
|
|
227
240
|
__exportStar(require("./user"), exports);
|
|
228
241
|
__exportStar(require("./user-id"), exports);
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ManageSpace API
|
|
3
|
+
* ManageSpace API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface JournalEntryEntries
|
|
16
|
+
*/
|
|
17
|
+
export interface JournalEntryEntries {
|
|
18
|
+
/**
|
|
19
|
+
* Journal Entry Line Number
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof JournalEntryEntries
|
|
22
|
+
*/
|
|
23
|
+
lineNo: string;
|
|
24
|
+
/**
|
|
25
|
+
* GL Account number
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof JournalEntryEntries
|
|
28
|
+
*/
|
|
29
|
+
account: string;
|
|
30
|
+
/**
|
|
31
|
+
* Debit Account id associated with this Journal Entry
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof JournalEntryEntries
|
|
34
|
+
*/
|
|
35
|
+
debit: string;
|
|
36
|
+
/**
|
|
37
|
+
* Credit Account id associated with this Journal Entry
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof JournalEntryEntries
|
|
40
|
+
*/
|
|
41
|
+
credit: string;
|
|
42
|
+
/**
|
|
43
|
+
* Journal Entry description
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof JournalEntryEntries
|
|
46
|
+
*/
|
|
47
|
+
description?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Customer ID associated with journal entry
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof JournalEntryEntries
|
|
52
|
+
*/
|
|
53
|
+
customerId: string;
|
|
54
|
+
/**
|
|
55
|
+
* Customer name
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof JournalEntryEntries
|
|
58
|
+
*/
|
|
59
|
+
customerName?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Custom fields on the invoice
|
|
62
|
+
* @type {object}
|
|
63
|
+
* @memberof JournalEntryEntries
|
|
64
|
+
*/
|
|
65
|
+
customFields?: object;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Check if a given object implements the JournalEntryEntries interface.
|
|
69
|
+
*/
|
|
70
|
+
export declare function instanceOfJournalEntryEntries(value: object): value is JournalEntryEntries;
|
|
71
|
+
export declare function JournalEntryEntriesFromJSON(json: any): JournalEntryEntries;
|
|
72
|
+
export declare function JournalEntryEntriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): JournalEntryEntries;
|
|
73
|
+
export declare function JournalEntryEntriesToJSON(json: any): JournalEntryEntries;
|
|
74
|
+
export declare function JournalEntryEntriesToJSONTyped(value?: JournalEntryEntries | null, ignoreDiscriminator?: boolean): any;
|
|
75
|
+
//# sourceMappingURL=journal-entry-entries.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"journal-entry-entries.d.ts","sourceRoot":"","sources":["../../../src/generated/models/journal-entry-entries.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,mBAAmB,CAOzF;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,GAAG,mBAAmB,CAE1E;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,mBAAmB,CAe7G;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,GAAG,mBAAmB,CAExE;AAED,wBAAgB,8BAA8B,CAAC,KAAK,CAAC,EAAE,mBAAmB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAgB5H"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* ManageSpace API
|
|
6
|
+
* ManageSpace API Documentation
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.JournalEntryEntriesToJSONTyped = exports.JournalEntryEntriesToJSON = exports.JournalEntryEntriesFromJSONTyped = exports.JournalEntryEntriesFromJSON = exports.instanceOfJournalEntryEntries = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the JournalEntryEntries interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfJournalEntryEntries(value) {
|
|
21
|
+
if (!('lineNo' in value) || value['lineNo'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('account' in value) || value['account'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('debit' in value) || value['debit'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('credit' in value) || value['credit'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('customerId' in value) || value['customerId'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
exports.instanceOfJournalEntryEntries = instanceOfJournalEntryEntries;
|
|
34
|
+
function JournalEntryEntriesFromJSON(json) {
|
|
35
|
+
return JournalEntryEntriesFromJSONTyped(json, false);
|
|
36
|
+
}
|
|
37
|
+
exports.JournalEntryEntriesFromJSON = JournalEntryEntriesFromJSON;
|
|
38
|
+
function JournalEntryEntriesFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
|
+
if (json == null) {
|
|
40
|
+
return json;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'lineNo': json['lineNo'],
|
|
44
|
+
'account': json['account'],
|
|
45
|
+
'debit': json['debit'],
|
|
46
|
+
'credit': json['credit'],
|
|
47
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
48
|
+
'customerId': json['customerId'],
|
|
49
|
+
'customerName': json['customerName'] == null ? undefined : json['customerName'],
|
|
50
|
+
'customFields': json['customFields'] == null ? undefined : json['customFields'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
exports.JournalEntryEntriesFromJSONTyped = JournalEntryEntriesFromJSONTyped;
|
|
54
|
+
function JournalEntryEntriesToJSON(json) {
|
|
55
|
+
return JournalEntryEntriesToJSONTyped(json, false);
|
|
56
|
+
}
|
|
57
|
+
exports.JournalEntryEntriesToJSON = JournalEntryEntriesToJSON;
|
|
58
|
+
function JournalEntryEntriesToJSONTyped(value, ignoreDiscriminator = false) {
|
|
59
|
+
if (value == null) {
|
|
60
|
+
return value;
|
|
61
|
+
}
|
|
62
|
+
return {
|
|
63
|
+
'lineNo': value['lineNo'],
|
|
64
|
+
'account': value['account'],
|
|
65
|
+
'debit': value['debit'],
|
|
66
|
+
'credit': value['credit'],
|
|
67
|
+
'description': value['description'],
|
|
68
|
+
'customerId': value['customerId'],
|
|
69
|
+
'customerName': value['customerName'],
|
|
70
|
+
'customFields': value['customFields'],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
exports.JournalEntryEntriesToJSONTyped = JournalEntryEntriesToJSONTyped;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ManageSpace API
|
|
3
|
+
* ManageSpace API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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 type { JournalEntryEntries } from './journal-entry-entries';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface JournalEntry
|
|
17
|
+
*/
|
|
18
|
+
export interface JournalEntry {
|
|
19
|
+
/**
|
|
20
|
+
* Journal Entry Date
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof JournalEntry
|
|
23
|
+
*/
|
|
24
|
+
date: string;
|
|
25
|
+
/**
|
|
26
|
+
* Journal Entry description
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof JournalEntry
|
|
29
|
+
*/
|
|
30
|
+
description?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Journal entries
|
|
33
|
+
* @type {Array<JournalEntryEntries>}
|
|
34
|
+
* @memberof JournalEntry
|
|
35
|
+
*/
|
|
36
|
+
entries: Array<JournalEntryEntries>;
|
|
37
|
+
/**
|
|
38
|
+
* Custom fields on the invoice
|
|
39
|
+
* @type {object}
|
|
40
|
+
* @memberof JournalEntry
|
|
41
|
+
*/
|
|
42
|
+
customFields?: object;
|
|
43
|
+
/**
|
|
44
|
+
* Currency id used in this journal entry
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof JournalEntry
|
|
47
|
+
*/
|
|
48
|
+
currencyId: string;
|
|
49
|
+
/**
|
|
50
|
+
* Journal Entry ID
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof JournalEntry
|
|
53
|
+
*/
|
|
54
|
+
id: string;
|
|
55
|
+
/**
|
|
56
|
+
* Origin of journal entry
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof JournalEntry
|
|
59
|
+
*/
|
|
60
|
+
sourceType: string;
|
|
61
|
+
/**
|
|
62
|
+
* Source of journal entry
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof JournalEntry
|
|
65
|
+
*/
|
|
66
|
+
sourceId: string;
|
|
67
|
+
/**
|
|
68
|
+
* Currency code of the transaction
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof JournalEntry
|
|
71
|
+
*/
|
|
72
|
+
transactionCurrency: string;
|
|
73
|
+
/**
|
|
74
|
+
* Transaction Conversion Rate
|
|
75
|
+
* @type {number}
|
|
76
|
+
* @memberof JournalEntry
|
|
77
|
+
*/
|
|
78
|
+
transactionConversionRate: number;
|
|
79
|
+
/**
|
|
80
|
+
* Transaction amount
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof JournalEntry
|
|
83
|
+
*/
|
|
84
|
+
transactionAmount: string;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Check if a given object implements the JournalEntry interface.
|
|
88
|
+
*/
|
|
89
|
+
export declare function instanceOfJournalEntry(value: object): value is JournalEntry;
|
|
90
|
+
export declare function JournalEntryFromJSON(json: any): JournalEntry;
|
|
91
|
+
export declare function JournalEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): JournalEntry;
|
|
92
|
+
export declare function JournalEntryToJSON(json: any): JournalEntry;
|
|
93
|
+
export declare function JournalEntryToJSONTyped(value?: JournalEntry | null, ignoreDiscriminator?: boolean): any;
|
|
94
|
+
//# sourceMappingURL=journal-entry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"journal-entry.d.ts","sourceRoot":"","sources":["../../../src/generated/models/journal-entry.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAQnE;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,OAAO,EAAE,KAAK,CAAC,mBAAmB,CAAC,CAAC;IACpC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC7B;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,YAAY,CAW3E;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,GAAG,GAAG,YAAY,CAE5D;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,YAAY,CAkB/F;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,YAAY,CAE1D;AAED,wBAAgB,uBAAuB,CAAC,KAAK,CAAC,EAAE,YAAY,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAmB9G"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* ManageSpace API
|
|
6
|
+
* ManageSpace API Documentation
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.JournalEntryToJSONTyped = exports.JournalEntryToJSON = exports.JournalEntryFromJSONTyped = exports.JournalEntryFromJSON = exports.instanceOfJournalEntry = void 0;
|
|
17
|
+
const journal_entry_entries_1 = require("./journal-entry-entries");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the JournalEntry interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfJournalEntry(value) {
|
|
22
|
+
if (!('date' in value) || value['date'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('entries' in value) || value['entries'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
if (!('currencyId' in value) || value['currencyId'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('sourceType' in value) || value['sourceType'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('sourceId' in value) || value['sourceId'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('transactionCurrency' in value) || value['transactionCurrency'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('transactionConversionRate' in value) || value['transactionConversionRate'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
if (!('transactionAmount' in value) || value['transactionAmount'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
exports.instanceOfJournalEntry = instanceOfJournalEntry;
|
|
43
|
+
function JournalEntryFromJSON(json) {
|
|
44
|
+
return JournalEntryFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
exports.JournalEntryFromJSON = JournalEntryFromJSON;
|
|
47
|
+
function JournalEntryFromJSONTyped(json, ignoreDiscriminator) {
|
|
48
|
+
if (json == null) {
|
|
49
|
+
return json;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'date': json['date'],
|
|
53
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
54
|
+
'entries': (json['entries'].map(journal_entry_entries_1.JournalEntryEntriesFromJSON)),
|
|
55
|
+
'customFields': json['customFields'] == null ? undefined : json['customFields'],
|
|
56
|
+
'currencyId': json['currencyId'],
|
|
57
|
+
'id': json['id'],
|
|
58
|
+
'sourceType': json['sourceType'],
|
|
59
|
+
'sourceId': json['sourceId'],
|
|
60
|
+
'transactionCurrency': json['transactionCurrency'],
|
|
61
|
+
'transactionConversionRate': json['transactionConversionRate'],
|
|
62
|
+
'transactionAmount': json['transactionAmount'],
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
exports.JournalEntryFromJSONTyped = JournalEntryFromJSONTyped;
|
|
66
|
+
function JournalEntryToJSON(json) {
|
|
67
|
+
return JournalEntryToJSONTyped(json, false);
|
|
68
|
+
}
|
|
69
|
+
exports.JournalEntryToJSON = JournalEntryToJSON;
|
|
70
|
+
function JournalEntryToJSONTyped(value, ignoreDiscriminator = false) {
|
|
71
|
+
if (value == null) {
|
|
72
|
+
return value;
|
|
73
|
+
}
|
|
74
|
+
return {
|
|
75
|
+
'date': value['date'],
|
|
76
|
+
'description': value['description'],
|
|
77
|
+
'entries': (value['entries'].map(journal_entry_entries_1.JournalEntryEntriesToJSON)),
|
|
78
|
+
'customFields': value['customFields'],
|
|
79
|
+
'currencyId': value['currencyId'],
|
|
80
|
+
'id': value['id'],
|
|
81
|
+
'sourceType': value['sourceType'],
|
|
82
|
+
'sourceId': value['sourceId'],
|
|
83
|
+
'transactionCurrency': value['transactionCurrency'],
|
|
84
|
+
'transactionConversionRate': value['transactionConversionRate'],
|
|
85
|
+
'transactionAmount': value['transactionAmount'],
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
exports.JournalEntryToJSONTyped = JournalEntryToJSONTyped;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ManageSpace API
|
|
3
|
+
* ManageSpace API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
/**
|
|
13
|
+
* The order to sort by
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export declare const OrderOperator: {
|
|
17
|
+
readonly Asc: "asc";
|
|
18
|
+
readonly Desc: "desc";
|
|
19
|
+
};
|
|
20
|
+
export type OrderOperator = typeof OrderOperator[keyof typeof OrderOperator];
|
|
21
|
+
export declare function instanceOfOrderOperator(value: any): boolean;
|
|
22
|
+
export declare function OrderOperatorFromJSON(json: any): OrderOperator;
|
|
23
|
+
export declare function OrderOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderOperator;
|
|
24
|
+
export declare function OrderOperatorToJSON(value?: OrderOperator | null): any;
|
|
25
|
+
export declare function OrderOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): OrderOperator;
|
|
26
|
+
//# sourceMappingURL=order-operator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order-operator.d.ts","sourceRoot":"","sources":["../../../src/generated/models/order-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;GAGG;AACH,eAAO,MAAM,aAAa;;;CAGhB,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAG7E,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO,CAS3D;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,GAAG,GAAG,aAAa,CAE9D;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,aAAa,CAEjG;AAED,wBAAgB,mBAAmB,CAAC,KAAK,CAAC,EAAE,aAAa,GAAG,IAAI,GAAG,GAAG,CAErE;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,aAAa,CAEhG"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* ManageSpace API
|
|
6
|
+
* ManageSpace API Documentation
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.OrderOperatorToJSONTyped = exports.OrderOperatorToJSON = exports.OrderOperatorFromJSONTyped = exports.OrderOperatorFromJSON = exports.instanceOfOrderOperator = exports.OrderOperator = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* The order to sort by
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
exports.OrderOperator = {
|
|
22
|
+
Asc: 'asc',
|
|
23
|
+
Desc: 'desc'
|
|
24
|
+
};
|
|
25
|
+
function instanceOfOrderOperator(value) {
|
|
26
|
+
for (const key in exports.OrderOperator) {
|
|
27
|
+
if (Object.prototype.hasOwnProperty.call(exports.OrderOperator, key)) {
|
|
28
|
+
if (exports.OrderOperator[key] === value) {
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
return false;
|
|
34
|
+
}
|
|
35
|
+
exports.instanceOfOrderOperator = instanceOfOrderOperator;
|
|
36
|
+
function OrderOperatorFromJSON(json) {
|
|
37
|
+
return OrderOperatorFromJSONTyped(json, false);
|
|
38
|
+
}
|
|
39
|
+
exports.OrderOperatorFromJSON = OrderOperatorFromJSON;
|
|
40
|
+
function OrderOperatorFromJSONTyped(json, ignoreDiscriminator) {
|
|
41
|
+
return json;
|
|
42
|
+
}
|
|
43
|
+
exports.OrderOperatorFromJSONTyped = OrderOperatorFromJSONTyped;
|
|
44
|
+
function OrderOperatorToJSON(value) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
exports.OrderOperatorToJSON = OrderOperatorToJSON;
|
|
48
|
+
function OrderOperatorToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
exports.OrderOperatorToJSONTyped = OrderOperatorToJSONTyped;
|