flexinet-api 0.0.1053-prerelease0 → 0.0.1060-prerelease0
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/README.md +2 -2
- package/api.ts +4 -3
- package/dist/api.d.ts +3 -2
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +3 -2
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@0.0.
|
1
|
+
## flexinet-api@0.0.1060-prerelease0
|
2
2
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
4
4
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
36
36
|
_published:_
|
37
37
|
|
38
38
|
```
|
39
|
-
npm install flexinet-api@0.0.
|
39
|
+
npm install flexinet-api@0.0.1060-prerelease0 --save
|
40
40
|
```
|
41
41
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
@@ -150,7 +150,8 @@ export interface AuditLogListResponse {
|
|
150
150
|
*/
|
151
151
|
|
152
152
|
export const AuditLogObjectType = {
|
153
|
-
Promotion: 'promotion'
|
153
|
+
Promotion: 'promotion',
|
154
|
+
ApiKey: 'api_key'
|
154
155
|
} as const;
|
155
156
|
|
156
157
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
@@ -398,7 +399,7 @@ export interface CallbackBeneficiaryDetails {
|
|
398
399
|
* @type {string}
|
399
400
|
* @memberof CallbackBeneficiaryDetails
|
400
401
|
*/
|
401
|
-
'
|
402
|
+
'clientReference': string;
|
402
403
|
/**
|
403
404
|
*
|
404
405
|
* @type {BeneficiaryKind}
|
@@ -410,7 +411,7 @@ export interface CallbackBeneficiaryDetails {
|
|
410
411
|
* @type {string}
|
411
412
|
* @memberof CallbackBeneficiaryDetails
|
412
413
|
*/
|
413
|
-
'
|
414
|
+
'userReference'?: string;
|
414
415
|
}
|
415
416
|
|
416
417
|
|
package/dist/api.d.ts
CHANGED
@@ -129,6 +129,7 @@ export interface AuditLogListResponse {
|
|
129
129
|
*/
|
130
130
|
export declare const AuditLogObjectType: {
|
131
131
|
readonly Promotion: "promotion";
|
132
|
+
readonly ApiKey: "api_key";
|
132
133
|
};
|
133
134
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
134
135
|
/**
|
@@ -356,7 +357,7 @@ export interface CallbackBeneficiaryDetails {
|
|
356
357
|
* @type {string}
|
357
358
|
* @memberof CallbackBeneficiaryDetails
|
358
359
|
*/
|
359
|
-
'
|
360
|
+
'clientReference': string;
|
360
361
|
/**
|
361
362
|
*
|
362
363
|
* @type {BeneficiaryKind}
|
@@ -368,7 +369,7 @@ export interface CallbackBeneficiaryDetails {
|
|
368
369
|
* @type {string}
|
369
370
|
* @memberof CallbackBeneficiaryDetails
|
370
371
|
*/
|
371
|
-
'
|
372
|
+
'userReference'?: string;
|
372
373
|
}
|
373
374
|
/**
|
374
375
|
* @type CallbackEvent
|
package/dist/api.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
@@ -129,6 +129,7 @@ export interface AuditLogListResponse {
|
|
129
129
|
*/
|
130
130
|
export declare const AuditLogObjectType: {
|
131
131
|
readonly Promotion: "promotion";
|
132
|
+
readonly ApiKey: "api_key";
|
132
133
|
};
|
133
134
|
export type AuditLogObjectType = typeof AuditLogObjectType[keyof typeof AuditLogObjectType];
|
134
135
|
/**
|
@@ -356,7 +357,7 @@ export interface CallbackBeneficiaryDetails {
|
|
356
357
|
* @type {string}
|
357
358
|
* @memberof CallbackBeneficiaryDetails
|
358
359
|
*/
|
359
|
-
'
|
360
|
+
'clientReference': string;
|
360
361
|
/**
|
361
362
|
*
|
362
363
|
* @type {BeneficiaryKind}
|
@@ -368,7 +369,7 @@ export interface CallbackBeneficiaryDetails {
|
|
368
369
|
* @type {string}
|
369
370
|
* @memberof CallbackBeneficiaryDetails
|
370
371
|
*/
|
371
|
-
'
|
372
|
+
'userReference'?: string;
|
372
373
|
}
|
373
374
|
/**
|
374
375
|
* @type CallbackEvent
|
package/dist/esm/api.js
CHANGED