flexinet-api 0.0.401-prerelease0 → 0.0.413-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 +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## flexinet-api@0.0.
|
|
1
|
+
## flexinet-api@0.0.413-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.413-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -476,6 +476,12 @@ export interface Client {
|
|
|
476
476
|
* @memberof Client
|
|
477
477
|
*/
|
|
478
478
|
'updatedAt': string;
|
|
479
|
+
/**
|
|
480
|
+
*
|
|
481
|
+
* @type {User}
|
|
482
|
+
* @memberof Client
|
|
483
|
+
*/
|
|
484
|
+
'manager'?: User;
|
|
479
485
|
}
|
|
480
486
|
/**
|
|
481
487
|
*
|
|
@@ -501,6 +507,12 @@ export interface ClientCreationRequest {
|
|
|
501
507
|
* @memberof ClientCreationRequest
|
|
502
508
|
*/
|
|
503
509
|
'additionalProperties': { [key: string]: string; };
|
|
510
|
+
/**
|
|
511
|
+
*
|
|
512
|
+
* @type {string}
|
|
513
|
+
* @memberof ClientCreationRequest
|
|
514
|
+
*/
|
|
515
|
+
'managerId'?: string;
|
|
504
516
|
}
|
|
505
517
|
/**
|
|
506
518
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -444,6 +444,12 @@ export interface Client {
|
|
|
444
444
|
* @memberof Client
|
|
445
445
|
*/
|
|
446
446
|
'updatedAt': string;
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @type {User}
|
|
450
|
+
* @memberof Client
|
|
451
|
+
*/
|
|
452
|
+
'manager'?: User;
|
|
447
453
|
}
|
|
448
454
|
/**
|
|
449
455
|
*
|
|
@@ -471,6 +477,12 @@ export interface ClientCreationRequest {
|
|
|
471
477
|
'additionalProperties': {
|
|
472
478
|
[key: string]: string;
|
|
473
479
|
};
|
|
480
|
+
/**
|
|
481
|
+
*
|
|
482
|
+
* @type {string}
|
|
483
|
+
* @memberof ClientCreationRequest
|
|
484
|
+
*/
|
|
485
|
+
'managerId'?: string;
|
|
474
486
|
}
|
|
475
487
|
/**
|
|
476
488
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -444,6 +444,12 @@ export interface Client {
|
|
|
444
444
|
* @memberof Client
|
|
445
445
|
*/
|
|
446
446
|
'updatedAt': string;
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @type {User}
|
|
450
|
+
* @memberof Client
|
|
451
|
+
*/
|
|
452
|
+
'manager'?: User;
|
|
447
453
|
}
|
|
448
454
|
/**
|
|
449
455
|
*
|
|
@@ -471,6 +477,12 @@ export interface ClientCreationRequest {
|
|
|
471
477
|
'additionalProperties': {
|
|
472
478
|
[key: string]: string;
|
|
473
479
|
};
|
|
480
|
+
/**
|
|
481
|
+
*
|
|
482
|
+
* @type {string}
|
|
483
|
+
* @memberof ClientCreationRequest
|
|
484
|
+
*/
|
|
485
|
+
'managerId'?: string;
|
|
474
486
|
}
|
|
475
487
|
/**
|
|
476
488
|
*
|