@handsondigital/idplugger-admin 2.4.0 → 2.6.0
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 +11 -1
- package/README.md +15 -3
- package/api.ts +720 -33
- package/dist/api.d.ts +595 -21
- package/dist/api.js +214 -0
- package/docs/AdminServiceCustomerApplications200Response.md +26 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInner.md +76 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerClient.md +24 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerProduct.md +22 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerProductOneOf.md +22 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerProgrammingInner.md +22 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerPromotionsInner.md +36 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInner.md +24 -0
- package/docs/AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow.md +22 -0
- package/docs/AdminServiceCustomerCampaigns200Response.md +26 -0
- package/docs/AdminServiceCustomerCampaigns200ResponseContentInner.md +28 -0
- package/docs/AdminUsersList200ResponseUsersInner.md +1 -1
- package/docs/CustomerServiceApi.md +122 -0
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -898,6 +898,61 @@ exports.AuthApi = AuthApi;
|
|
|
898
898
|
var CustomerServiceApiAxiosParamCreator = function (configuration) {
|
|
899
899
|
var _this = this;
|
|
900
900
|
return {
|
|
901
|
+
/**
|
|
902
|
+
* Retorna uma lista de aplicações de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
903
|
+
* @summary Listar aplicações de um cliente no serviço de atendimento ao cliente
|
|
904
|
+
* @param {string} clientId ID do cliente
|
|
905
|
+
* @param {number} [page] Número da página
|
|
906
|
+
* @param {number} [perPage] Itens por página
|
|
907
|
+
* @param {*} [options] Override http request option.
|
|
908
|
+
* @throws {RequiredError}
|
|
909
|
+
*/
|
|
910
|
+
adminServiceCustomerApplications: function (clientId_1, page_1, perPage_1) {
|
|
911
|
+
var args_1 = [];
|
|
912
|
+
for (var _i = 3; _i < arguments.length; _i++) {
|
|
913
|
+
args_1[_i - 3] = arguments[_i];
|
|
914
|
+
}
|
|
915
|
+
return __awaiter(_this, __spreadArray([clientId_1, page_1, perPage_1], args_1, true), void 0, function (clientId, page, perPage, options) {
|
|
916
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
917
|
+
if (options === void 0) { options = {}; }
|
|
918
|
+
return __generator(this, function (_a) {
|
|
919
|
+
switch (_a.label) {
|
|
920
|
+
case 0:
|
|
921
|
+
// verify required parameter 'clientId' is not null or undefined
|
|
922
|
+
(0, common_1.assertParamExists)('adminServiceCustomerApplications', 'clientId', clientId);
|
|
923
|
+
localVarPath = "/admin/service/customer/applications/{client_id}"
|
|
924
|
+
.replace("{".concat("client_id", "}"), encodeURIComponent(String(clientId)));
|
|
925
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
926
|
+
if (configuration) {
|
|
927
|
+
baseOptions = configuration.baseOptions;
|
|
928
|
+
}
|
|
929
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
930
|
+
localVarHeaderParameter = {};
|
|
931
|
+
localVarQueryParameter = {};
|
|
932
|
+
// authentication bearerAuth required
|
|
933
|
+
// http bearer authentication required
|
|
934
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
935
|
+
case 1:
|
|
936
|
+
// authentication bearerAuth required
|
|
937
|
+
// http bearer authentication required
|
|
938
|
+
_a.sent();
|
|
939
|
+
if (page !== undefined) {
|
|
940
|
+
localVarQueryParameter['page'] = page;
|
|
941
|
+
}
|
|
942
|
+
if (perPage !== undefined) {
|
|
943
|
+
localVarQueryParameter['perPage'] = perPage;
|
|
944
|
+
}
|
|
945
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
946
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
947
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
948
|
+
return [2 /*return*/, {
|
|
949
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
950
|
+
options: localVarRequestOptions,
|
|
951
|
+
}];
|
|
952
|
+
}
|
|
953
|
+
});
|
|
954
|
+
});
|
|
955
|
+
},
|
|
901
956
|
/**
|
|
902
957
|
* Retorna uma lista de marcas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
903
958
|
* @summary Listar marcas de um cliente do serviço de atendimento ao cliente
|
|
@@ -957,6 +1012,69 @@ var CustomerServiceApiAxiosParamCreator = function (configuration) {
|
|
|
957
1012
|
});
|
|
958
1013
|
});
|
|
959
1014
|
},
|
|
1015
|
+
/**
|
|
1016
|
+
* Retorna uma lista de campanhas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1017
|
+
* @summary Listar campanhas de um cliente no serviço de atendimento ao cliente
|
|
1018
|
+
* @param {string} clientId ID do cliente
|
|
1019
|
+
* @param {number} [page] Número da página
|
|
1020
|
+
* @param {number} [perPage] Itens por página
|
|
1021
|
+
* @param {string} [status] Status da campanha
|
|
1022
|
+
* @param {string} [name] Nome da campanha
|
|
1023
|
+
* @param {*} [options] Override http request option.
|
|
1024
|
+
* @throws {RequiredError}
|
|
1025
|
+
*/
|
|
1026
|
+
adminServiceCustomerCampaigns: function (clientId_1, page_1, perPage_1, status_1, name_1) {
|
|
1027
|
+
var args_1 = [];
|
|
1028
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
1029
|
+
args_1[_i - 5] = arguments[_i];
|
|
1030
|
+
}
|
|
1031
|
+
return __awaiter(_this, __spreadArray([clientId_1, page_1, perPage_1, status_1, name_1], args_1, true), void 0, function (clientId, page, perPage, status, name, options) {
|
|
1032
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
1033
|
+
if (options === void 0) { options = {}; }
|
|
1034
|
+
return __generator(this, function (_a) {
|
|
1035
|
+
switch (_a.label) {
|
|
1036
|
+
case 0:
|
|
1037
|
+
// verify required parameter 'clientId' is not null or undefined
|
|
1038
|
+
(0, common_1.assertParamExists)('adminServiceCustomerCampaigns', 'clientId', clientId);
|
|
1039
|
+
localVarPath = "/admin/service/customer/campaigns/{client_id}"
|
|
1040
|
+
.replace("{".concat("client_id", "}"), encodeURIComponent(String(clientId)));
|
|
1041
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1042
|
+
if (configuration) {
|
|
1043
|
+
baseOptions = configuration.baseOptions;
|
|
1044
|
+
}
|
|
1045
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
1046
|
+
localVarHeaderParameter = {};
|
|
1047
|
+
localVarQueryParameter = {};
|
|
1048
|
+
// authentication bearerAuth required
|
|
1049
|
+
// http bearer authentication required
|
|
1050
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
1051
|
+
case 1:
|
|
1052
|
+
// authentication bearerAuth required
|
|
1053
|
+
// http bearer authentication required
|
|
1054
|
+
_a.sent();
|
|
1055
|
+
if (page !== undefined) {
|
|
1056
|
+
localVarQueryParameter['page'] = page;
|
|
1057
|
+
}
|
|
1058
|
+
if (perPage !== undefined) {
|
|
1059
|
+
localVarQueryParameter['perPage'] = perPage;
|
|
1060
|
+
}
|
|
1061
|
+
if (status !== undefined) {
|
|
1062
|
+
localVarQueryParameter['status'] = status;
|
|
1063
|
+
}
|
|
1064
|
+
if (name !== undefined) {
|
|
1065
|
+
localVarQueryParameter['name'] = name;
|
|
1066
|
+
}
|
|
1067
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1068
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1069
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1070
|
+
return [2 /*return*/, {
|
|
1071
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1072
|
+
options: localVarRequestOptions,
|
|
1073
|
+
}];
|
|
1074
|
+
}
|
|
1075
|
+
});
|
|
1076
|
+
});
|
|
1077
|
+
},
|
|
960
1078
|
/**
|
|
961
1079
|
* Retorna uma lista de clientes obtidos do serviço de atendimento ao cliente.
|
|
962
1080
|
* @summary Listar clientes do serviço de atendimento ao cliente
|
|
@@ -1026,6 +1144,31 @@ exports.CustomerServiceApiAxiosParamCreator = CustomerServiceApiAxiosParamCreato
|
|
|
1026
1144
|
var CustomerServiceApiFp = function (configuration) {
|
|
1027
1145
|
var localVarAxiosParamCreator = (0, exports.CustomerServiceApiAxiosParamCreator)(configuration);
|
|
1028
1146
|
return {
|
|
1147
|
+
/**
|
|
1148
|
+
* Retorna uma lista de aplicações de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1149
|
+
* @summary Listar aplicações de um cliente no serviço de atendimento ao cliente
|
|
1150
|
+
* @param {string} clientId ID do cliente
|
|
1151
|
+
* @param {number} [page] Número da página
|
|
1152
|
+
* @param {number} [perPage] Itens por página
|
|
1153
|
+
* @param {*} [options] Override http request option.
|
|
1154
|
+
* @throws {RequiredError}
|
|
1155
|
+
*/
|
|
1156
|
+
adminServiceCustomerApplications: function (clientId, page, perPage, options) {
|
|
1157
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1158
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1159
|
+
var _a, _b, _c;
|
|
1160
|
+
return __generator(this, function (_d) {
|
|
1161
|
+
switch (_d.label) {
|
|
1162
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.adminServiceCustomerApplications(clientId, page, perPage, options)];
|
|
1163
|
+
case 1:
|
|
1164
|
+
localVarAxiosArgs = _d.sent();
|
|
1165
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1166
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CustomerServiceApi.adminServiceCustomerApplications']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1167
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1168
|
+
}
|
|
1169
|
+
});
|
|
1170
|
+
});
|
|
1171
|
+
},
|
|
1029
1172
|
/**
|
|
1030
1173
|
* Retorna uma lista de marcas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1031
1174
|
* @summary Listar marcas de um cliente do serviço de atendimento ao cliente
|
|
@@ -1052,6 +1195,33 @@ var CustomerServiceApiFp = function (configuration) {
|
|
|
1052
1195
|
});
|
|
1053
1196
|
});
|
|
1054
1197
|
},
|
|
1198
|
+
/**
|
|
1199
|
+
* Retorna uma lista de campanhas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1200
|
+
* @summary Listar campanhas de um cliente no serviço de atendimento ao cliente
|
|
1201
|
+
* @param {string} clientId ID do cliente
|
|
1202
|
+
* @param {number} [page] Número da página
|
|
1203
|
+
* @param {number} [perPage] Itens por página
|
|
1204
|
+
* @param {string} [status] Status da campanha
|
|
1205
|
+
* @param {string} [name] Nome da campanha
|
|
1206
|
+
* @param {*} [options] Override http request option.
|
|
1207
|
+
* @throws {RequiredError}
|
|
1208
|
+
*/
|
|
1209
|
+
adminServiceCustomerCampaigns: function (clientId, page, perPage, status, name, options) {
|
|
1210
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1211
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1212
|
+
var _a, _b, _c;
|
|
1213
|
+
return __generator(this, function (_d) {
|
|
1214
|
+
switch (_d.label) {
|
|
1215
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.adminServiceCustomerCampaigns(clientId, page, perPage, status, name, options)];
|
|
1216
|
+
case 1:
|
|
1217
|
+
localVarAxiosArgs = _d.sent();
|
|
1218
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1219
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CustomerServiceApi.adminServiceCustomerCampaigns']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1220
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1221
|
+
}
|
|
1222
|
+
});
|
|
1223
|
+
});
|
|
1224
|
+
},
|
|
1055
1225
|
/**
|
|
1056
1226
|
* Retorna uma lista de clientes obtidos do serviço de atendimento ao cliente.
|
|
1057
1227
|
* @summary Listar clientes do serviço de atendimento ao cliente
|
|
@@ -1088,6 +1258,16 @@ exports.CustomerServiceApiFp = CustomerServiceApiFp;
|
|
|
1088
1258
|
var CustomerServiceApiFactory = function (configuration, basePath, axios) {
|
|
1089
1259
|
var localVarFp = (0, exports.CustomerServiceApiFp)(configuration);
|
|
1090
1260
|
return {
|
|
1261
|
+
/**
|
|
1262
|
+
* Retorna uma lista de aplicações de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1263
|
+
* @summary Listar aplicações de um cliente no serviço de atendimento ao cliente
|
|
1264
|
+
* @param {CustomerServiceApiAdminServiceCustomerApplicationsRequest} requestParameters Request parameters.
|
|
1265
|
+
* @param {*} [options] Override http request option.
|
|
1266
|
+
* @throws {RequiredError}
|
|
1267
|
+
*/
|
|
1268
|
+
adminServiceCustomerApplications: function (requestParameters, options) {
|
|
1269
|
+
return localVarFp.adminServiceCustomerApplications(requestParameters.clientId, requestParameters.page, requestParameters.perPage, options).then(function (request) { return request(axios, basePath); });
|
|
1270
|
+
},
|
|
1091
1271
|
/**
|
|
1092
1272
|
* Retorna uma lista de marcas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1093
1273
|
* @summary Listar marcas de um cliente do serviço de atendimento ao cliente
|
|
@@ -1098,6 +1278,16 @@ var CustomerServiceApiFactory = function (configuration, basePath, axios) {
|
|
|
1098
1278
|
adminServiceCustomerBrands: function (requestParameters, options) {
|
|
1099
1279
|
return localVarFp.adminServiceCustomerBrands(requestParameters.clientId, requestParameters.search, requestParameters.page, requestParameters.perPage, options).then(function (request) { return request(axios, basePath); });
|
|
1100
1280
|
},
|
|
1281
|
+
/**
|
|
1282
|
+
* Retorna uma lista de campanhas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1283
|
+
* @summary Listar campanhas de um cliente no serviço de atendimento ao cliente
|
|
1284
|
+
* @param {CustomerServiceApiAdminServiceCustomerCampaignsRequest} requestParameters Request parameters.
|
|
1285
|
+
* @param {*} [options] Override http request option.
|
|
1286
|
+
* @throws {RequiredError}
|
|
1287
|
+
*/
|
|
1288
|
+
adminServiceCustomerCampaigns: function (requestParameters, options) {
|
|
1289
|
+
return localVarFp.adminServiceCustomerCampaigns(requestParameters.clientId, requestParameters.page, requestParameters.perPage, requestParameters.status, requestParameters.name, options).then(function (request) { return request(axios, basePath); });
|
|
1290
|
+
},
|
|
1101
1291
|
/**
|
|
1102
1292
|
* Retorna uma lista de clientes obtidos do serviço de atendimento ao cliente.
|
|
1103
1293
|
* @summary Listar clientes do serviço de atendimento ao cliente
|
|
@@ -1123,6 +1313,18 @@ var CustomerServiceApi = /** @class */ (function (_super) {
|
|
|
1123
1313
|
function CustomerServiceApi() {
|
|
1124
1314
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1125
1315
|
}
|
|
1316
|
+
/**
|
|
1317
|
+
* Retorna uma lista de aplicações de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1318
|
+
* @summary Listar aplicações de um cliente no serviço de atendimento ao cliente
|
|
1319
|
+
* @param {CustomerServiceApiAdminServiceCustomerApplicationsRequest} requestParameters Request parameters.
|
|
1320
|
+
* @param {*} [options] Override http request option.
|
|
1321
|
+
* @throws {RequiredError}
|
|
1322
|
+
* @memberof CustomerServiceApi
|
|
1323
|
+
*/
|
|
1324
|
+
CustomerServiceApi.prototype.adminServiceCustomerApplications = function (requestParameters, options) {
|
|
1325
|
+
var _this = this;
|
|
1326
|
+
return (0, exports.CustomerServiceApiFp)(this.configuration).adminServiceCustomerApplications(requestParameters.clientId, requestParameters.page, requestParameters.perPage, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1327
|
+
};
|
|
1126
1328
|
/**
|
|
1127
1329
|
* Retorna uma lista de marcas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1128
1330
|
* @summary Listar marcas de um cliente do serviço de atendimento ao cliente
|
|
@@ -1135,6 +1337,18 @@ var CustomerServiceApi = /** @class */ (function (_super) {
|
|
|
1135
1337
|
var _this = this;
|
|
1136
1338
|
return (0, exports.CustomerServiceApiFp)(this.configuration).adminServiceCustomerBrands(requestParameters.clientId, requestParameters.search, requestParameters.page, requestParameters.perPage, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1137
1339
|
};
|
|
1340
|
+
/**
|
|
1341
|
+
* Retorna uma lista de campanhas de um cliente específico obtidas do serviço de atendimento ao cliente.
|
|
1342
|
+
* @summary Listar campanhas de um cliente no serviço de atendimento ao cliente
|
|
1343
|
+
* @param {CustomerServiceApiAdminServiceCustomerCampaignsRequest} requestParameters Request parameters.
|
|
1344
|
+
* @param {*} [options] Override http request option.
|
|
1345
|
+
* @throws {RequiredError}
|
|
1346
|
+
* @memberof CustomerServiceApi
|
|
1347
|
+
*/
|
|
1348
|
+
CustomerServiceApi.prototype.adminServiceCustomerCampaigns = function (requestParameters, options) {
|
|
1349
|
+
var _this = this;
|
|
1350
|
+
return (0, exports.CustomerServiceApiFp)(this.configuration).adminServiceCustomerCampaigns(requestParameters.clientId, requestParameters.page, requestParameters.perPage, requestParameters.status, requestParameters.name, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1351
|
+
};
|
|
1138
1352
|
/**
|
|
1139
1353
|
* Retorna uma lista de clientes obtidos do serviço de atendimento ao cliente.
|
|
1140
1354
|
* @summary Listar clientes do serviço de atendimento ao cliente
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**entity** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**action** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**content** | [**Array<AdminServiceCustomerApplications200ResponseContentInner>**](AdminServiceCustomerApplications200ResponseContentInner.md) | | [optional] [default to undefined]
|
|
11
|
+
**paging** | [**AdminServiceCustomerClients200ResponsePaging**](AdminServiceCustomerClients200ResponsePaging.md) | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { AdminServiceCustomerApplications200Response } from '@handsondigital/idplugger-admin';
|
|
17
|
+
|
|
18
|
+
const instance: AdminServiceCustomerApplications200Response = {
|
|
19
|
+
entity,
|
|
20
|
+
action,
|
|
21
|
+
content,
|
|
22
|
+
paging,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | UUID | [optional] [default to undefined]
|
|
9
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**framework** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**language** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**version** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**infrastructure** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**status** | **boolean** | | [optional] [default to undefined]
|
|
16
|
+
**access_url** | **string** | | [optional] [default to undefined]
|
|
17
|
+
**access_homolog_url** | **string** | | [optional] [default to undefined]
|
|
18
|
+
**access_admin_url** | **string** | | [optional] [default to undefined]
|
|
19
|
+
**google_analytics_id** | **string** | | [optional] [default to undefined]
|
|
20
|
+
**google_tag_manager_id** | **string** | | [optional] [default to undefined]
|
|
21
|
+
**github_repository** | **string** | | [optional] [default to undefined]
|
|
22
|
+
**github_repository_name** | **string** | | [optional] [default to undefined]
|
|
23
|
+
**github_last_updated** | **string** | | [optional] [default to undefined]
|
|
24
|
+
**url_monitoring** | **string** | | [optional] [default to undefined]
|
|
25
|
+
**notifications** | **object** | | [optional] [default to undefined]
|
|
26
|
+
**date_creation** | **string** | | [optional] [default to undefined]
|
|
27
|
+
**date_updated** | **string** | | [optional] [default to undefined]
|
|
28
|
+
**created_at** | **string** | | [optional] [default to undefined]
|
|
29
|
+
**updated_at** | **string** | | [optional] [default to undefined]
|
|
30
|
+
**client** | [**AdminServiceCustomerApplications200ResponseContentInnerClient**](AdminServiceCustomerApplications200ResponseContentInnerClient.md) | | [optional] [default to undefined]
|
|
31
|
+
**brand** | **object** | | [optional] [default to undefined]
|
|
32
|
+
**contracts** | **Array<object>** | | [optional] [default to undefined]
|
|
33
|
+
**programming** | [**Array<AdminServiceCustomerApplications200ResponseContentInnerProgrammingInner>**](AdminServiceCustomerApplications200ResponseContentInnerProgrammingInner.md) | | [optional] [default to undefined]
|
|
34
|
+
**workflow_schedules** | [**Array<AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInner>**](AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInner.md) | | [optional] [default to undefined]
|
|
35
|
+
**promotions** | [**Array<AdminServiceCustomerApplications200ResponseContentInnerPromotionsInner>**](AdminServiceCustomerApplications200ResponseContentInnerPromotionsInner.md) | | [optional] [default to undefined]
|
|
36
|
+
**product** | [**AdminServiceCustomerApplications200ResponseContentInnerProduct**](AdminServiceCustomerApplications200ResponseContentInnerProduct.md) | | [optional] [default to undefined]
|
|
37
|
+
|
|
38
|
+
## Example
|
|
39
|
+
|
|
40
|
+
```typescript
|
|
41
|
+
import { AdminServiceCustomerApplications200ResponseContentInner } from '@handsondigital/idplugger-admin';
|
|
42
|
+
|
|
43
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInner = {
|
|
44
|
+
id,
|
|
45
|
+
name,
|
|
46
|
+
framework,
|
|
47
|
+
language,
|
|
48
|
+
description,
|
|
49
|
+
version,
|
|
50
|
+
infrastructure,
|
|
51
|
+
status,
|
|
52
|
+
access_url,
|
|
53
|
+
access_homolog_url,
|
|
54
|
+
access_admin_url,
|
|
55
|
+
google_analytics_id,
|
|
56
|
+
google_tag_manager_id,
|
|
57
|
+
github_repository,
|
|
58
|
+
github_repository_name,
|
|
59
|
+
github_last_updated,
|
|
60
|
+
url_monitoring,
|
|
61
|
+
notifications,
|
|
62
|
+
date_creation,
|
|
63
|
+
date_updated,
|
|
64
|
+
created_at,
|
|
65
|
+
updated_at,
|
|
66
|
+
client,
|
|
67
|
+
brand,
|
|
68
|
+
contracts,
|
|
69
|
+
programming,
|
|
70
|
+
workflow_schedules,
|
|
71
|
+
promotions,
|
|
72
|
+
product,
|
|
73
|
+
};
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerClient
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**nome_fantasia** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**razao_social** | **string** | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerClient } from '@handsondigital/idplugger-admin';
|
|
16
|
+
|
|
17
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerClient = {
|
|
18
|
+
id,
|
|
19
|
+
nome_fantasia,
|
|
20
|
+
razao_social,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerProduct
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**descricao** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerProduct } from '@handsondigital/idplugger-admin';
|
|
15
|
+
|
|
16
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerProduct = {
|
|
17
|
+
id,
|
|
18
|
+
descricao,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerProductOneOf
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**descricao** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerProductOneOf } from '@handsondigital/idplugger-admin';
|
|
15
|
+
|
|
16
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerProductOneOf = {
|
|
17
|
+
id,
|
|
18
|
+
descricao,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerProgrammingInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**title** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerProgrammingInner } from '@handsondigital/idplugger-admin';
|
|
15
|
+
|
|
16
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerProgrammingInner = {
|
|
17
|
+
id,
|
|
18
|
+
title,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerPromotionsInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**order_id** | **number** | | [optional] [default to undefined]
|
|
10
|
+
**promotion_id** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**promotion_name** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**url** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**start_date** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**end_date** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**start_delivery_date** | **string** | | [optional] [default to undefined]
|
|
16
|
+
**end_delivery_date** | **string** | | [optional] [default to undefined]
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerPromotionsInner } from '@handsondigital/idplugger-admin';
|
|
22
|
+
|
|
23
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerPromotionsInner = {
|
|
24
|
+
id,
|
|
25
|
+
order_id,
|
|
26
|
+
promotion_id,
|
|
27
|
+
promotion_name,
|
|
28
|
+
url,
|
|
29
|
+
start_date,
|
|
30
|
+
end_date,
|
|
31
|
+
start_delivery_date,
|
|
32
|
+
end_delivery_date,
|
|
33
|
+
};
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**workflow** | [**AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow**](AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow.md) | | [optional] [default to undefined]
|
|
10
|
+
**current_stage** | [**AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow**](AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow.md) | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInner } from '@handsondigital/idplugger-admin';
|
|
16
|
+
|
|
17
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInner = {
|
|
18
|
+
id,
|
|
19
|
+
workflow,
|
|
20
|
+
current_stage,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow } from '@handsondigital/idplugger-admin';
|
|
15
|
+
|
|
16
|
+
const instance: AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow = {
|
|
17
|
+
id,
|
|
18
|
+
name,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# AdminServiceCustomerCampaigns200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**entity** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**action** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**content** | [**Array<AdminServiceCustomerCampaigns200ResponseContentInner>**](AdminServiceCustomerCampaigns200ResponseContentInner.md) | | [optional] [default to undefined]
|
|
11
|
+
**paging** | [**AdminServiceCustomerClients200ResponsePaging**](AdminServiceCustomerClients200ResponsePaging.md) | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { AdminServiceCustomerCampaigns200Response } from '@handsondigital/idplugger-admin';
|
|
17
|
+
|
|
18
|
+
const instance: AdminServiceCustomerCampaigns200Response = {
|
|
19
|
+
entity,
|
|
20
|
+
action,
|
|
21
|
+
content,
|
|
22
|
+
paging,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# AdminServiceCustomerCampaigns200ResponseContentInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**promotion_id** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**status** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**client_id** | **number** | | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { AdminServiceCustomerCampaigns200ResponseContentInner } from '@handsondigital/idplugger-admin';
|
|
18
|
+
|
|
19
|
+
const instance: AdminServiceCustomerCampaigns200ResponseContentInner = {
|
|
20
|
+
id,
|
|
21
|
+
promotion_id,
|
|
22
|
+
name,
|
|
23
|
+
status,
|
|
24
|
+
client_id,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**name** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**email** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**role** | **string** | | [optional] [default to undefined]
|
|
13
|
-
**permissions** | [**Array<
|
|
13
|
+
**permissions** | [**Array<AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow>**](AdminServiceCustomerApplications200ResponseContentInnerWorkflowSchedulesInnerWorkflow.md) | Incluído apenas se _include=permissions | [optional] [default to undefined]
|
|
14
14
|
|
|
15
15
|
## Example
|
|
16
16
|
|