@stigg/js-client-sdk 3.62.0 → 3.64.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/dist/api/CreditsApi.d.ts +2 -1
- package/dist/client.d.ts +9 -2
- package/dist/index.esm.js +34 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +34 -3
- package/dist/index.js.map +1 -1
- package/dist/models.d.ts +3 -1
- package/dist/offlineClient.d.ts +2 -1
- package/dist/src/api/CreditsApi.d.ts +2 -1
- package/dist/src/client.d.ts +9 -2
- package/dist/src/models.d.ts +3 -1
- package/dist/src/offlineClient.d.ts +2 -1
- package/package.json +2 -2
package/dist/api/CreditsApi.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ApolloClient, NormalizedCacheObject } from '@apollo/client/core';
|
|
2
|
-
import { CreditBalanceSummaryInput, GetCreditBalanceQuery, GetCreditGrantsInput, GetCreditGrantsQuery } from '@stigg/api-client-js/src/generated/sdk';
|
|
2
|
+
import { CreditBalanceSummaryInput, CreditLedgerInput, GetCreditBalanceQuery, GetCreditGrantsInput, GetCreditGrantsQuery, GetCreditLedgerQuery } from '@stigg/api-client-js/src/generated/sdk';
|
|
3
3
|
declare class CreditsApi {
|
|
4
4
|
private readonly client;
|
|
5
5
|
constructor(client: ApolloClient<NormalizedCacheObject>);
|
|
6
6
|
getCreditBalance(input: CreditBalanceSummaryInput): Promise<import("@apollo/client/core").ApolloQueryResult<GetCreditBalanceQuery>>;
|
|
7
7
|
getCreditGrants(input: GetCreditGrantsInput): Promise<import("@apollo/client/core").ApolloQueryResult<GetCreditGrantsQuery>>;
|
|
8
|
+
getCreditLedger(input: CreditLedgerInput): Promise<import("@apollo/client/core").ApolloQueryResult<GetCreditLedgerQuery>>;
|
|
8
9
|
}
|
|
9
10
|
export default CreditsApi;
|
package/dist/client.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { CreditGrantFragment,
|
|
1
|
+
import { CreditGrantFragment, CreditLedgerFragment, CreditsBalanceSummaryFragment, PaymentSessionFragment, SlimSubscriptionFragmentV2Fragment, SubscriptionInvoicePreviewFragment, UsageHistoryV2Fragment, UsageHistoryV2Input } from '@stigg/api-client-js/src/generated/sdk';
|
|
2
2
|
import { ClientConfiguration } from './configuration';
|
|
3
|
-
import { ApplySubscription, ApplySubscriptionResults, BooleanEntitlement, Coupon, Customer, CustomerPortal, Entitlement, EstimateSubscription, EstimateSubscriptionUpdate, FetchUsageHistory, GetActiveSubscriptions, GetBooleanEntitlement, GetCheckoutStateResults, GetCheckoutState, GetCustomerPortal, GetMeteredEntitlement, GetNumericEntitlement, GetPaywall, GetSubscription, MeteredEntitlement, NumericEntitlement, Paywall, PreviewSubscription, Subscription, SubscriptionPreview, SubscriptionPreviewV2, UsageHistoryPoint, WaitForCheckoutCompleted, PreviewNextInvoice, GetSubscriptionsParams, GetSubscriptionsResult, EnumEntitlement, GetEnumEntitlement, CreatePaymentSessionInput, GetCreditBalanceInput } from './models';
|
|
3
|
+
import { ApplySubscription, ApplySubscriptionResults, BooleanEntitlement, Coupon, Customer, CustomerPortal, Entitlement, EstimateSubscription, EstimateSubscriptionUpdate, FetchUsageHistory, GetActiveSubscriptions, GetBooleanEntitlement, GetCheckoutStateResults, GetCheckoutState, GetCustomerPortal, GetMeteredEntitlement, GetNumericEntitlement, GetPaywall, GetSubscription, MeteredEntitlement, NumericEntitlement, Paywall, PreviewSubscription, Subscription, SubscriptionPreview, SubscriptionPreviewV2, UsageHistoryPoint, WaitForCheckoutCompleted, PreviewNextInvoice, GetSubscriptionsParams, GetSubscriptionsResult, EnumEntitlement, GetEnumEntitlement, CreatePaymentSessionInput, GetCreditBalanceInput, GetCreditGrantsInput, GetCreditLedgerInput } from './models';
|
|
4
4
|
import { EventNames, Events } from './services/eventEmitter';
|
|
5
5
|
import { LoggerService } from './services/loggerService';
|
|
6
6
|
export interface StiggClient {
|
|
@@ -39,6 +39,7 @@ export interface StiggClient {
|
|
|
39
39
|
getUsageHistoryV2(input: UsageHistoryV2Input): Promise<UsageHistoryV2Fragment>;
|
|
40
40
|
getCreditBalance(input?: GetCreditBalanceInput): Promise<CreditsBalanceSummaryFragment>;
|
|
41
41
|
getCreditGrants(input: GetCreditGrantsInput): Promise<CreditGrantFragment[]>;
|
|
42
|
+
getCreditLedger(input?: GetCreditLedgerInput): Promise<CreditLedgerFragment[]>;
|
|
42
43
|
createPaymentSession(input: CreatePaymentSessionInput): Promise<PaymentSessionFragment>;
|
|
43
44
|
}
|
|
44
45
|
export declare class Stigg implements StiggClient {
|
|
@@ -256,6 +257,12 @@ export declare class Stigg implements StiggClient {
|
|
|
256
257
|
* @param input - the input for the credit grants
|
|
257
258
|
*/
|
|
258
259
|
getCreditGrants(input: GetCreditGrantsInput): Promise<CreditGrantFragment[]>;
|
|
260
|
+
/**
|
|
261
|
+
* Get credit ledger
|
|
262
|
+
* @return {Promise<CreditLedgerFragment[]>} the credit ledger data
|
|
263
|
+
* @param input - the input for the credit ledger
|
|
264
|
+
*/
|
|
265
|
+
getCreditLedger(input?: GetCreditLedgerInput): Promise<CreditLedgerFragment[]>;
|
|
259
266
|
/**
|
|
260
267
|
* Create payment session
|
|
261
268
|
* @return {Promise<PaymentSessionFragment>} the payment session data
|