@seekora-ai/admin-api 1.1.71 → 1.1.72

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.71
1
+ ## @seekora-ai/admin-api@1.1.72
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.71 --save
39
+ npm install @seekora-ai/admin-api@1.1.72 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -177,6 +177,7 @@ Class | Method | HTTP request | Description
177
177
  *BillingDashboardApi* | [**adminBillingReceiptsIdGet**](docs/BillingDashboardApi.md#adminbillingreceiptsidget) | **GET** /admin/billing/receipts/{id} | Get receipt by ID
178
178
  *BillingDashboardApi* | [**adminBillingSavedCardsGet**](docs/BillingDashboardApi.md#adminbillingsavedcardsget) | **GET** /admin/billing/saved-cards | Get saved payment cards
179
179
  *BillingDashboardApi* | [**adminBillingUsageDetailsGet**](docs/BillingDashboardApi.md#adminbillingusagedetailsget) | **GET** /admin/billing/usage-details | Get usage details with granularity and pagination
180
+ *BillingDashboardApi* | [**apiAdminBillingCancelledSubscriptionsGet**](docs/BillingDashboardApi.md#apiadminbillingcancelledsubscriptionsget) | **GET** /api/admin/billing/cancelled-subscriptions | Get cancelled subscriptions history
180
181
  *BillingDashboardGraphsApi* | [**adminBillingGraphsCreditsConsumedGet**](docs/BillingDashboardGraphsApi.md#adminbillinggraphscreditsconsumedget) | **GET** /admin/billing/graphs/credits-consumed | Get credits consumed graph
181
182
  *BillingDashboardGraphsApi* | [**adminBillingGraphsSearchRequestsGet**](docs/BillingDashboardGraphsApi.md#adminbillinggraphssearchrequestsget) | **GET** /admin/billing/graphs/search-requests | Get search requests graph
182
183
  *BillingDashboardGraphsApi* | [**adminBillingGraphsTimeseriesConsumptionGet**](docs/BillingDashboardGraphsApi.md#adminbillinggraphstimeseriesconsumptionget) | **GET** /admin/billing/graphs/timeseries-consumption | Get timeseries consumption graph
@@ -653,6 +654,7 @@ Class | Method | HTTP request | Description
653
654
  - [AnalyticsTimeSeriesPoint](docs/AnalyticsTimeSeriesPoint.md)
654
655
  - [AnalyticsWidgetData](docs/AnalyticsWidgetData.md)
655
656
  - [BatchRecordResult](docs/BatchRecordResult.md)
657
+ - [BillingServiceCancelledSubscriptionInfo](docs/BillingServiceCancelledSubscriptionInfo.md)
656
658
  - [DataTypesAPICall](docs/DataTypesAPICall.md)
657
659
  - [DataTypesAPICallRequestDto](docs/DataTypesAPICallRequestDto.md)
658
660
  - [DataTypesAPICallResponse](docs/DataTypesAPICallResponse.md)
@@ -756,6 +758,7 @@ Class | Method | HTTP request | Description
756
758
  - [DataTypesGenerateInvoiceReceiptRequest](docs/DataTypesGenerateInvoiceReceiptRequest.md)
757
759
  - [DataTypesGenerateInvoiceReceiptResponse](docs/DataTypesGenerateInvoiceReceiptResponse.md)
758
760
  - [DataTypesGenericResponseAny](docs/DataTypesGenericResponseAny.md)
761
+ - [DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo](docs/DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo.md)
759
762
  - [DataTypesGenericResponseArrayDataTypesDefaultMenu](docs/DataTypesGenericResponseArrayDataTypesDefaultMenu.md)
760
763
  - [DataTypesGenericResponseArrayDataTypesMenuRouteMetricMapping](docs/DataTypesGenericResponseArrayDataTypesMenuRouteMetricMapping.md)
761
764
  - [DataTypesGenericResponseArrayDataTypesUserWithPermissions](docs/DataTypesGenericResponseArrayDataTypesUserWithPermissions.md)
@@ -870,6 +873,7 @@ Class | Method | HTTP request | Description
870
873
  - [DataTypesOnboardingTestSearchResultItem](docs/DataTypesOnboardingTestSearchResultItem.md)
871
874
  - [DataTypesOrder](docs/DataTypesOrder.md)
872
875
  - [DataTypesOrderDetailsResponse](docs/DataTypesOrderDetailsResponse.md)
876
+ - [DataTypesOrderEvent](docs/DataTypesOrderEvent.md)
873
877
  - [DataTypesOrderTransactionDisplay](docs/DataTypesOrderTransactionDisplay.md)
874
878
  - [DataTypesOrdersListResponse](docs/DataTypesOrdersListResponse.md)
875
879
  - [DataTypesOrgMemberWithUser](docs/DataTypesOrgMemberWithUser.md)
package/api.ts CHANGED
@@ -6569,6 +6569,79 @@ export interface BatchRecordResult {
6569
6569
  */
6570
6570
  'valid'?: boolean;
6571
6571
  }
6572
+ /**
6573
+ *
6574
+ * @export
6575
+ * @interface BillingServiceCancelledSubscriptionInfo
6576
+ */
6577
+ export interface BillingServiceCancelledSubscriptionInfo {
6578
+ /**
6579
+ *
6580
+ * @type {string}
6581
+ * @memberof BillingServiceCancelledSubscriptionInfo
6582
+ */
6583
+ 'cancellation_reason'?: string;
6584
+ /**
6585
+ *
6586
+ * @type {string}
6587
+ * @memberof BillingServiceCancelledSubscriptionInfo
6588
+ */
6589
+ 'cancelled_at'?: string;
6590
+ /**
6591
+ *
6592
+ * @type {number}
6593
+ * @memberof BillingServiceCancelledSubscriptionInfo
6594
+ */
6595
+ 'cancelled_by'?: number;
6596
+ /**
6597
+ *
6598
+ * @type {string}
6599
+ * @memberof BillingServiceCancelledSubscriptionInfo
6600
+ */
6601
+ 'cancelled_by_name'?: string;
6602
+ /**
6603
+ *
6604
+ * @type {number}
6605
+ * @memberof BillingServiceCancelledSubscriptionInfo
6606
+ */
6607
+ 'credits_removed'?: number;
6608
+ /**
6609
+ *
6610
+ * @type {number}
6611
+ * @memberof BillingServiceCancelledSubscriptionInfo
6612
+ */
6613
+ 'id'?: number;
6614
+ /**
6615
+ *
6616
+ * @type {number}
6617
+ * @memberof BillingServiceCancelledSubscriptionInfo
6618
+ */
6619
+ 'org_id'?: number;
6620
+ /**
6621
+ *
6622
+ * @type {string}
6623
+ * @memberof BillingServiceCancelledSubscriptionInfo
6624
+ */
6625
+ 'plan_name'?: string;
6626
+ /**
6627
+ *
6628
+ * @type {number}
6629
+ * @memberof BillingServiceCancelledSubscriptionInfo
6630
+ */
6631
+ 'refund_amount'?: number;
6632
+ /**
6633
+ *
6634
+ * @type {string}
6635
+ * @memberof BillingServiceCancelledSubscriptionInfo
6636
+ */
6637
+ 'refund_currency'?: string;
6638
+ /**
6639
+ *
6640
+ * @type {string}
6641
+ * @memberof BillingServiceCancelledSubscriptionInfo
6642
+ */
6643
+ 'subscription_id'?: string;
6644
+ }
6572
6645
  /**
6573
6646
  *
6574
6647
  * @export
@@ -7499,6 +7572,12 @@ export interface DataTypesBillingOrderDetailsResponse {
7499
7572
  * @memberof DataTypesBillingOrderDetailsResponse
7500
7573
  */
7501
7574
  'can_pay'?: boolean;
7575
+ /**
7576
+ * Order lifecycle events for timeline display
7577
+ * @type {Array<DataTypesOrderEvent>}
7578
+ * @memberof DataTypesBillingOrderDetailsResponse
7579
+ */
7580
+ 'events'?: Array<DataTypesOrderEvent>;
7502
7581
  /**
7503
7582
  * Array of invoices for subscriptions
7504
7583
  * @type {Array<DataTypesInvoice>}
@@ -10651,6 +10730,12 @@ export interface DataTypesDueSubscription {
10651
10730
  * @memberof DataTypesDueSubscription
10652
10731
  */
10653
10732
  'days_overdue'?: number;
10733
+ /**
10734
+ *
10735
+ * @type {string}
10736
+ * @memberof DataTypesDueSubscription
10737
+ */
10738
+ 'gateway_subscription_id'?: string;
10654
10739
  /**
10655
10740
  *
10656
10741
  * @type {string}
@@ -10687,12 +10772,6 @@ export interface DataTypesDueSubscription {
10687
10772
  * @memberof DataTypesDueSubscription
10688
10773
  */
10689
10774
  'plan_name'?: string;
10690
- /**
10691
- *
10692
- * @type {string}
10693
- * @memberof DataTypesDueSubscription
10694
- */
10695
- 'razorpay_subscription_id'?: string;
10696
10775
  /**
10697
10776
  *
10698
10777
  * @type {string}
@@ -11744,6 +11823,31 @@ export interface DataTypesGenericResponseAny {
11744
11823
  */
11745
11824
  'status'?: number;
11746
11825
  }
11826
+ /**
11827
+ *
11828
+ * @export
11829
+ * @interface DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo
11830
+ */
11831
+ export interface DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo {
11832
+ /**
11833
+ *
11834
+ * @type {Array<BillingServiceCancelledSubscriptionInfo>}
11835
+ * @memberof DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo
11836
+ */
11837
+ 'data'?: Array<BillingServiceCancelledSubscriptionInfo>;
11838
+ /**
11839
+ *
11840
+ * @type {string}
11841
+ * @memberof DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo
11842
+ */
11843
+ 'message'?: string;
11844
+ /**
11845
+ *
11846
+ * @type {number}
11847
+ * @memberof DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo
11848
+ */
11849
+ 'status'?: number;
11850
+ }
11747
11851
  /**
11748
11852
  *
11749
11853
  * @export
@@ -16889,6 +16993,12 @@ export interface DataTypesOrder {
16889
16993
  * @memberof DataTypesOrder
16890
16994
  */
16891
16995
  'id'?: number;
16996
+ /**
16997
+ * True if this is a trial activation (token charge), not a real payment
16998
+ * @type {boolean}
16999
+ * @memberof DataTypesOrder
17000
+ */
17001
+ 'is_trial_activation'?: boolean;
16892
17002
  /**
16893
17003
  *
16894
17004
  * @type {{ [key: string]: any; }}
@@ -16919,6 +17029,24 @@ export interface DataTypesOrder {
16919
17029
  * @memberof DataTypesOrder
16920
17030
  */
16921
17031
  'status'?: string;
17032
+ /**
17033
+ * Base price before tax
17034
+ * @type {number}
17035
+ * @memberof DataTypesOrder
17036
+ */
17037
+ 'subtotal'?: number;
17038
+ /**
17039
+ * Tax amount calculated
17040
+ * @type {number}
17041
+ * @memberof DataTypesOrder
17042
+ */
17043
+ 'tax_amount'?: number;
17044
+ /**
17045
+ * Total amount (subtotal + tax) - what customer pays
17046
+ * @type {number}
17047
+ * @memberof DataTypesOrder
17048
+ */
17049
+ 'total_amount'?: number;
16922
17050
  /**
16923
17051
  *
16924
17052
  * @type {string}
@@ -16963,6 +17091,43 @@ export interface DataTypesOrderDetailsResponse {
16963
17091
  */
16964
17092
  'transactions'?: Array<DataTypesOrderTransactionDisplay>;
16965
17093
  }
17094
+ /**
17095
+ *
17096
+ * @export
17097
+ * @interface DataTypesOrderEvent
17098
+ */
17099
+ export interface DataTypesOrderEvent {
17100
+ /**
17101
+ *
17102
+ * @type {string}
17103
+ * @memberof DataTypesOrderEvent
17104
+ */
17105
+ 'created_at'?: string;
17106
+ /**
17107
+ *
17108
+ * @type {{ [key: string]: any; }}
17109
+ * @memberof DataTypesOrderEvent
17110
+ */
17111
+ 'event_data'?: { [key: string]: any; };
17112
+ /**
17113
+ *
17114
+ * @type {string}
17115
+ * @memberof DataTypesOrderEvent
17116
+ */
17117
+ 'event_type'?: string;
17118
+ /**
17119
+ *
17120
+ * @type {number}
17121
+ * @memberof DataTypesOrderEvent
17122
+ */
17123
+ 'id'?: number;
17124
+ /**
17125
+ *
17126
+ * @type {number}
17127
+ * @memberof DataTypesOrderEvent
17128
+ */
17129
+ 'order_id'?: number;
17130
+ }
16966
17131
  /**
16967
17132
  *
16968
17133
  * @export
@@ -22419,6 +22584,12 @@ export interface DataTypesSubscriptionPaymentResponse {
22419
22584
  * @memberof DataTypesSubscriptionPaymentResponse
22420
22585
  */
22421
22586
  'error'?: string;
22587
+ /**
22588
+ *
22589
+ * @type {string}
22590
+ * @memberof DataTypesSubscriptionPaymentResponse
22591
+ */
22592
+ 'gateway_subscription_id'?: string;
22422
22593
  /**
22423
22594
  *
22424
22595
  * @type {string}
@@ -22455,12 +22626,6 @@ export interface DataTypesSubscriptionPaymentResponse {
22455
22626
  * @memberof DataTypesSubscriptionPaymentResponse
22456
22627
  */
22457
22628
  'processed_at'?: string;
22458
- /**
22459
- *
22460
- * @type {string}
22461
- * @memberof DataTypesSubscriptionPaymentResponse
22462
- */
22463
- 'razorpay_subscription_id'?: string;
22464
22629
  /**
22465
22630
  *
22466
22631
  * @type {number}
@@ -22504,6 +22669,12 @@ export interface DataTypesSubscriptionPaymentStatus {
22504
22669
  * @memberof DataTypesSubscriptionPaymentStatus
22505
22670
  */
22506
22671
  'days_overdue'?: number;
22672
+ /**
22673
+ *
22674
+ * @type {string}
22675
+ * @memberof DataTypesSubscriptionPaymentStatus
22676
+ */
22677
+ 'gateway_subscription_id'?: string;
22507
22678
  /**
22508
22679
  *
22509
22680
  * @type {boolean}
@@ -22540,12 +22711,6 @@ export interface DataTypesSubscriptionPaymentStatus {
22540
22711
  * @memberof DataTypesSubscriptionPaymentStatus
22541
22712
  */
22542
22713
  'org_id'?: number;
22543
- /**
22544
- *
22545
- * @type {string}
22546
- * @memberof DataTypesSubscriptionPaymentStatus
22547
- */
22548
- 'razorpay_subscription_id'?: string;
22549
22714
  /**
22550
22715
  *
22551
22716
  * @type {string}
@@ -26585,6 +26750,12 @@ export interface QuerySuggestionsServiceManualQuerySuggestionRequest {
26585
26750
  * @memberof QuerySuggestionsServiceManualQuerySuggestionRequest
26586
26751
  */
26587
26752
  'metadata'?: { [key: string]: string; };
26753
+ /**
26754
+ * Optional, defaults to 0 (saved and returned)
26755
+ * @type {number}
26756
+ * @memberof QuerySuggestionsServiceManualQuerySuggestionRequest
26757
+ */
26758
+ 'popularity'?: number;
26588
26759
  /**
26589
26760
  * Optional, defaults to 0
26590
26761
  * @type {number}
@@ -40914,6 +41085,39 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration?: Co
40914
41085
 
40915
41086
 
40916
41087
 
41088
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
41089
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
41090
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
41091
+
41092
+ return {
41093
+ url: toPathString(localVarUrlObj),
41094
+ options: localVarRequestOptions,
41095
+ };
41096
+ },
41097
+ /**
41098
+ * Retrieves a list of all historically cancelled subscriptions for the organization with cancellation details, refund info, and credits removed
41099
+ * @summary Get cancelled subscriptions history
41100
+ * @param {*} [options] Override http request option.
41101
+ * @throws {RequiredError}
41102
+ */
41103
+ apiAdminBillingCancelledSubscriptionsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
41104
+ const localVarPath = `/api/admin/billing/cancelled-subscriptions`;
41105
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
41106
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
41107
+ let baseOptions;
41108
+ if (configuration) {
41109
+ baseOptions = configuration.baseOptions;
41110
+ }
41111
+
41112
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
41113
+ const localVarHeaderParameter = {} as any;
41114
+ const localVarQueryParameter = {} as any;
41115
+
41116
+ // authentication BearerAuth required
41117
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
41118
+
41119
+
41120
+
40917
41121
  setSearchParams(localVarUrlObj, localVarQueryParameter);
40918
41122
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40919
41123
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -41439,6 +41643,18 @@ export const BillingDashboardApiFp = function(configuration?: Configuration) {
41439
41643
  const localVarOperationServerBasePath = operationServerMap['BillingDashboardApi.adminBillingUsageDetailsGet']?.[localVarOperationServerIndex]?.url;
41440
41644
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
41441
41645
  },
41646
+ /**
41647
+ * Retrieves a list of all historically cancelled subscriptions for the organization with cancellation details, refund info, and credits removed
41648
+ * @summary Get cancelled subscriptions history
41649
+ * @param {*} [options] Override http request option.
41650
+ * @throws {RequiredError}
41651
+ */
41652
+ async apiAdminBillingCancelledSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo>> {
41653
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiAdminBillingCancelledSubscriptionsGet(options);
41654
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
41655
+ const localVarOperationServerBasePath = operationServerMap['BillingDashboardApi.apiAdminBillingCancelledSubscriptionsGet']?.[localVarOperationServerIndex]?.url;
41656
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
41657
+ },
41442
41658
  }
41443
41659
  };
41444
41660
 
@@ -41856,6 +42072,15 @@ export const BillingDashboardApiFactory = function (configuration?: Configuratio
41856
42072
  adminBillingUsageDetailsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
41857
42073
  return localVarFp.adminBillingUsageDetailsGet(xstoreid, startDate, endDate, granularity, chartPage, chartPageSize, endpointPage, endpointPageSize, consumptionPage, consumptionPageSize, options).then((request) => request(axios, basePath));
41858
42074
  },
42075
+ /**
42076
+ * Retrieves a list of all historically cancelled subscriptions for the organization with cancellation details, refund info, and credits removed
42077
+ * @summary Get cancelled subscriptions history
42078
+ * @param {*} [options] Override http request option.
42079
+ * @throws {RequiredError}
42080
+ */
42081
+ apiAdminBillingCancelledSubscriptionsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCancelledSubscriptionInfo> {
42082
+ return localVarFp.apiAdminBillingCancelledSubscriptionsGet(options).then((request) => request(axios, basePath));
42083
+ },
41859
42084
  };
41860
42085
  };
41861
42086
 
@@ -42338,6 +42563,17 @@ export class BillingDashboardApi extends BaseAPI {
42338
42563
  public adminBillingUsageDetailsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig) {
42339
42564
  return BillingDashboardApiFp(this.configuration).adminBillingUsageDetailsGet(xstoreid, startDate, endDate, granularity, chartPage, chartPageSize, endpointPage, endpointPageSize, consumptionPage, consumptionPageSize, options).then((request) => request(this.axios, this.basePath));
42340
42565
  }
42566
+
42567
+ /**
42568
+ * Retrieves a list of all historically cancelled subscriptions for the organization with cancellation details, refund info, and credits removed
42569
+ * @summary Get cancelled subscriptions history
42570
+ * @param {*} [options] Override http request option.
42571
+ * @throws {RequiredError}
42572
+ * @memberof BillingDashboardApi
42573
+ */
42574
+ public apiAdminBillingCancelledSubscriptionsGet(options?: RawAxiosRequestConfig) {
42575
+ return BillingDashboardApiFp(this.configuration).apiAdminBillingCancelledSubscriptionsGet(options).then((request) => request(this.axios, this.basePath));
42576
+ }
42341
42577
  }
