@arrowsphere/api-client 3.29.0 → 3.30.0-rc-jpb.1
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/build/abstractGraphQLClient.d.ts +1 -1
- package/build/{abstractClient.d.ts → abstractRestfulClient.d.ts} +4 -4
- package/build/{abstractClient.js → abstractRestfulClient.js} +7 -7
- package/build/campaign/campaignClient.d.ts +2 -2
- package/build/campaign/campaignClient.js +2 -2
- package/build/cart/cartClient.d.ts +2 -2
- package/build/cart/cartClient.js +2 -2
- package/build/catalog/catalogClient.d.ts +2 -2
- package/build/catalog/catalogClient.js +2 -2
- package/build/consumption/consumptionClient.d.ts +2 -2
- package/build/consumption/consumptionClient.js +2 -2
- package/build/contact/contactClient.d.ts +2 -2
- package/build/contact/contactClient.js +2 -2
- package/build/customers/customersClient.d.ts +2 -2
- package/build/customers/customersClient.js +2 -2
- package/build/general/checkDomainClient.d.ts +2 -2
- package/build/general/checkDomainClient.js +2 -2
- package/build/general/whoAmIClient.d.ts +2 -2
- package/build/general/whoAmIClient.js +2 -2
- package/build/index.d.ts +2 -1
- package/build/index.js +2 -1
- package/build/licenses/entities/findResult.d.ts +1 -1
- package/build/licenses/licensesClient.d.ts +2 -2
- package/build/licenses/licensesClient.js +2 -2
- package/build/orders/ordersClient.d.ts +2 -2
- package/build/orders/ordersClient.js +2 -2
- package/build/publicApiClient.d.ts +4 -2
- package/build/publicApiClient.js +9 -2
- package/build/security/register/registerClient.d.ts +2 -2
- package/build/security/register/registerClient.js +2 -2
- package/build/security/standards/standardsClient.d.ts +2 -2
- package/build/security/standards/standardsClient.js +2 -2
- package/build/subscriptions/subscriptionsClient.d.ts +2 -2
- package/build/subscriptions/subscriptionsClient.js +2 -2
- package/build/supportCenter/payloads/issue.d.ts +1 -1
- package/build/supportCenter/supportCenterClient.d.ts +2 -2
- package/build/supportCenter/supportCenterClient.js +2 -2
- package/build/user/UserClient.d.ts +10 -0
- package/build/user/UserClient.js +20 -0
- package/build/user/index.d.ts +2 -0
- package/build/user/index.js +19 -0
- package/build/user/types/CompleteWhoAmI.d.ts +18 -0
- package/build/user/types/CompleteWhoAmI.js +47 -0
- package/build/user/types/CompleteWhoAmICompany.d.ts +28 -0
- package/build/user/types/CompleteWhoAmICompany.js +74 -0
- package/build/user/types/CompleteWhoAmIUser.d.ts +37 -0
- package/build/user/types/CompleteWhoAmIUser.js +94 -0
- package/build/user/types/index.d.ts +3 -0
- package/build/user/types/index.js +20 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GraphQLClient } from 'graphql-request';
|
|
2
2
|
import * as Dom from 'graphql-request/dist/types.dom';
|
|
3
|
-
import { Options } from './
|
|
3
|
+
import { Options } from './abstractRestfulClient';
|
|
4
4
|
import { GetProductsType } from './catalog';
|
|
5
5
|
import { AbstractHttpClient } from './AbstractHttpClient';
|
|
6
6
|
export declare type GraphQLResponseTypes = GetProductsType;
|
|
@@ -38,7 +38,7 @@ export declare type ConfigurationsClient = {
|
|
|
38
38
|
export declare type ExtraInformationType = {
|
|
39
39
|
[ExtraInformationFields.COLUMN_EXTRA_INFORMATION]?: Record<string, unknown>;
|
|
40
40
|
};
|
|
41
|
-
export declare abstract class
|
|
41
|
+
export declare abstract class AbstractRestfulClient extends AbstractHttpClient {
|
|
42
42
|
/**
|
|
43
43
|
* Axios instance for client
|
|
44
44
|
*/
|
|
@@ -65,7 +65,7 @@ export declare abstract class AbstractClient extends AbstractHttpClient {
|
|
|
65
65
|
protected headers: Headers;
|
|
66
66
|
/**
|
|
67
67
|
* AbstractClient constructor.
|
|
68
|
-
* @returns
|
|
68
|
+
* @returns AbstractRestfulClient
|
|
69
69
|
*/
|
|
70
70
|
protected constructor(configuration?: ConfigurationsClient);
|
|
71
71
|
/**
|
|
@@ -88,13 +88,13 @@ export declare abstract class AbstractClient extends AbstractHttpClient {
|
|
|
88
88
|
/**
|
|
89
89
|
* Sets the page number
|
|
90
90
|
* @param page - Page number
|
|
91
|
-
* @returns
|
|
91
|
+
* @returns AbstractRestfulClient
|
|
92
92
|
*/
|
|
93
93
|
setPage(page: number): this;
|
|
94
94
|
/**
|
|
95
95
|
* Sets Header Information
|
|
96
96
|
* @param headers - Header axios information
|
|
97
|
-
* @returns
|
|
97
|
+
* @returns AbstractRestfulClient
|
|
98
98
|
*/
|
|
99
99
|
setHeaders(headers: Record<string, string>): this;
|
|
100
100
|
/**
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.AbstractRestfulClient = exports.ExtraInformationFields = exports.ParameterKeys = void 0;
|
|
7
7
|
const exception_1 = require("./exception");
|
|
8
8
|
const querystring_1 = __importDefault(require("querystring"));
|
|
9
9
|
const path_1 = __importDefault(require("path"));
|
|
@@ -28,10 +28,10 @@ var ExtraInformationFields;
|
|
|
28
28
|
(function (ExtraInformationFields) {
|
|
29
29
|
ExtraInformationFields["COLUMN_EXTRA_INFORMATION"] = "extraInformation";
|
|
30
30
|
})(ExtraInformationFields = exports.ExtraInformationFields || (exports.ExtraInformationFields = {}));
|
|
31
|
-
class
|
|
31
|
+
class AbstractRestfulClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
32
32
|
/**
|
|
33
33
|
* AbstractClient constructor.
|
|
34
|
-
* @returns
|
|
34
|
+
* @returns AbstractRestfulClient
|
|
35
35
|
*/
|
|
36
36
|
constructor(configuration) {
|
|
37
37
|
var _a, _b, _c;
|
|
@@ -89,7 +89,7 @@ class AbstractClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
|
89
89
|
/**
|
|
90
90
|
* Sets the page number
|
|
91
91
|
* @param page - Page number
|
|
92
|
-
* @returns
|
|
92
|
+
* @returns AbstractRestfulClient
|
|
93
93
|
*/
|
|
94
94
|
setPage(page) {
|
|
95
95
|
this.page = page;
|
|
@@ -98,7 +98,7 @@ class AbstractClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
|
98
98
|
/**
|
|
99
99
|
* Sets Header Information
|
|
100
100
|
* @param headers - Header axios information
|
|
101
|
-
* @returns
|
|
101
|
+
* @returns AbstractRestfulClient
|
|
102
102
|
*/
|
|
103
103
|
setHeaders(headers) {
|
|
104
104
|
this.headers = headers;
|
|
@@ -237,5 +237,5 @@ class AbstractClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
|
237
237
|
return params;
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
|
-
exports.
|
|
241
|
-
//# sourceMappingURL=
|
|
240
|
+
exports.AbstractRestfulClient = AbstractRestfulClient;
|
|
241
|
+
//# sourceMappingURL=abstractRestfulClient.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../getResult';
|
|
3
3
|
import { Campaign } from './entities/campaign/campaign';
|
|
4
4
|
import { CampaignV2 } from './entities/v2/campaign/campaign';
|
|
@@ -15,7 +15,7 @@ export declare type PostEmailCampaignType = {
|
|
|
15
15
|
export declare type PostEmailCampaignMetadataType = {
|
|
16
16
|
[keys in string]: string;
|
|
17
17
|
};
|
|
18
|
-
export declare class CampaignClient extends
|
|
18
|
+
export declare class CampaignClient extends AbstractRestfulClient {
|
|
19
19
|
/**
|
|
20
20
|
* The base path of the API
|
|
21
21
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CampaignClient = exports.PostEmailCampaignFields = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const campaign_1 = require("./entities/campaign/campaign");
|
|
7
7
|
const campaign_2 = require("./entities/v2/campaign/campaign");
|
|
@@ -12,7 +12,7 @@ var PostEmailCampaignFields;
|
|
|
12
12
|
PostEmailCampaignFields["COLUMN_APPLICATION"] = "application";
|
|
13
13
|
PostEmailCampaignFields["COLUMN_METADATA"] = "metadata";
|
|
14
14
|
})(PostEmailCampaignFields = exports.PostEmailCampaignFields || (exports.PostEmailCampaignFields = {}));
|
|
15
|
-
class CampaignClient extends
|
|
15
|
+
class CampaignClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
16
16
|
constructor() {
|
|
17
17
|
super(...arguments);
|
|
18
18
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../getResult';
|
|
3
3
|
import { Item, ItemList } from './entities';
|
|
4
4
|
export declare enum ItemRequestFields {
|
|
@@ -23,7 +23,7 @@ export declare type ItemRequestType = {
|
|
|
23
23
|
};
|
|
24
24
|
export declare type ItemAddRequestType = ItemRequestType;
|
|
25
25
|
export declare type ItemUpdateRequestType = ItemRequestType;
|
|
26
|
-
export declare class CartClient extends
|
|
26
|
+
export declare class CartClient extends AbstractRestfulClient {
|
|
27
27
|
protected basePath: string;
|
|
28
28
|
addItem(postData: ItemAddRequestType, parameters?: Parameters): Promise<GetResult<Item>>;
|
|
29
29
|
updateItem(itemId: string, postData: ItemUpdateRequestType, parameters?: Parameters): Promise<GetResult<Item>>;
|
package/build/cart/cartClient.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CartClient = exports.ItemAdditionalDataRequestFields = exports.ItemRequestFields = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const entities_1 = require("./entities");
|
|
7
7
|
var ItemRequestFields;
|
|
@@ -16,7 +16,7 @@ var ItemAdditionalDataRequestFields;
|
|
|
16
16
|
ItemAdditionalDataRequestFields["NAME"] = "name";
|
|
17
17
|
ItemAdditionalDataRequestFields["VALUE"] = "value";
|
|
18
18
|
})(ItemAdditionalDataRequestFields = exports.ItemAdditionalDataRequestFields || (exports.ItemAdditionalDataRequestFields = {}));
|
|
19
|
-
class CartClient extends
|
|
19
|
+
class CartClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
20
20
|
constructor() {
|
|
21
21
|
super(...arguments);
|
|
22
22
|
this.basePath = '/cart';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../getResult';
|
|
3
3
|
import { Program } from './entities/program';
|
|
4
4
|
import { Programs } from './entities/programs';
|
|
5
|
-
export declare class CatalogClient extends
|
|
5
|
+
export declare class CatalogClient extends AbstractRestfulClient {
|
|
6
6
|
/**
|
|
7
7
|
* The base path of the API
|
|
8
8
|
*/
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CatalogClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const program_1 = require("./entities/program");
|
|
7
7
|
const programs_1 = require("./entities/programs");
|
|
8
|
-
class CatalogClient extends
|
|
8
|
+
class CatalogClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
11
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { ConsumptionBI } from './entities/bi/consumptionBI';
|
|
3
3
|
import { GetResult } from '../getResult';
|
|
4
4
|
import { Consumption } from './entities/consumption/consumption';
|
|
5
|
-
export declare class ConsumptionClient extends
|
|
5
|
+
export declare class ConsumptionClient extends AbstractRestfulClient {
|
|
6
6
|
/**
|
|
7
7
|
* The base path of the API
|
|
8
8
|
*/
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ConsumptionClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const consumptionBI_1 = require("./entities/bi/consumptionBI");
|
|
6
6
|
const getResult_1 = require("../getResult");
|
|
7
7
|
const consumption_1 = require("./entities/consumption/consumption");
|
|
8
|
-
class ConsumptionClient extends
|
|
8
|
+
class ConsumptionClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
11
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../getResult';
|
|
3
3
|
import { ContactCreate } from './entities/contactCreate';
|
|
4
4
|
import { Contact } from './entities/contact';
|
|
@@ -21,7 +21,7 @@ export declare type ContactRequestType = {
|
|
|
21
21
|
[ContactRequestFields.COLUMN_TYPE]: string;
|
|
22
22
|
[ContactRequestFields.COLUMN_ROLE]: string;
|
|
23
23
|
};
|
|
24
|
-
export declare class ContactClient extends
|
|
24
|
+
export declare class ContactClient extends AbstractRestfulClient {
|
|
25
25
|
/**
|
|
26
26
|
* The base path of the API
|
|
27
27
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ContactClient = exports.ContactRequestFields = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const contactCreate_1 = require("./entities/contactCreate");
|
|
7
7
|
const contact_1 = require("./entities/contact");
|
|
@@ -16,7 +16,7 @@ var ContactRequestFields;
|
|
|
16
16
|
ContactRequestFields["COLUMN_TYPE"] = "type";
|
|
17
17
|
ContactRequestFields["COLUMN_ROLE"] = "role";
|
|
18
18
|
})(ContactRequestFields = exports.ContactRequestFields || (exports.ContactRequestFields = {}));
|
|
19
|
-
class ContactClient extends
|
|
19
|
+
class ContactClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
20
20
|
constructor() {
|
|
21
21
|
super(...arguments);
|
|
22
22
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../getResult';
|
|
3
3
|
import { DataCustomers } from './entities/dataCustomers';
|
|
4
4
|
import { DataInvitation } from './entities/dataInvitation';
|
|
@@ -26,7 +26,7 @@ export declare type PostCustomerContactPayload = {
|
|
|
26
26
|
export declare type PatchCustomerContactPayload = {
|
|
27
27
|
[Property in keyof PostCustomerContactPayload]?: PostCustomerContactPayload[Property];
|
|
28
28
|
};
|
|
29
|
-
export declare class CustomersClient extends
|
|
29
|
+
export declare class CustomersClient extends AbstractRestfulClient {
|
|
30
30
|
/**
|
|
31
31
|
* The base path of the API
|
|
32
32
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CustomersClient = exports.CustomerContactPayloadFields = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const dataCustomers_1 = require("./entities/dataCustomers");
|
|
7
7
|
const dataInvitation_1 = require("./entities/dataInvitation");
|
|
@@ -18,7 +18,7 @@ var CustomerContactPayloadFields;
|
|
|
18
18
|
CustomerContactPayloadFields["COLUMN_TYPE"] = "type";
|
|
19
19
|
CustomerContactPayloadFields["COLUMN_ROLE"] = "role";
|
|
20
20
|
})(CustomerContactPayloadFields = exports.CustomerContactPayloadFields || (exports.CustomerContactPayloadFields = {}));
|
|
21
|
-
class CustomersClient extends
|
|
21
|
+
class CustomersClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
22
22
|
constructor() {
|
|
23
23
|
super(...arguments);
|
|
24
24
|
/**
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { AxiosResponse } from 'axios';
|
|
2
|
-
import {
|
|
2
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
3
3
|
export declare type CheckDomainData = {
|
|
4
4
|
isDomainAvailable: boolean;
|
|
5
5
|
};
|
|
6
6
|
/**
|
|
7
7
|
* Class CheckDomainClient
|
|
8
8
|
*/
|
|
9
|
-
export declare class CheckDomainClient extends
|
|
9
|
+
export declare class CheckDomainClient extends AbstractRestfulClient {
|
|
10
10
|
/**
|
|
11
11
|
* @param vendorName - The vendor's name
|
|
12
12
|
* @param domainName - The domain to check
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CheckDomainClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
/**
|
|
6
6
|
* Class CheckDomainClient
|
|
7
7
|
*/
|
|
8
|
-
class CheckDomainClient extends
|
|
8
|
+
class CheckDomainClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
9
9
|
/**
|
|
10
10
|
* @param vendorName - The vendor's name
|
|
11
11
|
* @param domainName - The domain to check
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient } from '../abstractRestfulClient';
|
|
2
2
|
import { AxiosResponse } from 'axios';
|
|
3
3
|
import { WhoAmIResponseData } from './entities/whoAmI';
|
|
4
|
-
export declare class WhoAmIClient extends
|
|
4
|
+
export declare class WhoAmIClient extends AbstractRestfulClient {
|
|
5
5
|
/**
|
|
6
6
|
* Gets and returns the raw whoami call response data
|
|
7
7
|
* @returns Promise\<AxiosResponse\<{@link WhoAmIResponseData}\>\>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.WhoAmIClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const whoAmI_1 = require("./entities/whoAmI");
|
|
6
|
-
class WhoAmIClient extends
|
|
6
|
+
class WhoAmIClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
7
7
|
/**
|
|
8
8
|
* Gets and returns the raw whoami call response data
|
|
9
9
|
* @returns Promise\<AxiosResponse\<{@link WhoAmIResponseData}\>\>
|
package/build/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './axiosSingleton';
|
|
2
|
-
export * from './
|
|
2
|
+
export * from './abstractRestfulClient';
|
|
3
3
|
export * from './abstractEntity';
|
|
4
4
|
export * from './abstractGraphQLClient';
|
|
5
5
|
export * from './campaign/';
|
|
@@ -20,5 +20,6 @@ export * from './security/';
|
|
|
20
20
|
export * from './subscriptions/';
|
|
21
21
|
export * from './supportCenter/';
|
|
22
22
|
export * from './securityScore/';
|
|
23
|
+
export * from './user/';
|
|
23
24
|
export { ContactInformation };
|
|
24
25
|
import * as ContactInformation from './contact';
|
package/build/index.js
CHANGED
|
@@ -28,7 +28,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.ContactInformation = void 0;
|
|
30
30
|
__exportStar(require("./axiosSingleton"), exports);
|
|
31
|
-
__exportStar(require("./
|
|
31
|
+
__exportStar(require("./abstractRestfulClient"), exports);
|
|
32
32
|
__exportStar(require("./abstractEntity"), exports);
|
|
33
33
|
__exportStar(require("./abstractGraphQLClient"), exports);
|
|
34
34
|
__exportStar(require("./campaign/"), exports);
|
|
@@ -49,6 +49,7 @@ __exportStar(require("./security/"), exports);
|
|
|
49
49
|
__exportStar(require("./subscriptions/"), exports);
|
|
50
50
|
__exportStar(require("./supportCenter/"), exports);
|
|
51
51
|
__exportStar(require("./securityScore/"), exports);
|
|
52
|
+
__exportStar(require("./user/"), exports);
|
|
52
53
|
const ContactInformation = __importStar(require("./contact"));
|
|
53
54
|
exports.ContactInformation = ContactInformation;
|
|
54
55
|
//# sourceMappingURL=index.js.map
|
|
@@ -3,7 +3,7 @@ import { FilterFindResultData } from './filterFindResult';
|
|
|
3
3
|
import { AbstractEntity } from '../../abstractEntity';
|
|
4
4
|
import { LicensesClient, LicenseFindRawPayload } from '../licensesClient';
|
|
5
5
|
import { OfferFindResultData } from './offer/offerFindResult';
|
|
6
|
-
import { Parameters } from '../../
|
|
6
|
+
import { Parameters } from '../../abstractRestfulClient';
|
|
7
7
|
export declare type FindData = {
|
|
8
8
|
pagination: {
|
|
9
9
|
currentPage: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Class LicensesClient
|
|
3
3
|
*/
|
|
4
|
-
import {
|
|
4
|
+
import { AbstractRestfulClient, ExtraInformationType, Parameters } from '../abstractRestfulClient';
|
|
5
5
|
import { FindConfig, FindData, FindResult } from './entities/findResult';
|
|
6
6
|
import { ConfigFindResult, ConfigFindResultData, ConfigFindResultDataKeywords, ConfigFindResultDataSortParameters } from './entities/license/configFindResult';
|
|
7
7
|
import { LicenceFindDataFiltersParameters, LicenceFindDataKeywords, LicenceFindDataSortParameters } from './entities/license/licenseFindResult';
|
|
@@ -199,7 +199,7 @@ export declare type PutSuspend = ExtraInformationType;
|
|
|
199
199
|
export declare type PutCancel = ExtraInformationType;
|
|
200
200
|
export declare type PutCancelAutoRenew = ExtraInformationType;
|
|
201
201
|
export declare type PutReactivateAutoRenew = ExtraInformationType;
|
|
202
|
-
export declare class LicensesClient extends
|
|
202
|
+
export declare class LicensesClient extends AbstractRestfulClient {
|
|
203
203
|
/**
|
|
204
204
|
* The base path of the API
|
|
205
205
|
*/
|
|
@@ -4,7 +4,7 @@ exports.LicensesClient = exports.LicenseFindParameters = void 0;
|
|
|
4
4
|
/**
|
|
5
5
|
* Class LicensesClient
|
|
6
6
|
*/
|
|
7
|
-
const
|
|
7
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
8
8
|
const findResult_1 = require("./entities/findResult");
|
|
9
9
|
const configFindResult_1 = require("./entities/license/configFindResult");
|
|
10
10
|
const getResult_1 = require("../getResult");
|
|
@@ -109,7 +109,7 @@ var LicenseFindParameters;
|
|
|
109
109
|
*/
|
|
110
110
|
LicenseFindParameters["FILTERS_LTE"] = "lte";
|
|
111
111
|
})(LicenseFindParameters = exports.LicenseFindParameters || (exports.LicenseFindParameters = {}));
|
|
112
|
-
class LicensesClient extends
|
|
112
|
+
class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
113
113
|
constructor() {
|
|
114
114
|
super(...arguments);
|
|
115
115
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../getResult';
|
|
3
3
|
import { DataListOrders } from './entities/dataListOrders';
|
|
4
4
|
import { ReferenceLink } from './entities/referenceLink';
|
|
@@ -91,7 +91,7 @@ export declare type CreateOrderInputType = {
|
|
|
91
91
|
};
|
|
92
92
|
}>;
|
|
93
93
|
};
|
|
94
|
-
export declare class OrdersClient extends
|
|
94
|
+
export declare class OrdersClient extends AbstractRestfulClient {
|
|
95
95
|
/**
|
|
96
96
|
* The base path of the API
|
|
97
97
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.OrdersClient = exports.scenarioType = exports.CreateOrderInputFields = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const dataListOrders_1 = require("./entities/dataListOrders");
|
|
7
7
|
const referenceLink_1 = require("./entities/referenceLink");
|
|
@@ -45,7 +45,7 @@ var scenarioType;
|
|
|
45
45
|
scenarioType["RECONCILIATION"] = "reconciliation";
|
|
46
46
|
scenarioType["PROVISION"] = "provision";
|
|
47
47
|
})(scenarioType = exports.scenarioType || (exports.scenarioType = {}));
|
|
48
|
-
class OrdersClient extends
|
|
48
|
+
class OrdersClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
49
49
|
constructor() {
|
|
50
50
|
super(...arguments);
|
|
51
51
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient } from './abstractRestfulClient';
|
|
2
2
|
import { CheckDomainClient, WhoAmIClient } from './general';
|
|
3
3
|
import { LicensesClient } from './licenses';
|
|
4
4
|
import { SubscriptionsClient } from './subscriptions';
|
|
@@ -12,10 +12,11 @@ import { RegisterClient } from './security';
|
|
|
12
12
|
import { CartClient } from './cart/cartClient';
|
|
13
13
|
import { SupportCenterClient } from './supportCenter';
|
|
14
14
|
import { CatalogClient } from './catalog';
|
|
15
|
+
import { UserClient } from './user';
|
|
15
16
|
/**
|
|
16
17
|
* Public API Client class, should be the main entry point for your calls
|
|
17
18
|
*/
|
|
18
|
-
export declare class PublicApiClient extends
|
|
19
|
+
export declare class PublicApiClient extends AbstractRestfulClient {
|
|
19
20
|
constructor();
|
|
20
21
|
/**
|
|
21
22
|
* Creates a new {@link CustomersClient} instance and returns it
|
|
@@ -63,5 +64,6 @@ export declare class PublicApiClient extends AbstractClient {
|
|
|
63
64
|
getCartClient(): CartClient;
|
|
64
65
|
getSupportCenterClient(): SupportCenterClient;
|
|
65
66
|
getCatalogClient(): CatalogClient;
|
|
67
|
+
getUserClient(): UserClient;
|
|
66
68
|
}
|
|
67
69
|
export default PublicApiClient;
|
package/build/publicApiClient.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PublicApiClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("./abstractRestfulClient");
|
|
5
5
|
const general_1 = require("./general");
|
|
6
6
|
const licenses_1 = require("./licenses");
|
|
7
7
|
const subscriptions_1 = require("./subscriptions");
|
|
@@ -15,10 +15,11 @@ const security_1 = require("./security");
|
|
|
15
15
|
const cartClient_1 = require("./cart/cartClient");
|
|
16
16
|
const supportCenter_1 = require("./supportCenter");
|
|
17
17
|
const catalog_1 = require("./catalog");
|
|
18
|
+
const user_1 = require("./user");
|
|
18
19
|
/**
|
|
19
20
|
* Public API Client class, should be the main entry point for your calls
|
|
20
21
|
*/
|
|
21
|
-
class PublicApiClient extends
|
|
22
|
+
class PublicApiClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
22
23
|
constructor() {
|
|
23
24
|
super();
|
|
24
25
|
}
|
|
@@ -138,6 +139,12 @@ class PublicApiClient extends abstractClient_1.AbstractClient {
|
|
|
138
139
|
.setApiKey(this.apiKey)
|
|
139
140
|
.setHeaders(this.headers);
|
|
140
141
|
}
|
|
142
|
+
getUserClient() {
|
|
143
|
+
return new user_1.UserClient()
|
|
144
|
+
.setUrl(this.url)
|
|
145
|
+
.setApiKey(this.apiKey)
|
|
146
|
+
.setHeaders(this.headers);
|
|
147
|
+
}
|
|
141
148
|
}
|
|
142
149
|
exports.PublicApiClient = PublicApiClient;
|
|
143
150
|
exports.default = PublicApiClient;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../../abstractRestfulClient';
|
|
2
2
|
import { GetResult } from '../../getResult';
|
|
3
3
|
import { RegistrationLink } from './entity/registrationLink';
|
|
4
|
-
export declare class RegisterClient extends
|
|
4
|
+
export declare class RegisterClient extends AbstractRestfulClient {
|
|
5
5
|
/**
|
|
6
6
|
* The base path of the API
|
|
7
7
|
*/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RegisterClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../../getResult");
|
|
6
6
|
const registrationLink_1 = require("./entity/registrationLink");
|
|
7
|
-
class RegisterClient extends
|
|
7
|
+
class RegisterClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
8
8
|
constructor() {
|
|
9
9
|
super(...arguments);
|
|
10
10
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../../abstractRestfulClient';
|
|
2
2
|
import { Standards } from './entities/standards/standards';
|
|
3
3
|
import { GetResult } from '../../getResult';
|
|
4
4
|
import { Checks } from './entities/checks/checks';
|
|
5
5
|
import { Resources } from './entities/resources/resources';
|
|
6
|
-
export declare class StandardsClient extends
|
|
6
|
+
export declare class StandardsClient extends AbstractRestfulClient {
|
|
7
7
|
/**
|
|
8
8
|
* The base path of the API
|
|
9
9
|
*/
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.StandardsClient = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../../abstractRestfulClient");
|
|
5
5
|
const standards_1 = require("./entities/standards/standards");
|
|
6
6
|
const getResult_1 = require("../../getResult");
|
|
7
7
|
const checks_1 = require("./entities/checks/checks");
|
|
8
8
|
const resources_1 = require("./entities/resources/resources");
|
|
9
|
-
class StandardsClient extends
|
|
9
|
+
class StandardsClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
10
10
|
constructor() {
|
|
11
11
|
super(...arguments);
|
|
12
12
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Class SubscriptionsClient
|
|
3
3
|
*/
|
|
4
|
-
import {
|
|
4
|
+
import { AbstractRestfulClient } from '../abstractRestfulClient';
|
|
5
5
|
import { SubscriptionData } from './entities/subscription';
|
|
6
6
|
import { SubscriptionsListResult } from './entities/subscriptionsListResult';
|
|
7
7
|
export declare type SubscriptionsListPayload = {
|
|
@@ -29,7 +29,7 @@ export declare type SubscriptionsListData = {
|
|
|
29
29
|
previous: string;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
-
export declare class SubscriptionsClient extends
|
|
32
|
+
export declare class SubscriptionsClient extends AbstractRestfulClient {
|
|
33
33
|
/**
|
|
34
34
|
* The base path of the API
|
|
35
35
|
*/
|
|
@@ -4,9 +4,9 @@ exports.SubscriptionsClient = void 0;
|
|
|
4
4
|
/**
|
|
5
5
|
* Class SubscriptionsClient
|
|
6
6
|
*/
|
|
7
|
-
const
|
|
7
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
8
8
|
const subscriptionsListResult_1 = require("./entities/subscriptionsListResult");
|
|
9
|
-
class SubscriptionsClient extends
|
|
9
|
+
class SubscriptionsClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
10
10
|
constructor() {
|
|
11
11
|
super(...arguments);
|
|
12
12
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IssueAdditionalDataType, IssueCreatedByType, IssueFields, IssueOfferType, IssueStatusesType } from '../entities/issue/issue';
|
|
2
|
-
import { Payload } from '../../
|
|
2
|
+
import { Payload } from '../../abstractRestfulClient';
|
|
3
3
|
export declare enum IssueProgramsType {
|
|
4
4
|
MSCSP = "MSCSP",
|
|
5
5
|
ARWS_AMS = "ARWS-AMS"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractRestfulClient, Parameters, ParametersWithPaginationType } from '../abstractRestfulClient';
|
|
2
2
|
import { Issue, Issues, IssueStatusesType } from './entities/issue/issue';
|
|
3
3
|
import { GetResult } from '../getResult';
|
|
4
4
|
import { IssueAttachment, IssueAttachments } from './entities/issue/attachment';
|
|
@@ -27,7 +27,7 @@ export declare type ListIssueParametersType = ParametersWithPaginationType & {
|
|
|
27
27
|
[ListIssueParametersFields.STATUSES]?: IssueStatusesType;
|
|
28
28
|
[ListIssueParametersFields.TITLE]?: string;
|
|
29
29
|
};
|
|
30
|
-
export declare class SupportCenterClient extends
|
|
30
|
+
export declare class SupportCenterClient extends AbstractRestfulClient {
|
|
31
31
|
protected basePath: string;
|
|
32
32
|
listTopics(parameters?: Parameters): Promise<GetResult<Topics>>;
|
|
33
33
|
listIssues(parameters?: ListIssueParametersType): Promise<GetResult<Issues>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SupportCenterClient = exports.ListIssueParametersFields = void 0;
|
|
4
|
-
const
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const issue_1 = require("./entities/issue/issue");
|
|
6
6
|
const getResult_1 = require("../getResult");
|
|
7
7
|
const attachment_1 = require("./entities/issue/attachment");
|
|
@@ -18,7 +18,7 @@ var ListIssueParametersFields;
|
|
|
18
18
|
ListIssueParametersFields["STATUSES"] = "statuses";
|
|
19
19
|
ListIssueParametersFields["TITLE"] = "title";
|
|
20
20
|
})(ListIssueParametersFields = exports.ListIssueParametersFields || (exports.ListIssueParametersFields = {}));
|
|
21
|
-
class SupportCenterClient extends
|
|
21
|
+
class SupportCenterClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
22
22
|
constructor() {
|
|
23
23
|
super(...arguments);
|
|
24
24
|
this.basePath = '/support';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AbstractRestfulClient, Parameters } from '../abstractRestfulClient';
|
|
2
|
+
import { CompleteWhoAmI } from './types';
|
|
3
|
+
import { GetResult } from '../getResult';
|
|
4
|
+
export declare class UserClient extends AbstractRestfulClient {
|
|
5
|
+
protected basePath: string;
|
|
6
|
+
/**
|
|
7
|
+
* To get the infos and rights about a user.
|
|
8
|
+
*/
|
|
9
|
+
getInfos(parameters?: Parameters): Promise<GetResult<CompleteWhoAmI>>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserClient = void 0;
|
|
4
|
+
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
|
+
const types_1 = require("./types");
|
|
6
|
+
const getResult_1 = require("../getResult");
|
|
7
|
+
class UserClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
8
|
+
constructor() {
|
|
9
|
+
super(...arguments);
|
|
10
|
+
this.basePath = '/partners/users/rights';
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* To get the infos and rights about a user.
|
|
14
|
+
*/
|
|
15
|
+
async getInfos(parameters = {}) {
|
|
16
|
+
return new getResult_1.GetResult(types_1.CompleteWhoAmI, await this.get(parameters));
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.UserClient = UserClient;
|
|
20
|
+
//# sourceMappingURL=UserClient.js.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./UserClient"), exports);
|
|
18
|
+
__exportStar(require("./types"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AbstractEntity } from '../../abstractEntity';
|
|
2
|
+
import { CompleteWhoAmICompany, CompleteWhoAmICompanyData } from './CompleteWhoAmICompany';
|
|
3
|
+
import { CompleteWhoAmIUser, CompleteWhoAmIUserData } from './CompleteWhoAmIUser';
|
|
4
|
+
export declare enum CompleteWhoAmIResponseFields {
|
|
5
|
+
COLUMN_COMPANY = "company",
|
|
6
|
+
COLUMN_USER = "user"
|
|
7
|
+
}
|
|
8
|
+
export declare type CompleteWhoAmIResponseData = {
|
|
9
|
+
[CompleteWhoAmIResponseFields.COLUMN_COMPANY]: CompleteWhoAmICompanyData;
|
|
10
|
+
[CompleteWhoAmIResponseFields.COLUMN_USER]: CompleteWhoAmIUserData;
|
|
11
|
+
};
|
|
12
|
+
export declare class CompleteWhoAmI extends AbstractEntity<CompleteWhoAmIResponseData> {
|
|
13
|
+
#private;
|
|
14
|
+
constructor(data: CompleteWhoAmIResponseData);
|
|
15
|
+
get user(): CompleteWhoAmIUser;
|
|
16
|
+
get company(): CompleteWhoAmICompany;
|
|
17
|
+
toJSON(): CompleteWhoAmIResponseData;
|
|
18
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
3
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
4
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
5
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
6
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
7
|
+
};
|
|
8
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
9
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
10
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
|
+
};
|
|
13
|
+
var _CompleteWhoAmI_user, _CompleteWhoAmI_company;
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.CompleteWhoAmI = exports.CompleteWhoAmIResponseFields = void 0;
|
|
16
|
+
const abstractEntity_1 = require("../../abstractEntity");
|
|
17
|
+
const CompleteWhoAmICompany_1 = require("./CompleteWhoAmICompany");
|
|
18
|
+
const CompleteWhoAmIUser_1 = require("./CompleteWhoAmIUser");
|
|
19
|
+
var CompleteWhoAmIResponseFields;
|
|
20
|
+
(function (CompleteWhoAmIResponseFields) {
|
|
21
|
+
CompleteWhoAmIResponseFields["COLUMN_COMPANY"] = "company";
|
|
22
|
+
CompleteWhoAmIResponseFields["COLUMN_USER"] = "user";
|
|
23
|
+
})(CompleteWhoAmIResponseFields = exports.CompleteWhoAmIResponseFields || (exports.CompleteWhoAmIResponseFields = {}));
|
|
24
|
+
class CompleteWhoAmI extends abstractEntity_1.AbstractEntity {
|
|
25
|
+
constructor(data) {
|
|
26
|
+
super(data);
|
|
27
|
+
_CompleteWhoAmI_user.set(this, void 0);
|
|
28
|
+
_CompleteWhoAmI_company.set(this, void 0);
|
|
29
|
+
__classPrivateFieldSet(this, _CompleteWhoAmI_user, new CompleteWhoAmIUser_1.CompleteWhoAmIUser(data[CompleteWhoAmIResponseFields.COLUMN_USER]), "f");
|
|
30
|
+
__classPrivateFieldSet(this, _CompleteWhoAmI_company, new CompleteWhoAmICompany_1.CompleteWhoAmICompany(data[CompleteWhoAmIResponseFields.COLUMN_COMPANY]), "f");
|
|
31
|
+
}
|
|
32
|
+
get user() {
|
|
33
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmI_user, "f");
|
|
34
|
+
}
|
|
35
|
+
get company() {
|
|
36
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmI_company, "f");
|
|
37
|
+
}
|
|
38
|
+
toJSON() {
|
|
39
|
+
return {
|
|
40
|
+
[CompleteWhoAmIResponseFields.COLUMN_USER]: this.user.toJSON(),
|
|
41
|
+
[CompleteWhoAmIResponseFields.COLUMN_COMPANY]: this.company.toJSON(),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.CompleteWhoAmI = CompleteWhoAmI;
|
|
46
|
+
_CompleteWhoAmI_user = new WeakMap(), _CompleteWhoAmI_company = new WeakMap();
|
|
47
|
+
//# sourceMappingURL=CompleteWhoAmI.js.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AbstractEntity } from '../../abstractEntity';
|
|
2
|
+
export declare enum CompleteWhoAmICompanyFields {
|
|
3
|
+
COLUMN_HAS_ACCESS_TO_XCP = "hasAccessToXcp",
|
|
4
|
+
COLUMN_IS_PROTECTED = "isProtected",
|
|
5
|
+
COLUMN_MARKETPLACE = "marketplace",
|
|
6
|
+
COLUMN_NAME = "name",
|
|
7
|
+
COLUMN_REFERENCE = "reference",
|
|
8
|
+
COLUMN_TAGS = "tags"
|
|
9
|
+
}
|
|
10
|
+
export declare type CompleteWhoAmICompanyData = {
|
|
11
|
+
[CompleteWhoAmICompanyFields.COLUMN_HAS_ACCESS_TO_XCP]: boolean;
|
|
12
|
+
[CompleteWhoAmICompanyFields.COLUMN_IS_PROTECTED]: boolean;
|
|
13
|
+
[CompleteWhoAmICompanyFields.COLUMN_MARKETPLACE]?: string;
|
|
14
|
+
[CompleteWhoAmICompanyFields.COLUMN_NAME]?: string;
|
|
15
|
+
[CompleteWhoAmICompanyFields.COLUMN_REFERENCE]: string;
|
|
16
|
+
[CompleteWhoAmICompanyFields.COLUMN_TAGS]: string[];
|
|
17
|
+
};
|
|
18
|
+
export declare class CompleteWhoAmICompany extends AbstractEntity<CompleteWhoAmICompanyData> {
|
|
19
|
+
#private;
|
|
20
|
+
constructor(data: CompleteWhoAmICompanyData);
|
|
21
|
+
get hasAccessToXcp(): boolean;
|
|
22
|
+
get isProtected(): boolean;
|
|
23
|
+
get marketplace(): string | undefined;
|
|
24
|
+
get name(): string | undefined;
|
|
25
|
+
get reference(): string;
|
|
26
|
+
get tags(): string[];
|
|
27
|
+
toJSON(): CompleteWhoAmICompanyData;
|
|
28
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
3
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
4
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
5
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
6
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
7
|
+
};
|
|
8
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
9
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
10
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
|
+
};
|
|
13
|
+
var _CompleteWhoAmICompany_hasAccessToXcp, _CompleteWhoAmICompany_isProtected, _CompleteWhoAmICompany_marketplace, _CompleteWhoAmICompany_name, _CompleteWhoAmICompany_reference, _CompleteWhoAmICompany_tags;
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.CompleteWhoAmICompany = exports.CompleteWhoAmICompanyFields = void 0;
|
|
16
|
+
const abstractEntity_1 = require("../../abstractEntity");
|
|
17
|
+
var CompleteWhoAmICompanyFields;
|
|
18
|
+
(function (CompleteWhoAmICompanyFields) {
|
|
19
|
+
CompleteWhoAmICompanyFields["COLUMN_HAS_ACCESS_TO_XCP"] = "hasAccessToXcp";
|
|
20
|
+
CompleteWhoAmICompanyFields["COLUMN_IS_PROTECTED"] = "isProtected";
|
|
21
|
+
CompleteWhoAmICompanyFields["COLUMN_MARKETPLACE"] = "marketplace";
|
|
22
|
+
CompleteWhoAmICompanyFields["COLUMN_NAME"] = "name";
|
|
23
|
+
CompleteWhoAmICompanyFields["COLUMN_REFERENCE"] = "reference";
|
|
24
|
+
CompleteWhoAmICompanyFields["COLUMN_TAGS"] = "tags";
|
|
25
|
+
})(CompleteWhoAmICompanyFields = exports.CompleteWhoAmICompanyFields || (exports.CompleteWhoAmICompanyFields = {}));
|
|
26
|
+
class CompleteWhoAmICompany extends abstractEntity_1.AbstractEntity {
|
|
27
|
+
constructor(data) {
|
|
28
|
+
super(data);
|
|
29
|
+
_CompleteWhoAmICompany_hasAccessToXcp.set(this, void 0);
|
|
30
|
+
_CompleteWhoAmICompany_isProtected.set(this, void 0);
|
|
31
|
+
_CompleteWhoAmICompany_marketplace.set(this, void 0);
|
|
32
|
+
_CompleteWhoAmICompany_name.set(this, void 0);
|
|
33
|
+
_CompleteWhoAmICompany_reference.set(this, void 0);
|
|
34
|
+
_CompleteWhoAmICompany_tags.set(this, void 0);
|
|
35
|
+
__classPrivateFieldSet(this, _CompleteWhoAmICompany_hasAccessToXcp, data[CompleteWhoAmICompanyFields.COLUMN_HAS_ACCESS_TO_XCP], "f");
|
|
36
|
+
__classPrivateFieldSet(this, _CompleteWhoAmICompany_isProtected, data[CompleteWhoAmICompanyFields.COLUMN_IS_PROTECTED], "f");
|
|
37
|
+
__classPrivateFieldSet(this, _CompleteWhoAmICompany_marketplace, data[CompleteWhoAmICompanyFields.COLUMN_MARKETPLACE], "f");
|
|
38
|
+
__classPrivateFieldSet(this, _CompleteWhoAmICompany_name, data[CompleteWhoAmICompanyFields.COLUMN_NAME], "f");
|
|
39
|
+
__classPrivateFieldSet(this, _CompleteWhoAmICompany_reference, data[CompleteWhoAmICompanyFields.COLUMN_REFERENCE], "f");
|
|
40
|
+
__classPrivateFieldSet(this, _CompleteWhoAmICompany_tags, data[CompleteWhoAmICompanyFields.COLUMN_TAGS], "f");
|
|
41
|
+
}
|
|
42
|
+
get hasAccessToXcp() {
|
|
43
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmICompany_hasAccessToXcp, "f");
|
|
44
|
+
}
|
|
45
|
+
get isProtected() {
|
|
46
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmICompany_isProtected, "f");
|
|
47
|
+
}
|
|
48
|
+
get marketplace() {
|
|
49
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmICompany_marketplace, "f");
|
|
50
|
+
}
|
|
51
|
+
get name() {
|
|
52
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmICompany_name, "f");
|
|
53
|
+
}
|
|
54
|
+
get reference() {
|
|
55
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmICompany_reference, "f");
|
|
56
|
+
}
|
|
57
|
+
get tags() {
|
|
58
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmICompany_tags, "f");
|
|
59
|
+
}
|
|
60
|
+
toJSON() {
|
|
61
|
+
return {
|
|
62
|
+
[CompleteWhoAmICompanyFields.COLUMN_HAS_ACCESS_TO_XCP]: this
|
|
63
|
+
.hasAccessToXcp,
|
|
64
|
+
[CompleteWhoAmICompanyFields.COLUMN_IS_PROTECTED]: this.isProtected,
|
|
65
|
+
[CompleteWhoAmICompanyFields.COLUMN_MARKETPLACE]: this.marketplace,
|
|
66
|
+
[CompleteWhoAmICompanyFields.COLUMN_NAME]: this.name,
|
|
67
|
+
[CompleteWhoAmICompanyFields.COLUMN_REFERENCE]: this.reference,
|
|
68
|
+
[CompleteWhoAmICompanyFields.COLUMN_TAGS]: this.tags,
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.CompleteWhoAmICompany = CompleteWhoAmICompany;
|
|
73
|
+
_CompleteWhoAmICompany_hasAccessToXcp = new WeakMap(), _CompleteWhoAmICompany_isProtected = new WeakMap(), _CompleteWhoAmICompany_marketplace = new WeakMap(), _CompleteWhoAmICompany_name = new WeakMap(), _CompleteWhoAmICompany_reference = new WeakMap(), _CompleteWhoAmICompany_tags = new WeakMap();
|
|
74
|
+
//# sourceMappingURL=CompleteWhoAmICompany.js.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { AbstractEntity } from '../../abstractEntity';
|
|
2
|
+
export declare enum CompleteWhoAmIUserFields {
|
|
3
|
+
COLUMN_EMAIL = "email",
|
|
4
|
+
COLUMN_FIRSTNAME = "firstname",
|
|
5
|
+
COLUMN_LASTNAME = "lastname",
|
|
6
|
+
COLUMN_LOGIN = "login",
|
|
7
|
+
COLUMN_POLICIES = "policies",
|
|
8
|
+
COLUMN_REFERENCE = "reference",
|
|
9
|
+
COLUMN_RIGHTS = "rights",
|
|
10
|
+
COLUMN_SCOPES = "scopes",
|
|
11
|
+
COLUMN_XAP_USERNAME = "xapUsername"
|
|
12
|
+
}
|
|
13
|
+
export declare type CompleteWhoAmIUserData = {
|
|
14
|
+
[CompleteWhoAmIUserFields.COLUMN_EMAIL]?: string;
|
|
15
|
+
[CompleteWhoAmIUserFields.COLUMN_FIRSTNAME]?: string;
|
|
16
|
+
[CompleteWhoAmIUserFields.COLUMN_LASTNAME]?: string;
|
|
17
|
+
[CompleteWhoAmIUserFields.COLUMN_LOGIN]?: string;
|
|
18
|
+
[CompleteWhoAmIUserFields.COLUMN_POLICIES]: string[];
|
|
19
|
+
[CompleteWhoAmIUserFields.COLUMN_REFERENCE]: string;
|
|
20
|
+
[CompleteWhoAmIUserFields.COLUMN_RIGHTS]: string[];
|
|
21
|
+
[CompleteWhoAmIUserFields.COLUMN_SCOPES]: string[];
|
|
22
|
+
[CompleteWhoAmIUserFields.COLUMN_XAP_USERNAME]: string;
|
|
23
|
+
};
|
|
24
|
+
export declare class CompleteWhoAmIUser extends AbstractEntity<CompleteWhoAmIUserData> {
|
|
25
|
+
#private;
|
|
26
|
+
constructor(data: CompleteWhoAmIUserData);
|
|
27
|
+
get email(): string | undefined;
|
|
28
|
+
get firstname(): string | undefined;
|
|
29
|
+
get lastname(): string | undefined;
|
|
30
|
+
get login(): string | undefined;
|
|
31
|
+
get policies(): string[];
|
|
32
|
+
get reference(): string;
|
|
33
|
+
get rights(): string[];
|
|
34
|
+
get scopes(): string[];
|
|
35
|
+
get xapUsername(): string;
|
|
36
|
+
toJSON(): CompleteWhoAmIUserData;
|
|
37
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
3
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
4
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
5
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
6
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
7
|
+
};
|
|
8
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
9
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
10
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
|
+
};
|
|
13
|
+
var _CompleteWhoAmIUser_email, _CompleteWhoAmIUser_firstname, _CompleteWhoAmIUser_lastname, _CompleteWhoAmIUser_login, _CompleteWhoAmIUser_policies, _CompleteWhoAmIUser_reference, _CompleteWhoAmIUser_rights, _CompleteWhoAmIUser_scopes, _CompleteWhoAmIUser_xapUsername;
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.CompleteWhoAmIUser = exports.CompleteWhoAmIUserFields = void 0;
|
|
16
|
+
const abstractEntity_1 = require("../../abstractEntity");
|
|
17
|
+
var CompleteWhoAmIUserFields;
|
|
18
|
+
(function (CompleteWhoAmIUserFields) {
|
|
19
|
+
CompleteWhoAmIUserFields["COLUMN_EMAIL"] = "email";
|
|
20
|
+
CompleteWhoAmIUserFields["COLUMN_FIRSTNAME"] = "firstname";
|
|
21
|
+
CompleteWhoAmIUserFields["COLUMN_LASTNAME"] = "lastname";
|
|
22
|
+
CompleteWhoAmIUserFields["COLUMN_LOGIN"] = "login";
|
|
23
|
+
CompleteWhoAmIUserFields["COLUMN_POLICIES"] = "policies";
|
|
24
|
+
CompleteWhoAmIUserFields["COLUMN_REFERENCE"] = "reference";
|
|
25
|
+
CompleteWhoAmIUserFields["COLUMN_RIGHTS"] = "rights";
|
|
26
|
+
CompleteWhoAmIUserFields["COLUMN_SCOPES"] = "scopes";
|
|
27
|
+
CompleteWhoAmIUserFields["COLUMN_XAP_USERNAME"] = "xapUsername";
|
|
28
|
+
})(CompleteWhoAmIUserFields = exports.CompleteWhoAmIUserFields || (exports.CompleteWhoAmIUserFields = {}));
|
|
29
|
+
class CompleteWhoAmIUser extends abstractEntity_1.AbstractEntity {
|
|
30
|
+
constructor(data) {
|
|
31
|
+
super(data);
|
|
32
|
+
_CompleteWhoAmIUser_email.set(this, void 0);
|
|
33
|
+
_CompleteWhoAmIUser_firstname.set(this, void 0);
|
|
34
|
+
_CompleteWhoAmIUser_lastname.set(this, void 0);
|
|
35
|
+
_CompleteWhoAmIUser_login.set(this, void 0);
|
|
36
|
+
_CompleteWhoAmIUser_policies.set(this, void 0);
|
|
37
|
+
_CompleteWhoAmIUser_reference.set(this, void 0);
|
|
38
|
+
_CompleteWhoAmIUser_rights.set(this, void 0);
|
|
39
|
+
_CompleteWhoAmIUser_scopes.set(this, void 0);
|
|
40
|
+
_CompleteWhoAmIUser_xapUsername.set(this, void 0);
|
|
41
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_email, data[CompleteWhoAmIUserFields.COLUMN_EMAIL], "f");
|
|
42
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_firstname, data[CompleteWhoAmIUserFields.COLUMN_FIRSTNAME], "f");
|
|
43
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_lastname, data[CompleteWhoAmIUserFields.COLUMN_LASTNAME], "f");
|
|
44
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_login, data[CompleteWhoAmIUserFields.COLUMN_LOGIN], "f");
|
|
45
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_policies, data[CompleteWhoAmIUserFields.COLUMN_POLICIES], "f");
|
|
46
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_reference, data[CompleteWhoAmIUserFields.COLUMN_REFERENCE], "f");
|
|
47
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_rights, data[CompleteWhoAmIUserFields.COLUMN_RIGHTS], "f");
|
|
48
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_scopes, data[CompleteWhoAmIUserFields.COLUMN_SCOPES], "f");
|
|
49
|
+
__classPrivateFieldSet(this, _CompleteWhoAmIUser_xapUsername, data[CompleteWhoAmIUserFields.COLUMN_XAP_USERNAME], "f");
|
|
50
|
+
}
|
|
51
|
+
get email() {
|
|
52
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_email, "f");
|
|
53
|
+
}
|
|
54
|
+
get firstname() {
|
|
55
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_firstname, "f");
|
|
56
|
+
}
|
|
57
|
+
get lastname() {
|
|
58
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_lastname, "f");
|
|
59
|
+
}
|
|
60
|
+
get login() {
|
|
61
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_login, "f");
|
|
62
|
+
}
|
|
63
|
+
get policies() {
|
|
64
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_policies, "f");
|
|
65
|
+
}
|
|
66
|
+
get reference() {
|
|
67
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_reference, "f");
|
|
68
|
+
}
|
|
69
|
+
get rights() {
|
|
70
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_rights, "f");
|
|
71
|
+
}
|
|
72
|
+
get scopes() {
|
|
73
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_scopes, "f");
|
|
74
|
+
}
|
|
75
|
+
get xapUsername() {
|
|
76
|
+
return __classPrivateFieldGet(this, _CompleteWhoAmIUser_xapUsername, "f");
|
|
77
|
+
}
|
|
78
|
+
toJSON() {
|
|
79
|
+
return {
|
|
80
|
+
[CompleteWhoAmIUserFields.COLUMN_EMAIL]: this.email,
|
|
81
|
+
[CompleteWhoAmIUserFields.COLUMN_FIRSTNAME]: this.firstname,
|
|
82
|
+
[CompleteWhoAmIUserFields.COLUMN_LASTNAME]: this.lastname,
|
|
83
|
+
[CompleteWhoAmIUserFields.COLUMN_LOGIN]: this.login,
|
|
84
|
+
[CompleteWhoAmIUserFields.COLUMN_POLICIES]: this.policies,
|
|
85
|
+
[CompleteWhoAmIUserFields.COLUMN_REFERENCE]: this.reference,
|
|
86
|
+
[CompleteWhoAmIUserFields.COLUMN_RIGHTS]: this.rights,
|
|
87
|
+
[CompleteWhoAmIUserFields.COLUMN_SCOPES]: this.scopes,
|
|
88
|
+
[CompleteWhoAmIUserFields.COLUMN_XAP_USERNAME]: this.xapUsername,
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
exports.CompleteWhoAmIUser = CompleteWhoAmIUser;
|
|
93
|
+
_CompleteWhoAmIUser_email = new WeakMap(), _CompleteWhoAmIUser_firstname = new WeakMap(), _CompleteWhoAmIUser_lastname = new WeakMap(), _CompleteWhoAmIUser_login = new WeakMap(), _CompleteWhoAmIUser_policies = new WeakMap(), _CompleteWhoAmIUser_reference = new WeakMap(), _CompleteWhoAmIUser_rights = new WeakMap(), _CompleteWhoAmIUser_scopes = new WeakMap(), _CompleteWhoAmIUser_xapUsername = new WeakMap();
|
|
94
|
+
//# sourceMappingURL=CompleteWhoAmIUser.js.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./CompleteWhoAmI"), exports);
|
|
18
|
+
__exportStar(require("./CompleteWhoAmICompany"), exports);
|
|
19
|
+
__exportStar(require("./CompleteWhoAmIUser"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED