@seekora-ai/admin-api 1.1.99 → 1.2.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.1.99
1
+ ## @seekora-ai/admin-api@1.2.0
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 @seekora-ai/admin-api@1.1.99 --save
39
+ npm install @seekora-ai/admin-api@1.2.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -16704,6 +16704,12 @@ export interface DataTypesDefaultMenu {
16704
16704
  * @interface DataTypesDetailedUsageMetrics
16705
16705
  */
16706
16706
  export interface DataTypesDetailedUsageMetrics {
16707
+ /**
16708
+ * Additional dynamically discovered features from plan (rps, customer_support, etc.)
16709
+ * @type {{ [key: string]: any; }}
16710
+ * @memberof DataTypesDetailedUsageMetrics
16711
+ */
16712
+ 'additional_metrics'?: { [key: string]: any; };
16707
16713
  /**
16708
16714
  * Analytics
16709
16715
  * @type {DataTypesConsumableMetric}
@@ -22242,6 +22248,18 @@ export interface DataTypesInviteMemberRequest {
22242
22248
  * @memberof DataTypesInviteMemberRequest
22243
22249
  */
22244
22250
  'email': string;
22251
+ /**
22252
+ * Optional: pre-fill invited user\'s first name on acceptance form
22253
+ * @type {string}
22254
+ * @memberof DataTypesInviteMemberRequest
22255
+ */
22256
+ 'first_name'?: string;
22257
+ /**
22258
+ * Optional: pre-fill invited user\'s last name on acceptance form
22259
+ * @type {string}
22260
+ * @memberof DataTypesInviteMemberRequest
22261
+ */
22262
+ 'last_name'?: string;
22245
22263
  /**
22246
22264
  * Optional: Can be \'admin\', \'member\', or a role ID (integer). Not required if useCustomPermissions is true
22247
22265
  * @type {any}
@@ -28929,6 +28947,12 @@ export interface DataTypesRuleConfig {
28929
28947
  * @interface DataTypesSampleDatasetResponse
28930
28948
  */
28931
28949
  export interface DataTypesSampleDatasetResponse {
28950
+ /**
28951
+ *
28952
+ * @type {string}
28953
+ * @memberof DataTypesSampleDatasetResponse
28954
+ */
28955
+ 'category'?: string;
28932
28956
  /**
28933
28957
  *
28934
28958
  * @type {string}
@@ -28947,6 +28971,12 @@ export interface DataTypesSampleDatasetResponse {
28947
28971
  * @memberof DataTypesSampleDatasetResponse
28948
28972
  */
28949
28973
  'imageUrl'?: string;
28974
+ /**
28975
+ *
28976
+ * @type {number}
28977
+ * @memberof DataTypesSampleDatasetResponse
28978
+ */
28979
+ 'sampleDatasetId'?: number;
28950
28980
  /**
28951
28981
  *
28952
28982
  * @type {string}
@@ -32878,6 +32908,12 @@ export interface DataTypesTeamInvitationWithDetails {
32878
32908
  * @memberof DataTypesTeamInvitationWithDetails
32879
32909
  */
32880
32910
  'expires_at'?: string;
32911
+ /**
32912
+ * Invited user\'s first name (from invitation metadata)
32913
+ * @type {string}
32914
+ * @memberof DataTypesTeamInvitationWithDetails
32915
+ */
32916
+ 'first_name'?: string;
32881
32917
  /**
32882
32918
  *
32883
32919
  * @type {string}
@@ -32890,6 +32926,12 @@ export interface DataTypesTeamInvitationWithDetails {
32890
32926
  * @memberof DataTypesTeamInvitationWithDetails
32891
32927
  */
32892
32928
  'inviter_name'?: string;
32929
+ /**
32930
+ * Invited user\'s last name (from invitation metadata)
32931
+ * @type {string}
32932
+ * @memberof DataTypesTeamInvitationWithDetails
32933
+ */
32934
+ 'last_name'?: string;
32893
32935
  /**
32894
32936
  *
32895
32937
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -16724,6 +16724,14 @@ export interface DataTypesDefaultMenu {
16724
16724
  * @interface DataTypesDetailedUsageMetrics
16725
16725
  */
16726
16726
  export interface DataTypesDetailedUsageMetrics {
16727
+ /**
16728
+ * Additional dynamically discovered features from plan (rps, customer_support, etc.)
16729
+ * @type {{ [key: string]: any; }}
16730
+ * @memberof DataTypesDetailedUsageMetrics
16731
+ */
16732
+ 'additional_metrics'?: {
16733
+ [key: string]: any;
16734
+ };
16727
16735
  /**
16728
16736
  * Analytics
16729
16737
  * @type {DataTypesConsumableMetric}
@@ -22271,6 +22279,18 @@ export interface DataTypesInviteMemberRequest {
22271
22279
  * @memberof DataTypesInviteMemberRequest
22272
22280
  */
22273
22281
  'email': string;
22282
+ /**
22283
+ * Optional: pre-fill invited user\'s first name on acceptance form
22284
+ * @type {string}
22285
+ * @memberof DataTypesInviteMemberRequest
22286
+ */
22287
+ 'first_name'?: string;
22288
+ /**
22289
+ * Optional: pre-fill invited user\'s last name on acceptance form
22290
+ * @type {string}
22291
+ * @memberof DataTypesInviteMemberRequest
22292
+ */
22293
+ 'last_name'?: string;
22274
22294
  /**
22275
22295
  * Optional: Can be \'admin\', \'member\', or a role ID (integer). Not required if useCustomPermissions is true
22276
22296
  * @type {any}
@@ -28997,6 +29017,12 @@ export interface DataTypesRuleConfig {
28997
29017
  * @interface DataTypesSampleDatasetResponse
28998
29018
  */
28999
29019
  export interface DataTypesSampleDatasetResponse {
29020
+ /**
29021
+ *
29022
+ * @type {string}
29023
+ * @memberof DataTypesSampleDatasetResponse
29024
+ */
29025
+ 'category'?: string;
29000
29026
  /**
29001
29027
  *
29002
29028
  * @type {string}
@@ -29015,6 +29041,12 @@ export interface DataTypesSampleDatasetResponse {
29015
29041
  * @memberof DataTypesSampleDatasetResponse
29016
29042
  */
29017
29043
  'imageUrl'?: string;
29044
+ /**
29045
+ *
29046
+ * @type {number}
29047
+ * @memberof DataTypesSampleDatasetResponse
29048
+ */
29049
+ 'sampleDatasetId'?: number;
29018
29050
  /**
29019
29051
  *
29020
29052
  * @type {string}
@@ -32952,6 +32984,12 @@ export interface DataTypesTeamInvitationWithDetails {
32952
32984
  * @memberof DataTypesTeamInvitationWithDetails
32953
32985
  */
32954
32986
  'expires_at'?: string;
32987
+ /**
32988
+ * Invited user\'s first name (from invitation metadata)
32989
+ * @type {string}
32990
+ * @memberof DataTypesTeamInvitationWithDetails
32991
+ */
32992
+ 'first_name'?: string;
32955
32993
  /**
32956
32994
  *
32957
32995
  * @type {string}
@@ -32964,6 +33002,12 @@ export interface DataTypesTeamInvitationWithDetails {
32964
33002
  * @memberof DataTypesTeamInvitationWithDetails
32965
33003
  */
32966
33004
  'inviter_name'?: string;
33005
+ /**
33006
+ * Invited user\'s last name (from invitation metadata)
33007
+ * @type {string}
33008
+ * @memberof DataTypesTeamInvitationWithDetails
33009
+ */
33010
+ 'last_name'?: string;
32967
33011
  /**
32968
33012
  *
32969
33013
  * @type {string}
package/dist/esm/api.d.ts CHANGED
@@ -16724,6 +16724,14 @@ export interface DataTypesDefaultMenu {
16724
16724
  * @interface DataTypesDetailedUsageMetrics
16725
16725
  */
16726
16726
  export interface DataTypesDetailedUsageMetrics {
16727
+ /**
16728
+ * Additional dynamically discovered features from plan (rps, customer_support, etc.)
16729
+ * @type {{ [key: string]: any; }}
16730
+ * @memberof DataTypesDetailedUsageMetrics
16731
+ */
16732
+ 'additional_metrics'?: {
16733
+ [key: string]: any;
16734
+ };
16727
16735
  /**
16728
16736
  * Analytics
16729
16737
  * @type {DataTypesConsumableMetric}
@@ -22271,6 +22279,18 @@ export interface DataTypesInviteMemberRequest {
22271
22279
  * @memberof DataTypesInviteMemberRequest
22272
22280
  */
22273
22281
  'email': string;
22282
+ /**
22283
+ * Optional: pre-fill invited user\'s first name on acceptance form
22284
+ * @type {string}
22285
+ * @memberof DataTypesInviteMemberRequest
22286
+ */
22287
+ 'first_name'?: string;
22288
+ /**
22289
+ * Optional: pre-fill invited user\'s last name on acceptance form
22290
+ * @type {string}
22291
+ * @memberof DataTypesInviteMemberRequest
22292
+ */
22293
+ 'last_name'?: string;
22274
22294
  /**
22275
22295
  * Optional: Can be \'admin\', \'member\', or a role ID (integer). Not required if useCustomPermissions is true
22276
22296
  * @type {any}
@@ -28997,6 +29017,12 @@ export interface DataTypesRuleConfig {
28997
29017
  * @interface DataTypesSampleDatasetResponse
28998
29018
  */
28999
29019
  export interface DataTypesSampleDatasetResponse {
29020
+ /**
29021
+ *
29022
+ * @type {string}
29023
+ * @memberof DataTypesSampleDatasetResponse
29024
+ */
29025
+ 'category'?: string;
29000
29026
  /**
29001
29027
  *
29002
29028
  * @type {string}
@@ -29015,6 +29041,12 @@ export interface DataTypesSampleDatasetResponse {
29015
29041
  * @memberof DataTypesSampleDatasetResponse
29016
29042
  */
29017
29043
  'imageUrl'?: string;
29044
+ /**
29045
+ *
29046
+ * @type {number}
29047
+ * @memberof DataTypesSampleDatasetResponse
29048
+ */
29049
+ 'sampleDatasetId'?: number;
29018
29050
  /**
29019
29051
  *
29020
29052
  * @type {string}
@@ -32952,6 +32984,12 @@ export interface DataTypesTeamInvitationWithDetails {
32952
32984
  * @memberof DataTypesTeamInvitationWithDetails
32953
32985
  */
32954
32986
  'expires_at'?: string;
32987
+ /**
32988
+ * Invited user\'s first name (from invitation metadata)
32989
+ * @type {string}
32990
+ * @memberof DataTypesTeamInvitationWithDetails
32991
+ */
32992
+ 'first_name'?: string;
32955
32993
  /**
32956
32994
  *
32957
32995
  * @type {string}
@@ -32964,6 +33002,12 @@ export interface DataTypesTeamInvitationWithDetails {
32964
33002
  * @memberof DataTypesTeamInvitationWithDetails
32965
33003
  */
32966
33004
  'inviter_name'?: string;
33005
+ /**
33006
+ * Invited user\'s last name (from invitation metadata)
33007
+ * @type {string}
33008
+ * @memberof DataTypesTeamInvitationWithDetails
33009
+ */
33010
+ 'last_name'?: string;
32967
33011
  /**
32968
33012
  *
32969
33013
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.1.99",
3
+ "version": "1.2.0",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file