42342
42578
 
42343
42579
  /**
@@ -52393,7 +52629,7 @@ export const NotificationsApiAxiosParamCreator = function (configuration?: Confi
52393
52629
  * @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
52394
52630
  * @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
52395
52631
  * @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
52396
- * @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
52632
+ * @param {string} [since] ISO8601 timestamp - return only notifications created strictly after this time (excludes notifications with this exact timestamp)
52397
52633
  * @param {*} [options] Override http request option.
52398
52634
  * @throws {RequiredError}
52399
52635
  */
@@ -52722,7 +52958,7 @@ export const NotificationsApiFp = function(configuration?: Configuration) {
52722
52958
  * @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
52723
52959
  * @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
52724
52960
  * @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
52725
- * @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
52961
+ * @param {string} [since] ISO8601 timestamp - return only notifications created strictly after this time (excludes notifications with this exact timestamp)
52726
52962
  * @param {*} [options] Override http request option.
52727
52963
  * @throws {RequiredError}
52728
52964
  */
@@ -52842,7 +53078,7 @@ export const NotificationsApiFactory = function (configuration?: Configuration,
52842
53078
  * @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
52843
53079
  * @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
52844
53080
  * @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
52845
- * @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
53081
+ * @param {string} [since] ISO8601 timestamp - return only notifications created strictly after this time (excludes notifications with this exact timestamp)
52846
53082
  * @param {*} [options] Override http request option.
52847
53083
  * @throws {RequiredError}
52848
53084
  */
@@ -52943,7 +53179,7 @@ export class NotificationsApi extends BaseAPI {
52943
53179
  * @param {V1NotificationsGetPriorityEnum} [priority] Filter by priority
52944
53180
  * @param {V1NotificationsGetSortByEnum} [sortBy] Sort field
52945
53181
  * @param {V1NotificationsGetSortOrderEnum} [sortOrder] Sort order (case-insensitive)
52946
- * @param {string} [since] ISO8601 timestamp - return only notifications created at or after this time (e.g. 2025-01-30T10:00:00Z)
53182
+ * @param {string} [since] ISO8601 timestamp - return only notifications created strictly after this time (excludes notifications with this exact timestamp)
52947
53183
  * @param {*} [options] Override http request option.
52948
53184
  * @throws {RequiredError}
52949
53185
  * @memberof NotificationsApi