@digital8/lighting-illusions-ts-sdk 0.0.1435 → 0.0.1437
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/.openapi-generator/FILES +8 -0
- package/README.md +9 -2
- package/dist/apis/ProductRegistrationApi.d.ts +79 -0
- package/dist/apis/ProductRegistrationApi.js +316 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/AddressResource.d.ts +1 -1
- package/dist/models/AddressResource.js +3 -1
- package/dist/models/GetAllProductRegistrationRequest.d.ts +81 -0
- package/dist/models/GetAllProductRegistrationRequest.js +77 -0
- package/dist/models/IndexProductChildRequest.d.ts +1 -0
- package/dist/models/IndexProductChildRequest.js +1 -0
- package/dist/models/IndexProductRegistrationRequest.d.ts +124 -0
- package/dist/models/IndexProductRegistrationRequest.js +95 -0
- package/dist/models/ListAssetsProductRegistrationRequest.d.ts +103 -0
- package/dist/models/ListAssetsProductRegistrationRequest.js +83 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/docs/GetAllProductRegistrationRequest.md +44 -0
- package/docs/IndexProductRegistrationRequest.md +56 -0
- package/docs/ListAssetsProductRegistrationRequest.md +52 -0
- package/docs/ProductRegistrationApi.md +275 -0
- package/package.json +1 -1
- package/src/apis/ProductRegistrationApi.ts +238 -0
- package/src/apis/index.ts +1 -0
- package/src/models/AddressResource.ts +3 -2
- package/src/models/GetAllProductRegistrationRequest.ts +128 -0
- package/src/models/IndexProductChildRequest.ts +1 -0
- package/src/models/IndexProductRegistrationRequest.ts +184 -0
- package/src/models/ListAssetsProductRegistrationRequest.ts +158 -0
- package/src/models/index.ts +3 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -94,6 +94,7 @@ docs/GetAllOverlayTemplateRequest.md
|
|
|
94
94
|
docs/GetAllProductCategoryRequest.md
|
|
95
95
|
docs/GetAllProductChildRequest.md
|
|
96
96
|
docs/GetAllProductRangeRequest.md
|
|
97
|
+
docs/GetAllProductRegistrationRequest.md
|
|
97
98
|
docs/GetAllProductRequest.md
|
|
98
99
|
docs/GetAllProductTypeRequest.md
|
|
99
100
|
docs/GetAllSupplierRequest.md
|
|
@@ -120,6 +121,7 @@ docs/IndexOverlayTemplateRequest.md
|
|
|
120
121
|
docs/IndexProductCategoryRequest.md
|
|
121
122
|
docs/IndexProductChildRequest.md
|
|
122
123
|
docs/IndexProductRangeRequest.md
|
|
124
|
+
docs/IndexProductRegistrationRequest.md
|
|
123
125
|
docs/IndexProductRequest.md
|
|
124
126
|
docs/IndexProductTypeRequest.md
|
|
125
127
|
docs/IndexSiteNotificationRequest.md
|
|
@@ -128,6 +130,7 @@ docs/IndexSupplierRequest.md
|
|
|
128
130
|
docs/IndexTagRequest.md
|
|
129
131
|
docs/LabelResource.md
|
|
130
132
|
docs/LabelResourceArrayResponse.md
|
|
133
|
+
docs/ListAssetsProductRegistrationRequest.md
|
|
131
134
|
docs/ModelAttributeListResource.md
|
|
132
135
|
docs/ModelAttributeListResourceArrayResponse.md
|
|
133
136
|
docs/ModelAttributeResource.md
|
|
@@ -262,6 +265,7 @@ docs/ProductRangeSiteDetailResource.md
|
|
|
262
265
|
docs/ProductRangeSiteDetailResourceArrayResponse.md
|
|
263
266
|
docs/ProductRangeSortBy.md
|
|
264
267
|
docs/ProductRating.md
|
|
268
|
+
docs/ProductRegistrationApi.md
|
|
265
269
|
docs/ProductRegistrationAssetResource.md
|
|
266
270
|
docs/ProductRegistrationAssetResourceArrayResponse.md
|
|
267
271
|
docs/ProductRegistrationAssetType.md
|
|
@@ -391,6 +395,7 @@ src/apis/OverlayTemplateApi.ts
|
|
|
391
395
|
src/apis/ProductApi.ts
|
|
392
396
|
src/apis/ProductCategoryApi.ts
|
|
393
397
|
src/apis/ProductRangeApi.ts
|
|
398
|
+
src/apis/ProductRegistrationApi.ts
|
|
394
399
|
src/apis/ProductTypeApi.ts
|
|
395
400
|
src/apis/SiteApi.ts
|
|
396
401
|
src/apis/SupplierApi.ts
|
|
@@ -483,6 +488,7 @@ src/models/GetAllOverlayTemplateRequest.ts
|
|
|
483
488
|
src/models/GetAllProductCategoryRequest.ts
|
|
484
489
|
src/models/GetAllProductChildRequest.ts
|
|
485
490
|
src/models/GetAllProductRangeRequest.ts
|
|
491
|
+
src/models/GetAllProductRegistrationRequest.ts
|
|
486
492
|
src/models/GetAllProductRequest.ts
|
|
487
493
|
src/models/GetAllProductTypeRequest.ts
|
|
488
494
|
src/models/GetAllSupplierRequest.ts
|
|
@@ -508,6 +514,7 @@ src/models/IndexOverlayTemplateRequest.ts
|
|
|
508
514
|
src/models/IndexProductCategoryRequest.ts
|
|
509
515
|
src/models/IndexProductChildRequest.ts
|
|
510
516
|
src/models/IndexProductRangeRequest.ts
|
|
517
|
+
src/models/IndexProductRegistrationRequest.ts
|
|
511
518
|
src/models/IndexProductRequest.ts
|
|
512
519
|
src/models/IndexProductTypeRequest.ts
|
|
513
520
|
src/models/IndexSiteNotificationRequest.ts
|
|
@@ -516,6 +523,7 @@ src/models/IndexSupplierRequest.ts
|
|
|
516
523
|
src/models/IndexTagRequest.ts
|
|
517
524
|
src/models/LabelResource.ts
|
|
518
525
|
src/models/LabelResourceArrayResponse.ts
|
|
526
|
+
src/models/ListAssetsProductRegistrationRequest.ts
|
|
519
527
|
src/models/ModelAttributeListResource.ts
|
|
520
528
|
src/models/ModelAttributeListResourceArrayResponse.ts
|
|
521
529
|
src/models/ModelAttributeResource.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @digital8/lighting-illusions-ts-sdk@0.0.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.1437
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -156,6 +156,10 @@ All URIs are relative to *http://localhost/api*
|
|
|
156
156
|
*ProductRangeApi* | [**showProductRange**](docs/ProductRangeApi.md#showproductrange) | **GET** /admin-api/product-range/{productRange} | Auto-generated: showProductRange
|
|
157
157
|
*ProductRangeApi* | [**storeProductRange**](docs/ProductRangeApi.md#storeproductrangeoperation) | **POST** /admin-api/product-range/create | Auto-generated: storeProductRange
|
|
158
158
|
*ProductRangeApi* | [**updateProductRange**](docs/ProductRangeApi.md#updateproductrangeoperation) | **PUT** /admin-api/product-range/{productRange}/update | Auto-generated: updateProductRange
|
|
159
|
+
*ProductRegistrationApi* | [**getAllProductRegistration**](docs/ProductRegistrationApi.md#getallproductregistrationoperation) | **POST** /admin-api/product-registration/all | Auto-generated: getAllProductRegistration
|
|
160
|
+
*ProductRegistrationApi* | [**indexProductRegistration**](docs/ProductRegistrationApi.md#indexproductregistrationoperation) | **POST** /admin-api/product-registration/list | Auto-generated: indexProductRegistration
|
|
161
|
+
*ProductRegistrationApi* | [**listAssetsProductRegistration**](docs/ProductRegistrationApi.md#listassetsproductregistrationoperation) | **POST** /admin-api/product-registration/{productRegistration}/assets | Auto-generated: listAssetsProductRegistration
|
|
162
|
+
*ProductRegistrationApi* | [**showProductRegistration**](docs/ProductRegistrationApi.md#showproductregistration) | **GET** /admin-api/product-registration/{productRegistration} | Auto-generated: showProductRegistration
|
|
159
163
|
*ProductTypeApi* | [**attachAttributeProductType**](docs/ProductTypeApi.md#attachattributeproducttypeoperation) | **POST** /admin-api/product-type/{productType}/attach-attribute | Auto-generated: attachAttributeProductType
|
|
160
164
|
*ProductTypeApi* | [**destroyProductType**](docs/ProductTypeApi.md#destroyproducttype) | **DELETE** /admin-api/product-type/{productType}/delete | Auto-generated: destroyProductType
|
|
161
165
|
*ProductTypeApi* | [**detachAttributeProductType**](docs/ProductTypeApi.md#detachattributeproducttype) | **POST** /admin-api/product-type/{productType}/detach-attribute/{attribute} | Auto-generated: detachAttributeProductType
|
|
@@ -279,6 +283,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
279
283
|
- [GetAllProductCategoryRequest](docs/GetAllProductCategoryRequest.md)
|
|
280
284
|
- [GetAllProductChildRequest](docs/GetAllProductChildRequest.md)
|
|
281
285
|
- [GetAllProductRangeRequest](docs/GetAllProductRangeRequest.md)
|
|
286
|
+
- [GetAllProductRegistrationRequest](docs/GetAllProductRegistrationRequest.md)
|
|
282
287
|
- [GetAllProductRequest](docs/GetAllProductRequest.md)
|
|
283
288
|
- [GetAllProductTypeRequest](docs/GetAllProductTypeRequest.md)
|
|
284
289
|
- [GetAllSupplierRequest](docs/GetAllSupplierRequest.md)
|
|
@@ -304,6 +309,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
304
309
|
- [IndexProductCategoryRequest](docs/IndexProductCategoryRequest.md)
|
|
305
310
|
- [IndexProductChildRequest](docs/IndexProductChildRequest.md)
|
|
306
311
|
- [IndexProductRangeRequest](docs/IndexProductRangeRequest.md)
|
|
312
|
+
- [IndexProductRegistrationRequest](docs/IndexProductRegistrationRequest.md)
|
|
307
313
|
- [IndexProductRequest](docs/IndexProductRequest.md)
|
|
308
314
|
- [IndexProductTypeRequest](docs/IndexProductTypeRequest.md)
|
|
309
315
|
- [IndexSiteNotificationRequest](docs/IndexSiteNotificationRequest.md)
|
|
@@ -312,6 +318,7 @@ All URIs are relative to *http://localhost/api*
|
|
|
312
318
|
- [IndexTagRequest](docs/IndexTagRequest.md)
|
|
313
319
|
- [LabelResource](docs/LabelResource.md)
|
|
314
320
|
- [LabelResourceArrayResponse](docs/LabelResourceArrayResponse.md)
|
|
321
|
+
- [ListAssetsProductRegistrationRequest](docs/ListAssetsProductRegistrationRequest.md)
|
|
315
322
|
- [ModelAttributeListResource](docs/ModelAttributeListResource.md)
|
|
316
323
|
- [ModelAttributeListResourceArrayResponse](docs/ModelAttributeListResourceArrayResponse.md)
|
|
317
324
|
- [ModelAttributeResource](docs/ModelAttributeResource.md)
|
|
@@ -568,7 +575,7 @@ and is automatically generated by the
|
|
|
568
575
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
569
576
|
|
|
570
577
|
- API version: `1.0.0`
|
|
571
|
-
- Package version: `0.0.
|
|
578
|
+
- Package version: `0.0.1437`
|
|
572
579
|
- Generator version: `7.20.0`
|
|
573
580
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
574
581
|
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
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 * as runtime from '../runtime';
|
|
13
|
+
import type { GetAllProductRegistrationRequest, IndexProductRegistrationRequest, ListAssetsProductRegistrationRequest, PaginatedProductRegistrationAssetResourceResponse, PaginatedProductRegistrationListResourceResponse, ProductRegistrationLiteResourceArrayResponse, ProductRegistrationResource } from '../models/index';
|
|
14
|
+
export interface GetAllProductRegistrationOperationRequest {
|
|
15
|
+
getAllProductRegistrationRequest?: GetAllProductRegistrationRequest;
|
|
16
|
+
}
|
|
17
|
+
export interface IndexProductRegistrationOperationRequest {
|
|
18
|
+
indexProductRegistrationRequest?: IndexProductRegistrationRequest;
|
|
19
|
+
}
|
|
20
|
+
export interface ListAssetsProductRegistrationOperationRequest {
|
|
21
|
+
productRegistration: number;
|
|
22
|
+
listAssetsProductRegistrationRequest?: ListAssetsProductRegistrationRequest;
|
|
23
|
+
}
|
|
24
|
+
export interface ShowProductRegistrationRequest {
|
|
25
|
+
productRegistration: number;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class ProductRegistrationApi extends runtime.BaseAPI {
|
|
31
|
+
/**
|
|
32
|
+
* Creates request options for getAllProductRegistration without sending the request
|
|
33
|
+
*/
|
|
34
|
+
getAllProductRegistrationRequestOpts(requestParameters: GetAllProductRegistrationOperationRequest): Promise<runtime.RequestOpts>;
|
|
35
|
+
/**
|
|
36
|
+
* Auto-generated: getAllProductRegistration
|
|
37
|
+
*/
|
|
38
|
+
getAllProductRegistrationRaw(requestParameters: GetAllProductRegistrationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProductRegistrationLiteResourceArrayResponse>>;
|
|
39
|
+
/**
|
|
40
|
+
* Auto-generated: getAllProductRegistration
|
|
41
|
+
*/
|
|
42
|
+
getAllProductRegistration(requestParameters?: GetAllProductRegistrationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductRegistrationLiteResourceArrayResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* Creates request options for indexProductRegistration without sending the request
|
|
45
|
+
*/
|
|
46
|
+
indexProductRegistrationRequestOpts(requestParameters: IndexProductRegistrationOperationRequest): Promise<runtime.RequestOpts>;
|
|
47
|
+
/**
|
|
48
|
+
* Auto-generated: indexProductRegistration
|
|
49
|
+
*/
|
|
50
|
+
indexProductRegistrationRaw(requestParameters: IndexProductRegistrationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedProductRegistrationListResourceResponse>>;
|
|
51
|
+
/**
|
|
52
|
+
* Auto-generated: indexProductRegistration
|
|
53
|
+
*/
|
|
54
|
+
indexProductRegistration(requestParameters?: IndexProductRegistrationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProductRegistrationListResourceResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* Creates request options for listAssetsProductRegistration without sending the request
|
|
57
|
+
*/
|
|
58
|
+
listAssetsProductRegistrationRequestOpts(requestParameters: ListAssetsProductRegistrationOperationRequest): Promise<runtime.RequestOpts>;
|
|
59
|
+
/**
|
|
60
|
+
* Auto-generated: listAssetsProductRegistration
|
|
61
|
+
*/
|
|
62
|
+
listAssetsProductRegistrationRaw(requestParameters: ListAssetsProductRegistrationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedProductRegistrationAssetResourceResponse>>;
|
|
63
|
+
/**
|
|
64
|
+
* Auto-generated: listAssetsProductRegistration
|
|
65
|
+
*/
|
|
66
|
+
listAssetsProductRegistration(requestParameters: ListAssetsProductRegistrationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProductRegistrationAssetResourceResponse>;
|
|
67
|
+
/**
|
|
68
|
+
* Creates request options for showProductRegistration without sending the request
|
|
69
|
+
*/
|
|
70
|
+
showProductRegistrationRequestOpts(requestParameters: ShowProductRegistrationRequest): Promise<runtime.RequestOpts>;
|
|
71
|
+
/**
|
|
72
|
+
* Auto-generated: showProductRegistration
|
|
73
|
+
*/
|
|
74
|
+
showProductRegistrationRaw(requestParameters: ShowProductRegistrationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProductRegistrationResource>>;
|
|
75
|
+
/**
|
|
76
|
+
* Auto-generated: showProductRegistration
|
|
77
|
+
*/
|
|
78
|
+
showProductRegistration(requestParameters: ShowProductRegistrationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductRegistrationResource>;
|
|
79
|
+
}
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* My API
|
|
6
|
+
* API documentation for my Laravel app
|
|
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
|
+
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 __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
31
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
32
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
33
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
34
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
35
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
36
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
40
|
+
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);
|
|
41
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
42
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
43
|
+
function step(op) {
|
|
44
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
45
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
46
|
+
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;
|
|
47
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
48
|
+
switch (op[0]) {
|
|
49
|
+
case 0: case 1: t = op; break;
|
|
50
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
51
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
52
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
53
|
+
default:
|
|
54
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
55
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
56
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
57
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
58
|
+
if (t[2]) _.ops.pop();
|
|
59
|
+
_.trys.pop(); continue;
|
|
60
|
+
}
|
|
61
|
+
op = body.call(thisArg, _);
|
|
62
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
63
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
|
+
exports.ProductRegistrationApi = void 0;
|
|
68
|
+
var runtime = require("../runtime");
|
|
69
|
+
var index_1 = require("../models/index");
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
*/
|
|
73
|
+
var ProductRegistrationApi = /** @class */ (function (_super) {
|
|
74
|
+
__extends(ProductRegistrationApi, _super);
|
|
75
|
+
function ProductRegistrationApi() {
|
|
76
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Creates request options for getAllProductRegistration without sending the request
|
|
80
|
+
*/
|
|
81
|
+
ProductRegistrationApi.prototype.getAllProductRegistrationRequestOpts = function (requestParameters) {
|
|
82
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
83
|
+
var queryParameters, headerParameters, urlPath;
|
|
84
|
+
return __generator(this, function (_a) {
|
|
85
|
+
queryParameters = {};
|
|
86
|
+
headerParameters = {};
|
|
87
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
88
|
+
urlPath = "/admin-api/product-registration/all";
|
|
89
|
+
return [2 /*return*/, {
|
|
90
|
+
path: urlPath,
|
|
91
|
+
method: 'POST',
|
|
92
|
+
headers: headerParameters,
|
|
93
|
+
query: queryParameters,
|
|
94
|
+
body: (0, index_1.GetAllProductRegistrationRequestToJSON)(requestParameters['getAllProductRegistrationRequest']),
|
|
95
|
+
}];
|
|
96
|
+
});
|
|
97
|
+
});
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* Auto-generated: getAllProductRegistration
|
|
101
|
+
*/
|
|
102
|
+
ProductRegistrationApi.prototype.getAllProductRegistrationRaw = function (requestParameters, initOverrides) {
|
|
103
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
104
|
+
var requestOptions, response;
|
|
105
|
+
return __generator(this, function (_a) {
|
|
106
|
+
switch (_a.label) {
|
|
107
|
+
case 0: return [4 /*yield*/, this.getAllProductRegistrationRequestOpts(requestParameters)];
|
|
108
|
+
case 1:
|
|
109
|
+
requestOptions = _a.sent();
|
|
110
|
+
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
111
|
+
case 2:
|
|
112
|
+
response = _a.sent();
|
|
113
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.ProductRegistrationLiteResourceArrayResponseFromJSON)(jsonValue); })];
|
|
114
|
+
}
|
|
115
|
+
});
|
|
116
|
+
});
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Auto-generated: getAllProductRegistration
|
|
120
|
+
*/
|
|
121
|
+
ProductRegistrationApi.prototype.getAllProductRegistration = function () {
|
|
122
|
+
return __awaiter(this, arguments, void 0, function (requestParameters, initOverrides) {
|
|
123
|
+
var response;
|
|
124
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
125
|
+
return __generator(this, function (_a) {
|
|
126
|
+
switch (_a.label) {
|
|
127
|
+
case 0: return [4 /*yield*/, this.getAllProductRegistrationRaw(requestParameters, initOverrides)];
|
|
128
|
+
case 1:
|
|
129
|
+
response = _a.sent();
|
|
130
|
+
return [4 /*yield*/, response.value()];
|
|
131
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
132
|
+
}
|
|
133
|
+
});
|
|
134
|
+
});
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* Creates request options for indexProductRegistration without sending the request
|
|
138
|
+
*/
|
|
139
|
+
ProductRegistrationApi.prototype.indexProductRegistrationRequestOpts = function (requestParameters) {
|
|
140
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
141
|
+
var queryParameters, headerParameters, urlPath;
|
|
142
|
+
return __generator(this, function (_a) {
|
|
143
|
+
queryParameters = {};
|
|
144
|
+
headerParameters = {};
|
|
145
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
146
|
+
urlPath = "/admin-api/product-registration/list";
|
|
147
|
+
return [2 /*return*/, {
|
|
148
|
+
path: urlPath,
|
|
149
|
+
method: 'POST',
|
|
150
|
+
headers: headerParameters,
|
|
151
|
+
query: queryParameters,
|
|
152
|
+
body: (0, index_1.IndexProductRegistrationRequestToJSON)(requestParameters['indexProductRegistrationRequest']),
|
|
153
|
+
}];
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* Auto-generated: indexProductRegistration
|
|
159
|
+
*/
|
|
160
|
+
ProductRegistrationApi.prototype.indexProductRegistrationRaw = function (requestParameters, initOverrides) {
|
|
161
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
162
|
+
var requestOptions, response;
|
|
163
|
+
return __generator(this, function (_a) {
|
|
164
|
+
switch (_a.label) {
|
|
165
|
+
case 0: return [4 /*yield*/, this.indexProductRegistrationRequestOpts(requestParameters)];
|
|
166
|
+
case 1:
|
|
167
|
+
requestOptions = _a.sent();
|
|
168
|
+
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
169
|
+
case 2:
|
|
170
|
+
response = _a.sent();
|
|
171
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedProductRegistrationListResourceResponseFromJSON)(jsonValue); })];
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
});
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* Auto-generated: indexProductRegistration
|
|
178
|
+
*/
|
|
179
|
+
ProductRegistrationApi.prototype.indexProductRegistration = function () {
|
|
180
|
+
return __awaiter(this, arguments, void 0, function (requestParameters, initOverrides) {
|
|
181
|
+
var response;
|
|
182
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
183
|
+
return __generator(this, function (_a) {
|
|
184
|
+
switch (_a.label) {
|
|
185
|
+
case 0: return [4 /*yield*/, this.indexProductRegistrationRaw(requestParameters, initOverrides)];
|
|
186
|
+
case 1:
|
|
187
|
+
response = _a.sent();
|
|
188
|
+
return [4 /*yield*/, response.value()];
|
|
189
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
});
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* Creates request options for listAssetsProductRegistration without sending the request
|
|
196
|
+
*/
|
|
197
|
+
ProductRegistrationApi.prototype.listAssetsProductRegistrationRequestOpts = function (requestParameters) {
|
|
198
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
199
|
+
var queryParameters, headerParameters, urlPath;
|
|
200
|
+
return __generator(this, function (_a) {
|
|
201
|
+
if (requestParameters['productRegistration'] == null) {
|
|
202
|
+
throw new runtime.RequiredError('productRegistration', 'Required parameter "productRegistration" was null or undefined when calling listAssetsProductRegistration().');
|
|
203
|
+
}
|
|
204
|
+
queryParameters = {};
|
|
205
|
+
headerParameters = {};
|
|
206
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
207
|
+
urlPath = "/admin-api/product-registration/{productRegistration}/assets";
|
|
208
|
+
urlPath = urlPath.replace("{".concat("productRegistration", "}"), encodeURIComponent(String(requestParameters['productRegistration'])));
|
|
209
|
+
return [2 /*return*/, {
|
|
210
|
+
path: urlPath,
|
|
211
|
+
method: 'POST',
|
|
212
|
+
headers: headerParameters,
|
|
213
|
+
query: queryParameters,
|
|
214
|
+
body: (0, index_1.ListAssetsProductRegistrationRequestToJSON)(requestParameters['listAssetsProductRegistrationRequest']),
|
|
215
|
+
}];
|
|
216
|
+
});
|
|
217
|
+
});
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* Auto-generated: listAssetsProductRegistration
|
|
221
|
+
*/
|
|
222
|
+
ProductRegistrationApi.prototype.listAssetsProductRegistrationRaw = function (requestParameters, initOverrides) {
|
|
223
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
224
|
+
var requestOptions, response;
|
|
225
|
+
return __generator(this, function (_a) {
|
|
226
|
+
switch (_a.label) {
|
|
227
|
+
case 0: return [4 /*yield*/, this.listAssetsProductRegistrationRequestOpts(requestParameters)];
|
|
228
|
+
case 1:
|
|
229
|
+
requestOptions = _a.sent();
|
|
230
|
+
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
231
|
+
case 2:
|
|
232
|
+
response = _a.sent();
|
|
233
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedProductRegistrationAssetResourceResponseFromJSON)(jsonValue); })];
|
|
234
|
+
}
|
|
235
|
+
});
|
|
236
|
+
});
|
|
237
|
+
};
|
|
238
|
+
/**
|
|
239
|
+
* Auto-generated: listAssetsProductRegistration
|
|
240
|
+
*/
|
|
241
|
+
ProductRegistrationApi.prototype.listAssetsProductRegistration = function (requestParameters, initOverrides) {
|
|
242
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
243
|
+
var response;
|
|
244
|
+
return __generator(this, function (_a) {
|
|
245
|
+
switch (_a.label) {
|
|
246
|
+
case 0: return [4 /*yield*/, this.listAssetsProductRegistrationRaw(requestParameters, initOverrides)];
|
|
247
|
+
case 1:
|
|
248
|
+
response = _a.sent();
|
|
249
|
+
return [4 /*yield*/, response.value()];
|
|
250
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
251
|
+
}
|
|
252
|
+
});
|
|
253
|
+
});
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* Creates request options for showProductRegistration without sending the request
|
|
257
|
+
*/
|
|
258
|
+
ProductRegistrationApi.prototype.showProductRegistrationRequestOpts = function (requestParameters) {
|
|
259
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
260
|
+
var queryParameters, headerParameters, urlPath;
|
|
261
|
+
return __generator(this, function (_a) {
|
|
262
|
+
if (requestParameters['productRegistration'] == null) {
|
|
263
|
+
throw new runtime.RequiredError('productRegistration', 'Required parameter "productRegistration" was null or undefined when calling showProductRegistration().');
|
|
264
|
+
}
|
|
265
|
+
queryParameters = {};
|
|
266
|
+
headerParameters = {};
|
|
267
|
+
urlPath = "/admin-api/product-registration/{productRegistration}";
|
|
268
|
+
urlPath = urlPath.replace("{".concat("productRegistration", "}"), encodeURIComponent(String(requestParameters['productRegistration'])));
|
|
269
|
+
return [2 /*return*/, {
|
|
270
|
+
path: urlPath,
|
|
271
|
+
method: 'GET',
|
|
272
|
+
headers: headerParameters,
|
|
273
|
+
query: queryParameters,
|
|
274
|
+
}];
|
|
275
|
+
});
|
|
276
|
+
});
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* Auto-generated: showProductRegistration
|
|
280
|
+
*/
|
|
281
|
+
ProductRegistrationApi.prototype.showProductRegistrationRaw = function (requestParameters, initOverrides) {
|
|
282
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
283
|
+
var requestOptions, response;
|
|
284
|
+
return __generator(this, function (_a) {
|
|
285
|
+
switch (_a.label) {
|
|
286
|
+
case 0: return [4 /*yield*/, this.showProductRegistrationRequestOpts(requestParameters)];
|
|
287
|
+
case 1:
|
|
288
|
+
requestOptions = _a.sent();
|
|
289
|
+
return [4 /*yield*/, this.request(requestOptions, initOverrides)];
|
|
290
|
+
case 2:
|
|
291
|
+
response = _a.sent();
|
|
292
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.ProductRegistrationResourceFromJSON)(jsonValue); })];
|
|
293
|
+
}
|
|
294
|
+
});
|
|
295
|
+
});
|
|
296
|
+
};
|
|
297
|
+
/**
|
|
298
|
+
* Auto-generated: showProductRegistration
|
|
299
|
+
*/
|
|
300
|
+
ProductRegistrationApi.prototype.showProductRegistration = function (requestParameters, initOverrides) {
|
|
301
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
302
|
+
var response;
|
|
303
|
+
return __generator(this, function (_a) {
|
|
304
|
+
switch (_a.label) {
|
|
305
|
+
case 0: return [4 /*yield*/, this.showProductRegistrationRaw(requestParameters, initOverrides)];
|
|
306
|
+
case 1:
|
|
307
|
+
response = _a.sent();
|
|
308
|
+
return [4 /*yield*/, response.value()];
|
|
309
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
310
|
+
}
|
|
311
|
+
});
|
|
312
|
+
});
|
|
313
|
+
};
|
|
314
|
+
return ProductRegistrationApi;
|
|
315
|
+
}(runtime.BaseAPI));
|
|
316
|
+
exports.ProductRegistrationApi = ProductRegistrationApi;
|
package/dist/apis/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from './OverlayTemplateApi';
|
|
|
9
9
|
export * from './ProductApi';
|
|
10
10
|
export * from './ProductCategoryApi';
|
|
11
11
|
export * from './ProductRangeApi';
|
|
12
|
+
export * from './ProductRegistrationApi';
|
|
12
13
|
export * from './ProductTypeApi';
|
|
13
14
|
export * from './SiteApi';
|
|
14
15
|
export * from './SupplierApi';
|
package/dist/apis/index.js
CHANGED
|
@@ -27,6 +27,7 @@ __exportStar(require("./OverlayTemplateApi"), exports);
|
|
|
27
27
|
__exportStar(require("./ProductApi"), exports);
|
|
28
28
|
__exportStar(require("./ProductCategoryApi"), exports);
|
|
29
29
|
__exportStar(require("./ProductRangeApi"), exports);
|
|
30
|
+
__exportStar(require("./ProductRegistrationApi"), exports);
|
|
30
31
|
__exportStar(require("./ProductTypeApi"), exports);
|
|
31
32
|
__exportStar(require("./SiteApi"), exports);
|
|
32
33
|
__exportStar(require("./SupplierApi"), exports);
|
|
@@ -26,6 +26,8 @@ function instanceOfAddressResource(value) {
|
|
|
26
26
|
return false;
|
|
27
27
|
if (!('line1' in value) || value['line1'] === undefined)
|
|
28
28
|
return false;
|
|
29
|
+
if (!('line2' in value) || value['line2'] === undefined)
|
|
30
|
+
return false;
|
|
29
31
|
if (!('postcode' in value) || value['postcode'] === undefined)
|
|
30
32
|
return false;
|
|
31
33
|
if (!('suburb' in value) || value['suburb'] === undefined)
|
|
@@ -49,7 +51,7 @@ function AddressResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
49
51
|
'id': json['id'] == null ? undefined : json['id'],
|
|
50
52
|
'company': json['company'],
|
|
51
53
|
'line1': json['line1'],
|
|
52
|
-
'line2': json['line2']
|
|
54
|
+
'line2': json['line2'],
|
|
53
55
|
'postcode': json['postcode'],
|
|
54
56
|
'suburb': json['suburb'],
|
|
55
57
|
'country': json['country'],
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
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 GetAllProductRegistrationRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface GetAllProductRegistrationRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof GetAllProductRegistrationRequest
|
|
22
|
+
*/
|
|
23
|
+
search?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {GetAllProductRegistrationRequestSortByEnum}
|
|
27
|
+
* @memberof GetAllProductRegistrationRequest
|
|
28
|
+
*/
|
|
29
|
+
sortBy?: GetAllProductRegistrationRequestSortByEnum;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {GetAllProductRegistrationRequestSortDirectionEnum}
|
|
33
|
+
* @memberof GetAllProductRegistrationRequest
|
|
34
|
+
*/
|
|
35
|
+
sortDirection?: GetAllProductRegistrationRequestSortDirectionEnum;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof GetAllProductRegistrationRequest
|
|
40
|
+
*/
|
|
41
|
+
relatedId?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof GetAllProductRegistrationRequest
|
|
46
|
+
*/
|
|
47
|
+
relatedType?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof GetAllProductRegistrationRequest
|
|
52
|
+
*/
|
|
53
|
+
includesRelations?: boolean;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @export
|
|
57
|
+
*/
|
|
58
|
+
export declare const GetAllProductRegistrationRequestSortByEnum: {
|
|
59
|
+
readonly Id: "id";
|
|
60
|
+
readonly CustomerName: "customer-name";
|
|
61
|
+
readonly CustomerEmail: "customer-email";
|
|
62
|
+
readonly CustomerPhone: "customer-phone";
|
|
63
|
+
readonly CreatedAt: "created_at";
|
|
64
|
+
};
|
|
65
|
+
export type GetAllProductRegistrationRequestSortByEnum = typeof GetAllProductRegistrationRequestSortByEnum[keyof typeof GetAllProductRegistrationRequestSortByEnum];
|
|
66
|
+
/**
|
|
67
|
+
* @export
|
|
68
|
+
*/
|
|
69
|
+
export declare const GetAllProductRegistrationRequestSortDirectionEnum: {
|
|
70
|
+
readonly Asc: "asc";
|
|
71
|
+
readonly Desc: "desc";
|
|
72
|
+
};
|
|
73
|
+
export type GetAllProductRegistrationRequestSortDirectionEnum = typeof GetAllProductRegistrationRequestSortDirectionEnum[keyof typeof GetAllProductRegistrationRequestSortDirectionEnum];
|
|
74
|
+
/**
|
|
75
|
+
* Check if a given object implements the GetAllProductRegistrationRequest interface.
|
|
76
|
+
*/
|
|
77
|
+
export declare function instanceOfGetAllProductRegistrationRequest(value: object): value is GetAllProductRegistrationRequest;
|
|
78
|
+
export declare function GetAllProductRegistrationRequestFromJSON(json: any): GetAllProductRegistrationRequest;
|
|
79
|
+
export declare function GetAllProductRegistrationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAllProductRegistrationRequest;
|
|
80
|
+
export declare function GetAllProductRegistrationRequestToJSON(json: any): GetAllProductRegistrationRequest;
|
|
81
|
+
export declare function GetAllProductRegistrationRequestToJSONTyped(value?: GetAllProductRegistrationRequest | null, ignoreDiscriminator?: boolean): any;
|