@seekora-ai/admin-api 1.1.99 → 1.2.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.1.99
1
+ ## @seekora-ai/admin-api@1.2.01
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.01 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -964,6 +964,7 @@ Class | Method | HTTP request | Description
964
964
  - [DataTypesBulkDocumentResponseWrapper](docs/DataTypesBulkDocumentResponseWrapper.md)
965
965
  - [DataTypesBulkUploadPluralDeclensionRequest](docs/DataTypesBulkUploadPluralDeclensionRequest.md)
966
966
  - [DataTypesBulkUploadResponseWrapper](docs/DataTypesBulkUploadResponseWrapper.md)
967
+ - [DataTypesCancelledPlanInfo](docs/DataTypesCancelledPlanInfo.md)
967
968
  - [DataTypesChannelStatus](docs/DataTypesChannelStatus.md)
968
969
  - [DataTypesClearDocumentsResponse](docs/DataTypesClearDocumentsResponse.md)
969
970
  - [DataTypesClearDocumentsResponseWrapper](docs/DataTypesClearDocumentsResponseWrapper.md)
package/api.ts CHANGED
@@ -12133,6 +12133,12 @@ export interface DataTypesAPICall {
12133
12133
  * @memberof DataTypesAPICall
12134
12134
  */
12135
12135
  'ResetDate'?: string;
12136
+ /**
12137
+ * Public identifier
12138
+ * @type {string}
12139
+ * @memberof DataTypesAPICall
12140
+ */
12141
+ 'callUuid'?: string;
12136
12142
  }
12137
12143
  /**
12138
12144
  *
@@ -13153,6 +13159,12 @@ export interface DataTypesBillingOrderDetailsResponse {
13153
13159
  * @interface DataTypesBillingOverviewNewResponse
13154
13160
  */
13155
13161
  export interface DataTypesBillingOverviewNewResponse {
13162
+ /**
13163
+ * Last cancelled plan information (populated when on free plan after recent cancellation)
13164
+ * @type {DataTypesCancelledPlanInfo}
13165
+ * @memberof DataTypesBillingOverviewNewResponse
13166
+ */
13167
+ 'cancelled_plan'?: DataTypesCancelledPlanInfo;
13156
13168
  /**
13157
13169
  * Credit balance information
13158
13170
  * @type {DataTypesCreditBalanceInfo}
@@ -13334,6 +13346,37 @@ export interface DataTypesBulkUploadResponseWrapper {
13334
13346
  */
13335
13347
  'status'?: number;
13336
13348
  }
13349
+ /**
13350
+ *
13351
+ * @export
13352
+ * @interface DataTypesCancelledPlanInfo
13353
+ */
13354
+ export interface DataTypesCancelledPlanInfo {
13355
+ /**
13356
+ *
13357
+ * @type {string}
13358
+ * @memberof DataTypesCancelledPlanInfo
13359
+ */
13360
+ 'cancellation_reason'?: string;
13361
+ /**
13362
+ *
13363
+ * @type {string}
13364
+ * @memberof DataTypesCancelledPlanInfo
13365
+ */
13366
+ 'cancelled_at'?: string;
13367
+ /**
13368
+ *
13369
+ * @type {string}
13370
+ * @memberof DataTypesCancelledPlanInfo
13371
+ */
13372
+ 'plan_name'?: string;
13373
+ /**
13374
+ *
13375
+ * @type {number}
13376
+ * @memberof DataTypesCancelledPlanInfo
13377
+ */
13378
+ 'refund_amount'?: number;
13379
+ }
13337
13380
  /**
13338
13381
  *
13339
13382
  * @export
@@ -16704,6 +16747,12 @@ export interface DataTypesDefaultMenu {
16704
16747
  * @interface DataTypesDetailedUsageMetrics
16705
16748
  */
16706
16749
  export interface DataTypesDetailedUsageMetrics {
16750
+ /**
16751
+ * Additional dynamically discovered features from plan (rps, customer_support, etc.)
16752
+ * @type {{ [key: string]: any; }}
16753
+ * @memberof DataTypesDetailedUsageMetrics
16754
+ */
16755
+ 'additional_metrics'?: { [key: string]: any; };
16707
16756
  /**
16708
16757
  * Analytics
16709
16758
  * @type {DataTypesConsumableMetric}
@@ -22242,6 +22291,18 @@ export interface DataTypesInviteMemberRequest {
22242
22291
  * @memberof DataTypesInviteMemberRequest
22243
22292
  */
22244
22293
  'email': string;
22294
+ /**
22295
+ * Optional: pre-fill invited user\'s first name on acceptance form
22296
+ * @type {string}
22297
+ * @memberof DataTypesInviteMemberRequest
22298
+ */
22299
+ 'first_name'?: string;
22300
+ /**
22301
+ * Optional: pre-fill invited user\'s last name on acceptance form
22302
+ * @type {string}
22303
+ * @memberof DataTypesInviteMemberRequest
22304
+ */
22305
+ 'last_name'?: string;
22245
22306
  /**
22246
22307
  * Optional: Can be \'admin\', \'member\', or a role ID (integer). Not required if useCustomPermissions is true
22247
22308
  * @type {any}
@@ -24200,6 +24261,12 @@ export interface DataTypesNotification {
24200
24261
  * @memberof DataTypesNotification
24201
24262
  */
24202
24263
  'icon'?: string;
24264
+ /**
24265
+ *
24266
+ * @type {number}
24267
+ * @memberof DataTypesNotification
24268
+ */
24269
+ 'id'?: number;
24203
24270
  /**
24204
24271
  * Display properties
24205
24272
  * @type {string}
@@ -24284,6 +24351,12 @@ export interface DataTypesNotification {
24284
24351
  * @memberof DataTypesNotification
24285
24352
  */
24286
24353
  'status'?: DataTypesNotificationStatus;
24354
+ /**
24355
+ *
24356
+ * @type {number}
24357
+ * @memberof DataTypesNotification
24358
+ */
24359
+ 'store_id'?: number;
24287
24360
  /**
24288
24361
  *
24289
24362
  * @type {Array<string>}
@@ -24332,6 +24405,12 @@ export interface DataTypesNotification {
24332
24405
  * @memberof DataTypesNotification
24333
24406
  */
24334
24407
  'user_contact'?: DataTypesUserContact;
24408
+ /**
24409
+ *
24410
+ * @type {number}
24411
+ * @memberof DataTypesNotification
24412
+ */
24413
+ 'user_id'?: number;
24335
24414
  /**
24336
24415
  * Optional (uses defaults if nil)
24337
24416
  * @type {DataTypesNotificationPreferences}
@@ -25991,11 +26070,11 @@ export interface DataTypesOrgMemberWithUser {
25991
26070
  */
25992
26071
  'stores_count'?: number;
25993
26072
  /**
25994
- * user_uuid exposed as \"user_id\" to maintain frontend API contract
26073
+ *
25995
26074
  * @type {string}
25996
26075
  * @memberof DataTypesOrgMemberWithUser
25997
26076
  */
25998
- 'user_id'?: string;
26077
+ 'user_uuid'?: string;
25999
26078
  }
26000
26079
  /**
26001
26080
  *
@@ -27271,6 +27350,12 @@ export interface DataTypesPluralDeclension {
27271
27350
  * @memberof DataTypesPluralDeclension
27272
27351
  */
27273
27352
  'created_at'?: string;
27353
+ /**
27354
+ *
27355
+ * @type {string}
27356
+ * @memberof DataTypesPluralDeclension
27357
+ */
27358
+ 'id'?: string;
27274
27359
  /**
27275
27360
  *
27276
27361
  * @type {boolean}
@@ -28929,6 +29014,12 @@ export interface DataTypesRuleConfig {
28929
29014
  * @interface DataTypesSampleDatasetResponse
28930
29015
  */
28931
29016
  export interface DataTypesSampleDatasetResponse {
29017
+ /**
29018
+ *
29019
+ * @type {string}
29020
+ * @memberof DataTypesSampleDatasetResponse
29021
+ */
29022
+ 'category'?: string;
28932
29023
  /**
28933
29024
  *
28934
29025
  * @type {string}
@@ -28947,6 +29038,12 @@ export interface DataTypesSampleDatasetResponse {
28947
29038
  * @memberof DataTypesSampleDatasetResponse
28948
29039
  */
28949
29040
  'imageUrl'?: string;
29041
+ /**
29042
+ *
29043
+ * @type {number}
29044
+ * @memberof DataTypesSampleDatasetResponse
29045
+ */
29046
+ 'sampleDatasetId'?: number;
28950
29047
  /**
28951
29048
  *
28952
29049
  * @type {string}
@@ -32878,6 +32975,18 @@ export interface DataTypesTeamInvitationWithDetails {
32878
32975
  * @memberof DataTypesTeamInvitationWithDetails
32879
32976
  */
32880
32977
  'expires_at'?: string;
32978
+ /**
32979
+ * Invited user\'s first name (from invitation metadata)
32980
+ * @type {string}
32981
+ * @memberof DataTypesTeamInvitationWithDetails
32982
+ */
32983
+ 'first_name'?: string;
32984
+ /**
32985
+ *
32986
+ * @type {string}
32987
+ * @memberof DataTypesTeamInvitationWithDetails
32988
+ */
32989
+ 'invitation_uuid'?: string;
32881
32990
  /**
32882
32991
  *
32883
32992
  * @type {string}
@@ -32890,6 +32999,12 @@ export interface DataTypesTeamInvitationWithDetails {
32890
32999
  * @memberof DataTypesTeamInvitationWithDetails
32891
33000
  */
32892
33001
  'inviter_name'?: string;
33002
+ /**
33003
+ * Invited user\'s last name (from invitation metadata)
33004
+ * @type {string}
33005
+ * @memberof DataTypesTeamInvitationWithDetails
33006
+ */
33007
+ 'last_name'?: string;
32893
33008
  /**
32894
33009
  *
32895
33010
  * @type {string}
@@ -34467,6 +34582,12 @@ export interface DataTypesUserCustomPermissionsRequest {
34467
34582
  * @memberof DataTypesUserCustomPermissionsRequest
34468
34583
  */
34469
34584
  'roleName'?: string;
34585
+ /**
34586
+ * Public identifier for the role to assign
34587
+ * @type {string}
34588
+ * @memberof DataTypesUserCustomPermissionsRequest
34589
+ */
34590
+ 'roleUuid'?: string;
34470
34591
  /**
34471
34592
  * true = custom, false = use regular role
34472
34593
  * @type {boolean}
@@ -35333,7 +35454,7 @@ export interface FeatureLimitServiceCreditStatus {
35333
35454
  */
35334
35455
  'is_exhausted'?: boolean;
35335
35456
  /**
35336
- * All-time consumed credits
35457
+ * All-time consumed credits (actual API usage only)
35337
35458
  * @type {number}
35338
35459
  * @memberof FeatureLimitServiceCreditStatus
35339
35460
  */
@@ -35350,12 +35471,36 @@ export interface FeatureLimitServiceCreditStatus {
35350
35471
  * @memberof FeatureLimitServiceCreditStatus
35351
35472
  */
35352
35473
  'subscription_available'?: number;
35474
+ /**
35475
+ * All-time subscription credits consumed by API calls
35476
+ * @type {number}
35477
+ * @memberof FeatureLimitServiceCreditStatus
35478
+ */
35479
+ 'subscription_consumed'?: number;
35480
+ /**
35481
+ * All-time subscription credits allocated
35482
+ * @type {number}
35483
+ * @memberof FeatureLimitServiceCreditStatus
35484
+ */
35485
+ 'subscription_total'?: number;
35353
35486
  /**
35354
35487
  * Actual top-up balance (purchased credits, never expire)
35355
35488
  * @type {number}
35356
35489
  * @memberof FeatureLimitServiceCreditStatus
35357
35490
  */
35358
35491
  'topup_available'?: number;
35492
+ /**
35493
+ * All-time topup credits consumed by API calls
35494
+ * @type {number}
35495
+ * @memberof FeatureLimitServiceCreditStatus
35496
+ */
35497
+ 'topup_consumed'?: number;
35498
+ /**
35499
+ * All-time topup credits purchased
35500
+ * @type {number}
35501
+ * @memberof FeatureLimitServiceCreditStatus
35502
+ */
35503
+ 'topup_total'?: number;
35359
35504
  /**
35360
35505
  * THIS cycle\'s allocated credits (e.g., 1,600,000/month)
35361
35506
  * @type {number}
@@ -40416,7 +40561,7 @@ export const APICallsApiAxiosParamCreator = function (configuration?: Configurat
40416
40561
  /**
40417
40562
  * Deletes a APICall from the system by ID.
40418
40563
  * @summary Delete a APICall
40419
- * @param {string} callID APICall ID
40564
+ * @param {string} callID Call UUID
40420
40565
  * @param {*} [options] Override http request option.
40421
40566
  * @throws {RequiredError}
40422
40567
  */
@@ -40453,7 +40598,7 @@ export const APICallsApiAxiosParamCreator = function (configuration?: Configurat
40453
40598
  /**
40454
40599
  * Fetches APICall detail
40455
40600
  * @summary Fetches APICall detail
40456
- * @param {string} callID call id
40601
+ * @param {string} callID Call UUID
40457
40602
  * @param {*} [options] Override http request option.
40458
40603
  * @throws {RequiredError}
40459
40604
  */
@@ -40490,7 +40635,7 @@ export const APICallsApiAxiosParamCreator = function (configuration?: Configurat
40490
40635
  /**
40491
40636
  * UpdateAPICall information by ID.
40492
40637
  * @summary UpdateAPICall an existing apicall details
40493
- * @param {string} callID APICalls ID
40638
+ * @param {string} callID Call UUID
40494
40639
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40495
40640
  * @param {*} [options] Override http request option.
40496
40641
  * @throws {RequiredError}
@@ -40615,7 +40760,7 @@ export const APICallsApiFp = function(configuration?: Configuration) {
40615
40760
  /**
40616
40761
  * Deletes a APICall from the system by ID.
40617
40762
  * @summary Delete a APICall
40618
- * @param {string} callID APICall ID
40763
+ * @param {string} callID Call UUID
40619
40764
  * @param {*} [options] Override http request option.
40620
40765
  * @throws {RequiredError}
40621
40766
  */
@@ -40628,7 +40773,7 @@ export const APICallsApiFp = function(configuration?: Configuration) {
40628
40773
  /**
40629
40774
  * Fetches APICall detail
40630
40775
  * @summary Fetches APICall detail
40631
- * @param {string} callID call id
40776
+ * @param {string} callID Call UUID
40632
40777
  * @param {*} [options] Override http request option.
40633
40778
  * @throws {RequiredError}
40634
40779
  */
@@ -40641,7 +40786,7 @@ export const APICallsApiFp = function(configuration?: Configuration) {
40641
40786
  /**
40642
40787
  * UpdateAPICall information by ID.
40643
40788
  * @summary UpdateAPICall an existing apicall details
40644
- * @param {string} callID APICalls ID
40789
+ * @param {string} callID Call UUID
40645
40790
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40646
40791
  * @param {*} [options] Override http request option.
40647
40792
  * @throws {RequiredError}
@@ -40690,7 +40835,7 @@ export const APICallsApiFactory = function (configuration?: Configuration, baseP
40690
40835
  /**
40691
40836
  * Deletes a APICall from the system by ID.
40692
40837
  * @summary Delete a APICall
40693
- * @param {string} callID APICall ID
40838
+ * @param {string} callID Call UUID
40694
40839
  * @param {*} [options] Override http request option.
40695
40840
  * @throws {RequiredError}
40696
40841
  */
@@ -40700,7 +40845,7 @@ export const APICallsApiFactory = function (configuration?: Configuration, baseP
40700
40845
  /**
40701
40846
  * Fetches APICall detail
40702
40847
  * @summary Fetches APICall detail
40703
- * @param {string} callID call id
40848
+ * @param {string} callID Call UUID
40704
40849
  * @param {*} [options] Override http request option.
40705
40850
  * @throws {RequiredError}
40706
40851
  */
@@ -40710,7 +40855,7 @@ export const APICallsApiFactory = function (configuration?: Configuration, baseP
40710
40855
  /**
40711
40856
  * UpdateAPICall information by ID.
40712
40857
  * @summary UpdateAPICall an existing apicall details
40713
- * @param {string} callID APICalls ID
40858
+ * @param {string} callID Call UUID
40714
40859
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40715
40860
  * @param {*} [options] Override http request option.
40716
40861
  * @throws {RequiredError}
@@ -40750,7 +40895,7 @@ export class APICallsApi extends BaseAPI {
40750
40895
  /**
40751
40896
  * Deletes a APICall from the system by ID.
40752
40897
  * @summary Delete a APICall
40753
- * @param {string} callID APICall ID
40898
+ * @param {string} callID Call UUID
40754
40899
  * @param {*} [options] Override http request option.
40755
40900
  * @throws {RequiredError}
40756
40901
  * @memberof APICallsApi
@@ -40762,7 +40907,7 @@ export class APICallsApi extends BaseAPI {
40762
40907
  /**
40763
40908
  * Fetches APICall detail
40764
40909
  * @summary Fetches APICall detail
40765
- * @param {string} callID call id
40910
+ * @param {string} callID Call UUID
40766
40911
  * @param {*} [options] Override http request option.
40767
40912
  * @throws {RequiredError}
40768
40913
  * @memberof APICallsApi
@@ -40774,7 +40919,7 @@ export class APICallsApi extends BaseAPI {
40774
40919
  /**
40775
40920
  * UpdateAPICall information by ID.
40776
40921
  * @summary UpdateAPICall an existing apicall details
40777
- * @param {string} callID APICalls ID
40922
+ * @param {string} callID Call UUID
40778
40923
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40779
40924
  * @param {*} [options] Override http request option.
40780
40925
  * @throws {RequiredError}
package/dist/api.d.ts CHANGED
@@ -12159,6 +12159,12 @@ export interface DataTypesAPICall {
12159
12159
  * @memberof DataTypesAPICall
12160
12160
  */
12161
12161
  'ResetDate'?: string;
12162
+ /**
12163
+ * Public identifier
12164
+ * @type {string}
12165
+ * @memberof DataTypesAPICall
12166
+ */
12167
+ 'callUuid'?: string;
12162
12168
  }
12163
12169
  /**
12164
12170
  *
@@ -13178,6 +13184,12 @@ export interface DataTypesBillingOrderDetailsResponse {
13178
13184
  * @interface DataTypesBillingOverviewNewResponse
13179
13185
  */
13180
13186
  export interface DataTypesBillingOverviewNewResponse {
13187
+ /**
13188
+ * Last cancelled plan information (populated when on free plan after recent cancellation)
13189
+ * @type {DataTypesCancelledPlanInfo}
13190
+ * @memberof DataTypesBillingOverviewNewResponse
13191
+ */
13192
+ 'cancelled_plan'?: DataTypesCancelledPlanInfo;
13181
13193
  /**
13182
13194
  * Credit balance information
13183
13195
  * @type {DataTypesCreditBalanceInfo}
@@ -13359,6 +13371,37 @@ export interface DataTypesBulkUploadResponseWrapper {
13359
13371
  */
13360
13372
  'status'?: number;
13361
13373
  }
13374
+ /**
13375
+ *
13376
+ * @export
13377
+ * @interface DataTypesCancelledPlanInfo
13378
+ */
13379
+ export interface DataTypesCancelledPlanInfo {
13380
+ /**
13381
+ *
13382
+ * @type {string}
13383
+ * @memberof DataTypesCancelledPlanInfo
13384
+ */
13385
+ 'cancellation_reason'?: string;
13386
+ /**
13387
+ *
13388
+ * @type {string}
13389
+ * @memberof DataTypesCancelledPlanInfo
13390
+ */
13391
+ 'cancelled_at'?: string;
13392
+ /**
13393
+ *
13394
+ * @type {string}
13395
+ * @memberof DataTypesCancelledPlanInfo
13396
+ */
13397
+ 'plan_name'?: string;
13398
+ /**
13399
+ *
13400
+ * @type {number}
13401
+ * @memberof DataTypesCancelledPlanInfo
13402
+ */
13403
+ 'refund_amount'?: number;
13404
+ }
13362
13405
  /**
13363
13406
  *
13364
13407
  * @export
@@ -16724,6 +16767,14 @@ export interface DataTypesDefaultMenu {
16724
16767
  * @interface DataTypesDetailedUsageMetrics
16725
16768
  */
16726
16769
  export interface DataTypesDetailedUsageMetrics {
16770
+ /**
16771
+ * Additional dynamically discovered features from plan (rps, customer_support, etc.)
16772
+ * @type {{ [key: string]: any; }}
16773
+ * @memberof DataTypesDetailedUsageMetrics
16774
+ */
16775
+ 'additional_metrics'?: {
16776
+ [key: string]: any;
16777
+ };
16727
16778
  /**
16728
16779
  * Analytics
16729
16780
  * @type {DataTypesConsumableMetric}
@@ -22271,6 +22322,18 @@ export interface DataTypesInviteMemberRequest {
22271
22322
  * @memberof DataTypesInviteMemberRequest
22272
22323
  */
22273
22324
  'email': string;
22325
+ /**
22326
+ * Optional: pre-fill invited user\'s first name on acceptance form
22327
+ * @type {string}
22328
+ * @memberof DataTypesInviteMemberRequest
22329
+ */
22330
+ 'first_name'?: string;
22331
+ /**
22332
+ * Optional: pre-fill invited user\'s last name on acceptance form
22333
+ * @type {string}
22334
+ * @memberof DataTypesInviteMemberRequest
22335
+ */
22336
+ 'last_name'?: string;
22274
22337
  /**
22275
22338
  * Optional: Can be \'admin\', \'member\', or a role ID (integer). Not required if useCustomPermissions is true
22276
22339
  * @type {any}
@@ -24237,6 +24300,12 @@ export interface DataTypesNotification {
24237
24300
  * @memberof DataTypesNotification
24238
24301
  */
24239
24302
  'icon'?: string;
24303
+ /**
24304
+ *
24305
+ * @type {number}
24306
+ * @memberof DataTypesNotification
24307
+ */
24308
+ 'id'?: number;
24240
24309
  /**
24241
24310
  * Display properties
24242
24311
  * @type {string}
@@ -24323,6 +24392,12 @@ export interface DataTypesNotification {
24323
24392
  * @memberof DataTypesNotification
24324
24393
  */
24325
24394
  'status'?: DataTypesNotificationStatus;
24395
+ /**
24396
+ *
24397
+ * @type {number}
24398
+ * @memberof DataTypesNotification
24399
+ */
24400
+ 'store_id'?: number;
24326
24401
  /**
24327
24402
  *
24328
24403
  * @type {Array<string>}
@@ -24373,6 +24448,12 @@ export interface DataTypesNotification {
24373
24448
  * @memberof DataTypesNotification
24374
24449
  */
24375
24450
  'user_contact'?: DataTypesUserContact;
24451
+ /**
24452
+ *
24453
+ * @type {number}
24454
+ * @memberof DataTypesNotification
24455
+ */
24456
+ 'user_id'?: number;
24376
24457
  /**
24377
24458
  * Optional (uses defaults if nil)
24378
24459
  * @type {DataTypesNotificationPreferences}
@@ -26042,11 +26123,11 @@ export interface DataTypesOrgMemberWithUser {
26042
26123
  */
26043
26124
  'stores_count'?: number;
26044
26125
  /**
26045
- * user_uuid exposed as \"user_id\" to maintain frontend API contract
26126
+ *
26046
26127
  * @type {string}
26047
26128
  * @memberof DataTypesOrgMemberWithUser
26048
26129
  */
26049
- 'user_id'?: string;
26130
+ 'user_uuid'?: string;
26050
26131
  }
26051
26132
  /**
26052
26133
  *
@@ -27338,6 +27419,12 @@ export interface DataTypesPluralDeclension {
27338
27419
  * @memberof DataTypesPluralDeclension
27339
27420
  */
27340
27421
  'created_at'?: string;
27422
+ /**
27423
+ *
27424
+ * @type {string}
27425
+ * @memberof DataTypesPluralDeclension
27426
+ */
27427
+ 'id'?: string;
27341
27428
  /**
27342
27429
  *
27343
27430
  * @type {boolean}
@@ -28997,6 +29084,12 @@ export interface DataTypesRuleConfig {
28997
29084
  * @interface DataTypesSampleDatasetResponse
28998
29085
  */
28999
29086
  export interface DataTypesSampleDatasetResponse {
29087
+ /**
29088
+ *
29089
+ * @type {string}
29090
+ * @memberof DataTypesSampleDatasetResponse
29091
+ */
29092
+ 'category'?: string;
29000
29093
  /**
29001
29094
  *
29002
29095
  * @type {string}
@@ -29015,6 +29108,12 @@ export interface DataTypesSampleDatasetResponse {
29015
29108
  * @memberof DataTypesSampleDatasetResponse
29016
29109
  */
29017
29110
  'imageUrl'?: string;
29111
+ /**
29112
+ *
29113
+ * @type {number}
29114
+ * @memberof DataTypesSampleDatasetResponse
29115
+ */
29116
+ 'sampleDatasetId'?: number;
29018
29117
  /**
29019
29118
  *
29020
29119
  * @type {string}
@@ -32952,6 +33051,18 @@ export interface DataTypesTeamInvitationWithDetails {
32952
33051
  * @memberof DataTypesTeamInvitationWithDetails
32953
33052
  */
32954
33053
  'expires_at'?: string;
33054
+ /**
33055
+ * Invited user\'s first name (from invitation metadata)
33056
+ * @type {string}
33057
+ * @memberof DataTypesTeamInvitationWithDetails
33058
+ */
33059
+ 'first_name'?: string;
33060
+ /**
33061
+ *
33062
+ * @type {string}
33063
+ * @memberof DataTypesTeamInvitationWithDetails
33064
+ */
33065
+ 'invitation_uuid'?: string;
32955
33066
  /**
32956
33067
  *
32957
33068
  * @type {string}
@@ -32964,6 +33075,12 @@ export interface DataTypesTeamInvitationWithDetails {
32964
33075
  * @memberof DataTypesTeamInvitationWithDetails
32965
33076
  */
32966
33077
  'inviter_name'?: string;
33078
+ /**
33079
+ * Invited user\'s last name (from invitation metadata)
33080
+ * @type {string}
33081
+ * @memberof DataTypesTeamInvitationWithDetails
33082
+ */
33083
+ 'last_name'?: string;
32967
33084
  /**
32968
33085
  *
32969
33086
  * @type {string}
@@ -34531,6 +34648,12 @@ export interface DataTypesUserCustomPermissionsRequest {
34531
34648
  * @memberof DataTypesUserCustomPermissionsRequest
34532
34649
  */
34533
34650
  'roleName'?: string;
34651
+ /**
34652
+ * Public identifier for the role to assign
34653
+ * @type {string}
34654
+ * @memberof DataTypesUserCustomPermissionsRequest
34655
+ */
34656
+ 'roleUuid'?: string;
34534
34657
  /**
34535
34658
  * true = custom, false = use regular role
34536
34659
  * @type {boolean}
@@ -35401,7 +35524,7 @@ export interface FeatureLimitServiceCreditStatus {
35401
35524
  */
35402
35525
  'is_exhausted'?: boolean;
35403
35526
  /**
35404
- * All-time consumed credits
35527
+ * All-time consumed credits (actual API usage only)
35405
35528
  * @type {number}
35406
35529
  * @memberof FeatureLimitServiceCreditStatus
35407
35530
  */
@@ -35418,12 +35541,36 @@ export interface FeatureLimitServiceCreditStatus {
35418
35541
  * @memberof FeatureLimitServiceCreditStatus
35419
35542
  */
35420
35543
  'subscription_available'?: number;
35544
+ /**
35545
+ * All-time subscription credits consumed by API calls
35546
+ * @type {number}
35547
+ * @memberof FeatureLimitServiceCreditStatus
35548
+ */
35549
+ 'subscription_consumed'?: number;
35550
+ /**
35551
+ * All-time subscription credits allocated
35552
+ * @type {number}
35553
+ * @memberof FeatureLimitServiceCreditStatus
35554
+ */
35555
+ 'subscription_total'?: number;
35421
35556
  /**
35422
35557
  * Actual top-up balance (purchased credits, never expire)
35423
35558
  * @type {number}
35424
35559
  * @memberof FeatureLimitServiceCreditStatus
35425
35560
  */
35426
35561
  'topup_available'?: number;
35562
+ /**
35563
+ * All-time topup credits consumed by API calls
35564
+ * @type {number}
35565
+ * @memberof FeatureLimitServiceCreditStatus
35566
+ */
35567
+ 'topup_consumed'?: number;
35568
+ /**
35569
+ * All-time topup credits purchased
35570
+ * @type {number}
35571
+ * @memberof FeatureLimitServiceCreditStatus
35572
+ */
35573
+ 'topup_total'?: number;
35427
35574
  /**
35428
35575
  * THIS cycle\'s allocated credits (e.g., 1,600,000/month)
35429
35576
  * @type {number}
@@ -40485,7 +40632,7 @@ export declare const APICallsApiAxiosParamCreator: (configuration?: Configuratio
40485
40632
  /**
40486
40633
  * Deletes a APICall from the system by ID.
40487
40634
  * @summary Delete a APICall
40488
- * @param {string} callID APICall ID
40635
+ * @param {string} callID Call UUID
40489
40636
  * @param {*} [options] Override http request option.
40490
40637
  * @throws {RequiredError}
40491
40638
  */
@@ -40493,7 +40640,7 @@ export declare const APICallsApiAxiosParamCreator: (configuration?: Configuratio
40493
40640
  /**
40494
40641
  * Fetches APICall detail
40495
40642
  * @summary Fetches APICall detail
40496
- * @param {string} callID call id
40643
+ * @param {string} callID Call UUID
40497
40644
  * @param {*} [options] Override http request option.
40498
40645
  * @throws {RequiredError}
40499
40646
  */
@@ -40501,7 +40648,7 @@ export declare const APICallsApiAxiosParamCreator: (configuration?: Configuratio
40501
40648
  /**
40502
40649
  * UpdateAPICall information by ID.
40503
40650
  * @summary UpdateAPICall an existing apicall details
40504
- * @param {string} callID APICalls ID
40651
+ * @param {string} callID Call UUID
40505
40652
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40506
40653
  * @param {*} [options] Override http request option.
40507
40654
  * @throws {RequiredError}
@@ -40531,7 +40678,7 @@ export declare const APICallsApiFp: (configuration?: Configuration) => {
40531
40678
  /**
40532
40679
  * Deletes a APICall from the system by ID.
40533
40680
  * @summary Delete a APICall
40534
- * @param {string} callID APICall ID
40681
+ * @param {string} callID Call UUID
40535
40682
  * @param {*} [options] Override http request option.
40536
40683
  * @throws {RequiredError}
40537
40684
  */
@@ -40539,7 +40686,7 @@ export declare const APICallsApiFp: (configuration?: Configuration) => {
40539
40686
  /**
40540
40687
  * Fetches APICall detail
40541
40688
  * @summary Fetches APICall detail
40542
- * @param {string} callID call id
40689
+ * @param {string} callID Call UUID
40543
40690
  * @param {*} [options] Override http request option.
40544
40691
  * @throws {RequiredError}
40545
40692
  */
@@ -40547,7 +40694,7 @@ export declare const APICallsApiFp: (configuration?: Configuration) => {
40547
40694
  /**
40548
40695
  * UpdateAPICall information by ID.
40549
40696
  * @summary UpdateAPICall an existing apicall details
40550
- * @param {string} callID APICalls ID
40697
+ * @param {string} callID Call UUID
40551
40698
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40552
40699
  * @param {*} [options] Override http request option.
40553
40700
  * @throws {RequiredError}
@@ -40577,7 +40724,7 @@ export declare const APICallsApiFactory: (configuration?: Configuration, basePat
40577
40724
  /**
40578
40725
  * Deletes a APICall from the system by ID.
40579
40726
  * @summary Delete a APICall
40580
- * @param {string} callID APICall ID
40727
+ * @param {string} callID Call UUID
40581
40728
  * @param {*} [options] Override http request option.
40582
40729
  * @throws {RequiredError}
40583
40730
  */
@@ -40585,7 +40732,7 @@ export declare const APICallsApiFactory: (configuration?: Configuration, basePat
40585
40732
  /**
40586
40733
  * Fetches APICall detail
40587
40734
  * @summary Fetches APICall detail
40588
- * @param {string} callID call id
40735
+ * @param {string} callID Call UUID
40589
40736
  * @param {*} [options] Override http request option.
40590
40737
  * @throws {RequiredError}
40591
40738
  */
@@ -40593,7 +40740,7 @@ export declare const APICallsApiFactory: (configuration?: Configuration, basePat
40593
40740
  /**
40594
40741
  * UpdateAPICall information by ID.
40595
40742
  * @summary UpdateAPICall an existing apicall details
40596
- * @param {string} callID APICalls ID
40743
+ * @param {string} callID Call UUID
40597
40744
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40598
40745
  * @param {*} [options] Override http request option.
40599
40746
  * @throws {RequiredError}
@@ -40625,7 +40772,7 @@ export declare class APICallsApi extends BaseAPI {
40625
40772
  /**
40626
40773
  * Deletes a APICall from the system by ID.
40627
40774
  * @summary Delete a APICall
40628
- * @param {string} callID APICall ID
40775
+ * @param {string} callID Call UUID
40629
40776
  * @param {*} [options] Override http request option.
40630
40777
  * @throws {RequiredError}
40631
40778
  * @memberof APICallsApi
@@ -40634,7 +40781,7 @@ export declare class APICallsApi extends BaseAPI {
40634
40781
  /**
40635
40782
  * Fetches APICall detail
40636
40783
  * @summary Fetches APICall detail
40637
- * @param {string} callID call id
40784
+ * @param {string} callID Call UUID
40638
40785
  * @param {*} [options] Override http request option.
40639
40786
  * @throws {RequiredError}
40640
40787
  * @memberof APICallsApi
@@ -40643,7 +40790,7 @@ export declare class APICallsApi extends BaseAPI {
40643
40790
  /**
40644
40791
  * UpdateAPICall information by ID.
40645
40792
  * @summary UpdateAPICall an existing apicall details
40646
- * @param {string} callID APICalls ID
40793
+ * @param {string} callID Call UUID
40647
40794
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40648
40795
  * @param {*} [options] Override http request option.
40649
40796
  * @throws {RequiredError}
package/dist/api.js CHANGED
@@ -360,7 +360,7 @@ const APICallsApiAxiosParamCreator = function (configuration) {
360
360
  /**
361
361
  * Deletes a APICall from the system by ID.
362
362
  * @summary Delete a APICall
363
- * @param {string} callID APICall ID
363
+ * @param {string} callID Call UUID
364
364
  * @param {*} [options] Override http request option.
365
365
  * @throws {RequiredError}
366
366
  */
@@ -391,7 +391,7 @@ const APICallsApiAxiosParamCreator = function (configuration) {
391
391
  /**
392
392
  * Fetches APICall detail
393
393
  * @summary Fetches APICall detail
394
- * @param {string} callID call id
394
+ * @param {string} callID Call UUID
395
395
  * @param {*} [options] Override http request option.
396
396
  * @throws {RequiredError}
397
397
  */
@@ -422,7 +422,7 @@ const APICallsApiAxiosParamCreator = function (configuration) {
422
422
  /**
423
423
  * UpdateAPICall information by ID.
424
424
  * @summary UpdateAPICall an existing apicall details
425
- * @param {string} callID APICalls ID
425
+ * @param {string} callID Call UUID
426
426
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
427
427
  * @param {*} [options] Override http request option.
428
428
  * @throws {RequiredError}
@@ -527,7 +527,7 @@ const APICallsApiFp = function (configuration) {
527
527
  /**
528
528
  * Deletes a APICall from the system by ID.
529
529
  * @summary Delete a APICall
530
- * @param {string} callID APICall ID
530
+ * @param {string} callID Call UUID
531
531
  * @param {*} [options] Override http request option.
532
532
  * @throws {RequiredError}
533
533
  */
@@ -543,7 +543,7 @@ const APICallsApiFp = function (configuration) {
543
543
  /**
544
544
  * Fetches APICall detail
545
545
  * @summary Fetches APICall detail
546
- * @param {string} callID call id
546
+ * @param {string} callID Call UUID
547
547
  * @param {*} [options] Override http request option.
548
548
  * @throws {RequiredError}
549
549
  */
@@ -559,7 +559,7 @@ const APICallsApiFp = function (configuration) {
559
559
  /**
560
560
  * UpdateAPICall information by ID.
561
561
  * @summary UpdateAPICall an existing apicall details
562
- * @param {string} callID APICalls ID
562
+ * @param {string} callID Call UUID
563
563
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
564
564
  * @param {*} [options] Override http request option.
565
565
  * @throws {RequiredError}
@@ -617,7 +617,7 @@ const APICallsApiFactory = function (configuration, basePath, axios) {
617
617
  /**
618
618
  * Deletes a APICall from the system by ID.
619
619
  * @summary Delete a APICall
620
- * @param {string} callID APICall ID
620
+ * @param {string} callID Call UUID
621
621
  * @param {*} [options] Override http request option.
622
622
  * @throws {RequiredError}
623
623
  */
@@ -627,7 +627,7 @@ const APICallsApiFactory = function (configuration, basePath, axios) {
627
627
  /**
628
628
  * Fetches APICall detail
629
629
  * @summary Fetches APICall detail
630
- * @param {string} callID call id
630
+ * @param {string} callID Call UUID
631
631
  * @param {*} [options] Override http request option.
632
632
  * @throws {RequiredError}
633
633
  */
@@ -637,7 +637,7 @@ const APICallsApiFactory = function (configuration, basePath, axios) {
637
637
  /**
638
638
  * UpdateAPICall information by ID.
639
639
  * @summary UpdateAPICall an existing apicall details
640
- * @param {string} callID APICalls ID
640
+ * @param {string} callID Call UUID
641
641
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
642
642
  * @param {*} [options] Override http request option.
643
643
  * @throws {RequiredError}
@@ -677,7 +677,7 @@ class APICallsApi extends base_1.BaseAPI {
677
677
  /**
678
678
  * Deletes a APICall from the system by ID.
679
679
  * @summary Delete a APICall
680
- * @param {string} callID APICall ID
680
+ * @param {string} callID Call UUID
681
681
  * @param {*} [options] Override http request option.
682
682
  * @throws {RequiredError}
683
683
  * @memberof APICallsApi
@@ -688,7 +688,7 @@ class APICallsApi extends base_1.BaseAPI {
688
688
  /**
689
689
  * Fetches APICall detail
690
690
  * @summary Fetches APICall detail
691
- * @param {string} callID call id
691
+ * @param {string} callID Call UUID
692
692
  * @param {*} [options] Override http request option.
693
693
  * @throws {RequiredError}
694
694
  * @memberof APICallsApi
@@ -699,7 +699,7 @@ class APICallsApi extends base_1.BaseAPI {
699
699
  /**
700
700
  * UpdateAPICall information by ID.
701
701
  * @summary UpdateAPICall an existing apicall details
702
- * @param {string} callID APICalls ID
702
+ * @param {string} callID Call UUID
703
703
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
704
704
  * @param {*} [options] Override http request option.
705
705
  * @throws {RequiredError}
package/dist/esm/api.d.ts CHANGED
@@ -12159,6 +12159,12 @@ export interface DataTypesAPICall {
12159
12159
  * @memberof DataTypesAPICall
12160
12160
  */
12161
12161
  'ResetDate'?: string;
12162
+ /**
12163
+ * Public identifier
12164
+ * @type {string}
12165
+ * @memberof DataTypesAPICall
12166
+ */
12167
+ 'callUuid'?: string;
12162
12168
  }
12163
12169
  /**
12164
12170
  *
@@ -13178,6 +13184,12 @@ export interface DataTypesBillingOrderDetailsResponse {
13178
13184
  * @interface DataTypesBillingOverviewNewResponse
13179
13185
  */
13180
13186
  export interface DataTypesBillingOverviewNewResponse {
13187
+ /**
13188
+ * Last cancelled plan information (populated when on free plan after recent cancellation)
13189
+ * @type {DataTypesCancelledPlanInfo}
13190
+ * @memberof DataTypesBillingOverviewNewResponse
13191
+ */
13192
+ 'cancelled_plan'?: DataTypesCancelledPlanInfo;
13181
13193
  /**
13182
13194
  * Credit balance information
13183
13195
  * @type {DataTypesCreditBalanceInfo}
@@ -13359,6 +13371,37 @@ export interface DataTypesBulkUploadResponseWrapper {
13359
13371
  */
13360
13372
  'status'?: number;
13361
13373
  }
13374
+ /**
13375
+ *
13376
+ * @export
13377
+ * @interface DataTypesCancelledPlanInfo
13378
+ */
13379
+ export interface DataTypesCancelledPlanInfo {
13380
+ /**
13381
+ *
13382
+ * @type {string}
13383
+ * @memberof DataTypesCancelledPlanInfo
13384
+ */
13385
+ 'cancellation_reason'?: string;
13386
+ /**
13387
+ *
13388
+ * @type {string}
13389
+ * @memberof DataTypesCancelledPlanInfo
13390
+ */
13391
+ 'cancelled_at'?: string;
13392
+ /**
13393
+ *
13394
+ * @type {string}
13395
+ * @memberof DataTypesCancelledPlanInfo
13396
+ */
13397
+ 'plan_name'?: string;
13398
+ /**
13399
+ *
13400
+ * @type {number}
13401
+ * @memberof DataTypesCancelledPlanInfo
13402
+ */
13403
+ 'refund_amount'?: number;
13404
+ }
13362
13405
  /**
13363
13406
  *
13364
13407
  * @export
@@ -16724,6 +16767,14 @@ export interface DataTypesDefaultMenu {
16724
16767
  * @interface DataTypesDetailedUsageMetrics
16725
16768
  */
16726
16769
  export interface DataTypesDetailedUsageMetrics {
16770
+ /**
16771
+ * Additional dynamically discovered features from plan (rps, customer_support, etc.)
16772
+ * @type {{ [key: string]: any; }}
16773
+ * @memberof DataTypesDetailedUsageMetrics
16774
+ */
16775
+ 'additional_metrics'?: {
16776
+ [key: string]: any;
16777
+ };
16727
16778
  /**
16728
16779
  * Analytics
16729
16780
  * @type {DataTypesConsumableMetric}
@@ -22271,6 +22322,18 @@ export interface DataTypesInviteMemberRequest {
22271
22322
  * @memberof DataTypesInviteMemberRequest
22272
22323
  */
22273
22324
  'email': string;
22325
+ /**
22326
+ * Optional: pre-fill invited user\'s first name on acceptance form
22327
+ * @type {string}
22328
+ * @memberof DataTypesInviteMemberRequest
22329
+ */
22330
+ 'first_name'?: string;
22331
+ /**
22332
+ * Optional: pre-fill invited user\'s last name on acceptance form
22333
+ * @type {string}
22334
+ * @memberof DataTypesInviteMemberRequest
22335
+ */
22336
+ 'last_name'?: string;
22274
22337
  /**
22275
22338
  * Optional: Can be \'admin\', \'member\', or a role ID (integer). Not required if useCustomPermissions is true
22276
22339
  * @type {any}
@@ -24237,6 +24300,12 @@ export interface DataTypesNotification {
24237
24300
  * @memberof DataTypesNotification
24238
24301
  */
24239
24302
  'icon'?: string;
24303
+ /**
24304
+ *
24305
+ * @type {number}
24306
+ * @memberof DataTypesNotification
24307
+ */
24308
+ 'id'?: number;
24240
24309
  /**
24241
24310
  * Display properties
24242
24311
  * @type {string}
@@ -24323,6 +24392,12 @@ export interface DataTypesNotification {
24323
24392
  * @memberof DataTypesNotification
24324
24393
  */
24325
24394
  'status'?: DataTypesNotificationStatus;
24395
+ /**
24396
+ *
24397
+ * @type {number}
24398
+ * @memberof DataTypesNotification
24399
+ */
24400
+ 'store_id'?: number;
24326
24401
  /**
24327
24402
  *
24328
24403
  * @type {Array<string>}
@@ -24373,6 +24448,12 @@ export interface DataTypesNotification {
24373
24448
  * @memberof DataTypesNotification
24374
24449
  */
24375
24450
  'user_contact'?: DataTypesUserContact;
24451
+ /**
24452
+ *
24453
+ * @type {number}
24454
+ * @memberof DataTypesNotification
24455
+ */
24456
+ 'user_id'?: number;
24376
24457
  /**
24377
24458
  * Optional (uses defaults if nil)
24378
24459
  * @type {DataTypesNotificationPreferences}
@@ -26042,11 +26123,11 @@ export interface DataTypesOrgMemberWithUser {
26042
26123
  */
26043
26124
  'stores_count'?: number;
26044
26125
  /**
26045
- * user_uuid exposed as \"user_id\" to maintain frontend API contract
26126
+ *
26046
26127
  * @type {string}
26047
26128
  * @memberof DataTypesOrgMemberWithUser
26048
26129
  */
26049
- 'user_id'?: string;
26130
+ 'user_uuid'?: string;
26050
26131
  }
26051
26132
  /**
26052
26133
  *
@@ -27338,6 +27419,12 @@ export interface DataTypesPluralDeclension {
27338
27419
  * @memberof DataTypesPluralDeclension
27339
27420
  */
27340
27421
  'created_at'?: string;
27422
+ /**
27423
+ *
27424
+ * @type {string}
27425
+ * @memberof DataTypesPluralDeclension
27426
+ */
27427
+ 'id'?: string;
27341
27428
  /**
27342
27429
  *
27343
27430
  * @type {boolean}
@@ -28997,6 +29084,12 @@ export interface DataTypesRuleConfig {
28997
29084
  * @interface DataTypesSampleDatasetResponse
28998
29085
  */
28999
29086
  export interface DataTypesSampleDatasetResponse {
29087
+ /**
29088
+ *
29089
+ * @type {string}
29090
+ * @memberof DataTypesSampleDatasetResponse
29091
+ */
29092
+ 'category'?: string;
29000
29093
  /**
29001
29094
  *
29002
29095
  * @type {string}
@@ -29015,6 +29108,12 @@ export interface DataTypesSampleDatasetResponse {
29015
29108
  * @memberof DataTypesSampleDatasetResponse
29016
29109
  */
29017
29110
  'imageUrl'?: string;
29111
+ /**
29112
+ *
29113
+ * @type {number}
29114
+ * @memberof DataTypesSampleDatasetResponse
29115
+ */
29116
+ 'sampleDatasetId'?: number;
29018
29117
  /**
29019
29118
  *
29020
29119
  * @type {string}
@@ -32952,6 +33051,18 @@ export interface DataTypesTeamInvitationWithDetails {
32952
33051
  * @memberof DataTypesTeamInvitationWithDetails
32953
33052
  */
32954
33053
  'expires_at'?: string;
33054
+ /**
33055
+ * Invited user\'s first name (from invitation metadata)
33056
+ * @type {string}
33057
+ * @memberof DataTypesTeamInvitationWithDetails
33058
+ */
33059
+ 'first_name'?: string;
33060
+ /**
33061
+ *
33062
+ * @type {string}
33063
+ * @memberof DataTypesTeamInvitationWithDetails
33064
+ */
33065
+ 'invitation_uuid'?: string;
32955
33066
  /**
32956
33067
  *
32957
33068
  * @type {string}
@@ -32964,6 +33075,12 @@ export interface DataTypesTeamInvitationWithDetails {
32964
33075
  * @memberof DataTypesTeamInvitationWithDetails
32965
33076
  */
32966
33077
  'inviter_name'?: string;
33078
+ /**
33079
+ * Invited user\'s last name (from invitation metadata)
33080
+ * @type {string}
33081
+ * @memberof DataTypesTeamInvitationWithDetails
33082
+ */
33083
+ 'last_name'?: string;
32967
33084
  /**
32968
33085
  *
32969
33086
  * @type {string}
@@ -34531,6 +34648,12 @@ export interface DataTypesUserCustomPermissionsRequest {
34531
34648
  * @memberof DataTypesUserCustomPermissionsRequest
34532
34649
  */
34533
34650
  'roleName'?: string;
34651
+ /**
34652
+ * Public identifier for the role to assign
34653
+ * @type {string}
34654
+ * @memberof DataTypesUserCustomPermissionsRequest
34655
+ */
34656
+ 'roleUuid'?: string;
34534
34657
  /**
34535
34658
  * true = custom, false = use regular role
34536
34659
  * @type {boolean}
@@ -35401,7 +35524,7 @@ export interface FeatureLimitServiceCreditStatus {
35401
35524
  */
35402
35525
  'is_exhausted'?: boolean;
35403
35526
  /**
35404
- * All-time consumed credits
35527
+ * All-time consumed credits (actual API usage only)
35405
35528
  * @type {number}
35406
35529
  * @memberof FeatureLimitServiceCreditStatus
35407
35530
  */
@@ -35418,12 +35541,36 @@ export interface FeatureLimitServiceCreditStatus {
35418
35541
  * @memberof FeatureLimitServiceCreditStatus
35419
35542
  */
35420
35543
  'subscription_available'?: number;
35544
+ /**
35545
+ * All-time subscription credits consumed by API calls
35546
+ * @type {number}
35547
+ * @memberof FeatureLimitServiceCreditStatus
35548
+ */
35549
+ 'subscription_consumed'?: number;
35550
+ /**
35551
+ * All-time subscription credits allocated
35552
+ * @type {number}
35553
+ * @memberof FeatureLimitServiceCreditStatus
35554
+ */
35555
+ 'subscription_total'?: number;
35421
35556
  /**
35422
35557
  * Actual top-up balance (purchased credits, never expire)
35423
35558
  * @type {number}
35424
35559
  * @memberof FeatureLimitServiceCreditStatus
35425
35560
  */
35426
35561
  'topup_available'?: number;
35562
+ /**
35563
+ * All-time topup credits consumed by API calls
35564
+ * @type {number}
35565
+ * @memberof FeatureLimitServiceCreditStatus
35566
+ */
35567
+ 'topup_consumed'?: number;
35568
+ /**
35569
+ * All-time topup credits purchased
35570
+ * @type {number}
35571
+ * @memberof FeatureLimitServiceCreditStatus
35572
+ */
35573
+ 'topup_total'?: number;
35427
35574
  /**
35428
35575
  * THIS cycle\'s allocated credits (e.g., 1,600,000/month)
35429
35576
  * @type {number}
@@ -40485,7 +40632,7 @@ export declare const APICallsApiAxiosParamCreator: (configuration?: Configuratio
40485
40632
  /**
40486
40633
  * Deletes a APICall from the system by ID.
40487
40634
  * @summary Delete a APICall
40488
- * @param {string} callID APICall ID
40635
+ * @param {string} callID Call UUID
40489
40636
  * @param {*} [options] Override http request option.
40490
40637
  * @throws {RequiredError}
40491
40638
  */
@@ -40493,7 +40640,7 @@ export declare const APICallsApiAxiosParamCreator: (configuration?: Configuratio
40493
40640
  /**
40494
40641
  * Fetches APICall detail
40495
40642
  * @summary Fetches APICall detail
40496
- * @param {string} callID call id
40643
+ * @param {string} callID Call UUID
40497
40644
  * @param {*} [options] Override http request option.
40498
40645
  * @throws {RequiredError}
40499
40646
  */
@@ -40501,7 +40648,7 @@ export declare const APICallsApiAxiosParamCreator: (configuration?: Configuratio
40501
40648
  /**
40502
40649
  * UpdateAPICall information by ID.
40503
40650
  * @summary UpdateAPICall an existing apicall details
40504
- * @param {string} callID APICalls ID
40651
+ * @param {string} callID Call UUID
40505
40652
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40506
40653
  * @param {*} [options] Override http request option.
40507
40654
  * @throws {RequiredError}
@@ -40531,7 +40678,7 @@ export declare const APICallsApiFp: (configuration?: Configuration) => {
40531
40678
  /**
40532
40679
  * Deletes a APICall from the system by ID.
40533
40680
  * @summary Delete a APICall
40534
- * @param {string} callID APICall ID
40681
+ * @param {string} callID Call UUID
40535
40682
  * @param {*} [options] Override http request option.
40536
40683
  * @throws {RequiredError}
40537
40684
  */
@@ -40539,7 +40686,7 @@ export declare const APICallsApiFp: (configuration?: Configuration) => {
40539
40686
  /**
40540
40687
  * Fetches APICall detail
40541
40688
  * @summary Fetches APICall detail
40542
- * @param {string} callID call id
40689
+ * @param {string} callID Call UUID
40543
40690
  * @param {*} [options] Override http request option.
40544
40691
  * @throws {RequiredError}
40545
40692
  */
@@ -40547,7 +40694,7 @@ export declare const APICallsApiFp: (configuration?: Configuration) => {
40547
40694
  /**
40548
40695
  * UpdateAPICall information by ID.
40549
40696
  * @summary UpdateAPICall an existing apicall details
40550
- * @param {string} callID APICalls ID
40697
+ * @param {string} callID Call UUID
40551
40698
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40552
40699
  * @param {*} [options] Override http request option.
40553
40700
  * @throws {RequiredError}
@@ -40577,7 +40724,7 @@ export declare const APICallsApiFactory: (configuration?: Configuration, basePat
40577
40724
  /**
40578
40725
  * Deletes a APICall from the system by ID.
40579
40726
  * @summary Delete a APICall
40580
- * @param {string} callID APICall ID
40727
+ * @param {string} callID Call UUID
40581
40728
  * @param {*} [options] Override http request option.
40582
40729
  * @throws {RequiredError}
40583
40730
  */
@@ -40585,7 +40732,7 @@ export declare const APICallsApiFactory: (configuration?: Configuration, basePat
40585
40732
  /**
40586
40733
  * Fetches APICall detail
40587
40734
  * @summary Fetches APICall detail
40588
- * @param {string} callID call id
40735
+ * @param {string} callID Call UUID
40589
40736
  * @param {*} [options] Override http request option.
40590
40737
  * @throws {RequiredError}
40591
40738
  */
@@ -40593,7 +40740,7 @@ export declare const APICallsApiFactory: (configuration?: Configuration, basePat
40593
40740
  /**
40594
40741
  * UpdateAPICall information by ID.
40595
40742
  * @summary UpdateAPICall an existing apicall details
40596
- * @param {string} callID APICalls ID
40743
+ * @param {string} callID Call UUID
40597
40744
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40598
40745
  * @param {*} [options] Override http request option.
40599
40746
  * @throws {RequiredError}
@@ -40625,7 +40772,7 @@ export declare class APICallsApi extends BaseAPI {
40625
40772
  /**
40626
40773
  * Deletes a APICall from the system by ID.
40627
40774
  * @summary Delete a APICall
40628
- * @param {string} callID APICall ID
40775
+ * @param {string} callID Call UUID
40629
40776
  * @param {*} [options] Override http request option.
40630
40777
  * @throws {RequiredError}
40631
40778
  * @memberof APICallsApi
@@ -40634,7 +40781,7 @@ export declare class APICallsApi extends BaseAPI {
40634
40781
  /**
40635
40782
  * Fetches APICall detail
40636
40783
  * @summary Fetches APICall detail
40637
- * @param {string} callID call id
40784
+ * @param {string} callID Call UUID
40638
40785
  * @param {*} [options] Override http request option.
40639
40786
  * @throws {RequiredError}
40640
40787
  * @memberof APICallsApi
@@ -40643,7 +40790,7 @@ export declare class APICallsApi extends BaseAPI {
40643
40790
  /**
40644
40791
  * UpdateAPICall information by ID.
40645
40792
  * @summary UpdateAPICall an existing apicall details
40646
- * @param {string} callID APICalls ID
40793
+ * @param {string} callID Call UUID
40647
40794
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
40648
40795
  * @param {*} [options] Override http request option.
40649
40796
  * @throws {RequiredError}
package/dist/esm/api.js CHANGED
@@ -348,7 +348,7 @@ export const APICallsApiAxiosParamCreator = function (configuration) {
348
348
  /**
349
349
  * Deletes a APICall from the system by ID.
350
350
  * @summary Delete a APICall
351
- * @param {string} callID APICall ID
351
+ * @param {string} callID Call UUID
352
352
  * @param {*} [options] Override http request option.
353
353
  * @throws {RequiredError}
354
354
  */
@@ -379,7 +379,7 @@ export const APICallsApiAxiosParamCreator = function (configuration) {
379
379
  /**
380
380
  * Fetches APICall detail
381
381
  * @summary Fetches APICall detail
382
- * @param {string} callID call id
382
+ * @param {string} callID Call UUID
383
383
  * @param {*} [options] Override http request option.
384
384
  * @throws {RequiredError}
385
385
  */
@@ -410,7 +410,7 @@ export const APICallsApiAxiosParamCreator = function (configuration) {
410
410
  /**
411
411
  * UpdateAPICall information by ID.
412
412
  * @summary UpdateAPICall an existing apicall details
413
- * @param {string} callID APICalls ID
413
+ * @param {string} callID Call UUID
414
414
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
415
415
  * @param {*} [options] Override http request option.
416
416
  * @throws {RequiredError}
@@ -514,7 +514,7 @@ export const APICallsApiFp = function (configuration) {
514
514
  /**
515
515
  * Deletes a APICall from the system by ID.
516
516
  * @summary Delete a APICall
517
- * @param {string} callID APICall ID
517
+ * @param {string} callID Call UUID
518
518
  * @param {*} [options] Override http request option.
519
519
  * @throws {RequiredError}
520
520
  */
@@ -530,7 +530,7 @@ export const APICallsApiFp = function (configuration) {
530
530
  /**
531
531
  * Fetches APICall detail
532
532
  * @summary Fetches APICall detail
533
- * @param {string} callID call id
533
+ * @param {string} callID Call UUID
534
534
  * @param {*} [options] Override http request option.
535
535
  * @throws {RequiredError}
536
536
  */
@@ -546,7 +546,7 @@ export const APICallsApiFp = function (configuration) {
546
546
  /**
547
547
  * UpdateAPICall information by ID.
548
548
  * @summary UpdateAPICall an existing apicall details
549
- * @param {string} callID APICalls ID
549
+ * @param {string} callID Call UUID
550
550
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
551
551
  * @param {*} [options] Override http request option.
552
552
  * @throws {RequiredError}
@@ -603,7 +603,7 @@ export const APICallsApiFactory = function (configuration, basePath, axios) {
603
603
  /**
604
604
  * Deletes a APICall from the system by ID.
605
605
  * @summary Delete a APICall
606
- * @param {string} callID APICall ID
606
+ * @param {string} callID Call UUID
607
607
  * @param {*} [options] Override http request option.
608
608
  * @throws {RequiredError}
609
609
  */
@@ -613,7 +613,7 @@ export const APICallsApiFactory = function (configuration, basePath, axios) {
613
613
  /**
614
614
  * Fetches APICall detail
615
615
  * @summary Fetches APICall detail
616
- * @param {string} callID call id
616
+ * @param {string} callID Call UUID
617
617
  * @param {*} [options] Override http request option.
618
618
  * @throws {RequiredError}
619
619
  */
@@ -623,7 +623,7 @@ export const APICallsApiFactory = function (configuration, basePath, axios) {
623
623
  /**
624
624
  * UpdateAPICall information by ID.
625
625
  * @summary UpdateAPICall an existing apicall details
626
- * @param {string} callID APICalls ID
626
+ * @param {string} callID Call UUID
627
627
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
628
628
  * @param {*} [options] Override http request option.
629
629
  * @throws {RequiredError}
@@ -662,7 +662,7 @@ export class APICallsApi extends BaseAPI {
662
662
  /**
663
663
  * Deletes a APICall from the system by ID.
664
664
  * @summary Delete a APICall
665
- * @param {string} callID APICall ID
665
+ * @param {string} callID Call UUID
666
666
  * @param {*} [options] Override http request option.
667
667
  * @throws {RequiredError}
668
668
  * @memberof APICallsApi
@@ -673,7 +673,7 @@ export class APICallsApi extends BaseAPI {
673
673
  /**
674
674
  * Fetches APICall detail
675
675
  * @summary Fetches APICall detail
676
- * @param {string} callID call id
676
+ * @param {string} callID Call UUID
677
677
  * @param {*} [options] Override http request option.
678
678
  * @throws {RequiredError}
679
679
  * @memberof APICallsApi
@@ -684,7 +684,7 @@ export class APICallsApi extends BaseAPI {
684
684
  /**
685
685
  * UpdateAPICall information by ID.
686
686
  * @summary UpdateAPICall an existing apicall details
687
- * @param {string} callID APICalls ID
687
+ * @param {string} callID Call UUID
688
688
  * @param {DataTypesAPICallRequestDto} dataTypesAPICallRequestDto APICall data to update
689
689
  * @param {*} [options] Override http request option.
690
690
  * @throws {RequiredError}
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.1",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file