@stock-in-the-channel/sinch-vue-components 0.0.365 → 0.0.367
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/index.es.js +14821 -14567
- package/dist/style.css +1 -1
- package/dist/types/api-clients/generated/graphql.d.ts +39 -4
- package/dist/types/components/CloudChannel/Pages/MarketPlace/ProductDetails.vue.d.ts +5 -2
- package/dist/types/components/CloudChannel/Pages/Subscription/MicrosoftRenewalScheduler.vue.d.ts +6 -2
- package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionDetailsTypes.d.ts +1 -0
- package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionNotesComponent.vue.d.ts +26 -0
- package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionOrderHistories.vue.d.ts +2 -0
- package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionQueries.d.ts +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.thumbnail-container{text-align:center}.products-row[data-v-6f02f4d6]{display:flex;flex-wrap:wrap}.q-dialog-plugin[data-v-
|
|
1
|
+
.thumbnail-container{text-align:center}.products-row[data-v-6f02f4d6]{display:flex;flex-wrap:wrap}.q-dialog-plugin[data-v-48adbd6c]{max-width:1100px;width:80vw}.q-td{min-width:80px}
|
|
@@ -302,6 +302,7 @@ export type CspGraphQlMutations = {
|
|
|
302
302
|
updateIngramCustomer: UpdateIngramCustomerPayload;
|
|
303
303
|
updateMicrosoftScheduledNextTermInstructions: UpdateMicrosoftScheduledNextTermInstructionsPayload;
|
|
304
304
|
updateSubscription: UpdateSubscriptionPayload;
|
|
305
|
+
updateSubscriptionNotes: UpdateSubscriptionNotesPayload;
|
|
305
306
|
updateWestcoastCustomer: UpdateWestcoastCustomerPayload;
|
|
306
307
|
};
|
|
307
308
|
export type CspGraphQlMutationsAddItemToBasketArgs = {
|
|
@@ -400,6 +401,9 @@ export type CspGraphQlMutationsUpdateMicrosoftScheduledNextTermInstructionsArgs
|
|
|
400
401
|
export type CspGraphQlMutationsUpdateSubscriptionArgs = {
|
|
401
402
|
input: UpdateSubscriptionInput;
|
|
402
403
|
};
|
|
404
|
+
export type CspGraphQlMutationsUpdateSubscriptionNotesArgs = {
|
|
405
|
+
input: UpdateSubscriptionNotesInput;
|
|
406
|
+
};
|
|
403
407
|
export type CspGraphQlMutationsUpdateWestcoastCustomerArgs = {
|
|
404
408
|
input: UpdateWestcoastCustomerInput;
|
|
405
409
|
};
|
|
@@ -1110,10 +1114,12 @@ export type GenericErrorCancellingSubscription = Error & {
|
|
|
1110
1114
|
export type GetAcronisExternalSystemClientPayload = {
|
|
1111
1115
|
__typename?: 'GetAcronisExternalSystemClientPayload';
|
|
1112
1116
|
clientId: Scalars['String']['output'];
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
externalSystemClientId
|
|
1117
|
+
clientSecret: Scalars['String']['output'];
|
|
1118
|
+
dataCenterUrl: Scalars['String']['output'];
|
|
1119
|
+
externalSystemClientId?: Maybe<Scalars['Int']['output']>;
|
|
1116
1120
|
integrationName: Scalars['String']['output'];
|
|
1121
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1122
|
+
settingsDistributorId: Scalars['Int']['output'];
|
|
1117
1123
|
};
|
|
1118
1124
|
export type GetBasketDetailsContactPayload = {
|
|
1119
1125
|
__typename?: 'GetBasketDetailsContactPayload';
|
|
@@ -1152,6 +1158,7 @@ export type GetCsvFtpExternalSystemClientPayload = {
|
|
|
1152
1158
|
endpointBaseUrl: Scalars['String']['output'];
|
|
1153
1159
|
externalSystemClientId?: Maybe<Scalars['Int']['output']>;
|
|
1154
1160
|
integrationName: Scalars['String']['output'];
|
|
1161
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1155
1162
|
settingsDistributorId: Scalars['Int']['output'];
|
|
1156
1163
|
settingsFilePath: Scalars['String']['output'];
|
|
1157
1164
|
};
|
|
@@ -1272,6 +1279,7 @@ export type GetIngramExternalSystemClientPayload = {
|
|
|
1272
1279
|
externalSystemType: ExternalSystemType;
|
|
1273
1280
|
integrationName: Scalars['String']['output'];
|
|
1274
1281
|
settingsBillingImportOnDayOfMonth: Scalars['Int']['output'];
|
|
1282
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1275
1283
|
settingsDistributorId: Scalars['Int']['output'];
|
|
1276
1284
|
settingsFetchReportsPeriod: Scalars['String']['output'];
|
|
1277
1285
|
settingsReportFormat: ReportFormat;
|
|
@@ -1288,6 +1296,7 @@ export type GetMicrosoftExternalSystemClientPayload = {
|
|
|
1288
1296
|
externalSystemType: ExternalSystemType;
|
|
1289
1297
|
integrationName: Scalars['String']['output'];
|
|
1290
1298
|
settingsBillingImportOnDayOfMonth: Scalars['Int']['output'];
|
|
1299
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1291
1300
|
settingsDistributorId: Scalars['Int']['output'];
|
|
1292
1301
|
};
|
|
1293
1302
|
export type GetOrderDetails = {
|
|
@@ -1386,6 +1395,8 @@ export type GetResellerBasketsPayloadSortInput = {
|
|
|
1386
1395
|
};
|
|
1387
1396
|
export type GetResellerExternalClientsPayload = {
|
|
1388
1397
|
__typename?: 'GetResellerExternalClientsPayload';
|
|
1398
|
+
disableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1399
|
+
distributorId: Scalars['Int']['output'];
|
|
1389
1400
|
externalSystemType: ExternalSystemType;
|
|
1390
1401
|
id: Scalars['Int']['output'];
|
|
1391
1402
|
name: Scalars['String']['output'];
|
|
@@ -1459,6 +1470,7 @@ export type GetTechDataExternalSystemClientPayload = {
|
|
|
1459
1470
|
externalSystemClientId?: Maybe<Scalars['Int']['output']>;
|
|
1460
1471
|
integrationName: Scalars['String']['output'];
|
|
1461
1472
|
settingsBillingImportOnDayOfMonth: Scalars['Int']['output'];
|
|
1473
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1462
1474
|
settingsDistributorId: Scalars['Int']['output'];
|
|
1463
1475
|
settingsPeriod: Scalars['String']['output'];
|
|
1464
1476
|
};
|
|
@@ -1469,6 +1481,7 @@ export type GetWestcoastExternalSystemClientPayload = {
|
|
|
1469
1481
|
endpointBaseUrl: Scalars['String']['output'];
|
|
1470
1482
|
externalSystemClientId?: Maybe<Scalars['Int']['output']>;
|
|
1471
1483
|
integrationName: Scalars['String']['output'];
|
|
1484
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['output'];
|
|
1472
1485
|
settingsDistributorId: Scalars['Int']['output'];
|
|
1473
1486
|
};
|
|
1474
1487
|
export type IngramCreateCustomerConfigPayload = {
|
|
@@ -1630,6 +1643,7 @@ export type Mutation = {
|
|
|
1630
1643
|
updateIngramCustomer: UpdateIngramCustomerPayload;
|
|
1631
1644
|
updateMicrosoftScheduledNextTermInstructions: UpdateMicrosoftScheduledNextTermInstructionsPayload;
|
|
1632
1645
|
updateSubscription: UpdateSubscriptionPayload;
|
|
1646
|
+
updateSubscriptionNotes: UpdateSubscriptionNotesPayload;
|
|
1633
1647
|
updateWestcoastCustomer: UpdateWestcoastCustomerPayload;
|
|
1634
1648
|
};
|
|
1635
1649
|
export type MutationAddItemToBasketArgs = {
|
|
@@ -1728,6 +1742,9 @@ export type MutationUpdateMicrosoftScheduledNextTermInstructionsArgs = {
|
|
|
1728
1742
|
export type MutationUpdateSubscriptionArgs = {
|
|
1729
1743
|
input: UpdateSubscriptionInput;
|
|
1730
1744
|
};
|
|
1745
|
+
export type MutationUpdateSubscriptionNotesArgs = {
|
|
1746
|
+
input: UpdateSubscriptionNotesInput;
|
|
1747
|
+
};
|
|
1731
1748
|
export type MutationUpdateWestcoastCustomerArgs = {
|
|
1732
1749
|
input: UpdateWestcoastCustomerInput;
|
|
1733
1750
|
};
|
|
@@ -2236,9 +2253,10 @@ export type SaveAcronisIntegrationInput = {
|
|
|
2236
2253
|
clientId: Scalars['String']['input'];
|
|
2237
2254
|
clientSecret: Scalars['String']['input'];
|
|
2238
2255
|
dataCenterUrl: Scalars['String']['input'];
|
|
2239
|
-
distributorId: Scalars['Int']['input'];
|
|
2240
2256
|
externalSystemClientId?: InputMaybe<Scalars['Int']['input']>;
|
|
2241
2257
|
integrationName: Scalars['String']['input'];
|
|
2258
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['input'];
|
|
2259
|
+
settingsDistributorId: Scalars['Int']['input'];
|
|
2242
2260
|
};
|
|
2243
2261
|
export type SaveAcronisIntegrationPayload = {
|
|
2244
2262
|
__typename?: 'SaveAcronisIntegrationPayload';
|
|
@@ -2255,6 +2273,7 @@ export type SaveCsvFtpIntegrationInput = {
|
|
|
2255
2273
|
endpointBaseUrl: Scalars['String']['input'];
|
|
2256
2274
|
externalSystemClientId?: InputMaybe<Scalars['Int']['input']>;
|
|
2257
2275
|
integrationName: Scalars['String']['input'];
|
|
2276
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['input'];
|
|
2258
2277
|
settingsDistributorId: Scalars['Int']['input'];
|
|
2259
2278
|
settingsFilePath: Scalars['String']['input'];
|
|
2260
2279
|
};
|
|
@@ -2277,6 +2296,7 @@ export type SaveIngramIntegrationInput = {
|
|
|
2277
2296
|
externalSystemType: ExternalSystemType;
|
|
2278
2297
|
integrationName: Scalars['String']['input'];
|
|
2279
2298
|
settingsBillingImportOnDayOfMonth: Scalars['Int']['input'];
|
|
2299
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['input'];
|
|
2280
2300
|
settingsDistributorId: Scalars['Int']['input'];
|
|
2281
2301
|
settingsFetchReportsPeriod: Scalars['String']['input'];
|
|
2282
2302
|
settingsReportFormat: ReportFormat;
|
|
@@ -2301,6 +2321,7 @@ export type SaveMicrosoftIntegrationInput = {
|
|
|
2301
2321
|
externalSystemType: ExternalSystemType;
|
|
2302
2322
|
integrationName: Scalars['String']['input'];
|
|
2303
2323
|
settingsBillingImportOnDayOfMonth: Scalars['Int']['input'];
|
|
2324
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['input'];
|
|
2304
2325
|
settingsDistributorId: Scalars['Int']['input'];
|
|
2305
2326
|
};
|
|
2306
2327
|
export type SaveMicrosoftIntegrationPayload = {
|
|
@@ -2321,6 +2342,7 @@ export type SaveTechDataIntegrationInput = {
|
|
|
2321
2342
|
externalSystemClientId?: InputMaybe<Scalars['Int']['input']>;
|
|
2322
2343
|
integrationName: Scalars['String']['input'];
|
|
2323
2344
|
settingsBillingImportOnDayOfMonth: Scalars['Int']['input'];
|
|
2345
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['input'];
|
|
2324
2346
|
settingsDistributorId: Scalars['Int']['input'];
|
|
2325
2347
|
settingsPeriod: Scalars['String']['input'];
|
|
2326
2348
|
};
|
|
@@ -2349,6 +2371,7 @@ export type SaveWestcoastIntegrationInput = {
|
|
|
2349
2371
|
endpointBaseUrl: Scalars['String']['input'];
|
|
2350
2372
|
externalSystemClientId?: InputMaybe<Scalars['Int']['input']>;
|
|
2351
2373
|
integrationName: Scalars['String']['input'];
|
|
2374
|
+
settingsDisableBasketOnCustomerPortal: Scalars['Boolean']['input'];
|
|
2352
2375
|
settingsDistributorId: Scalars['Int']['input'];
|
|
2353
2376
|
};
|
|
2354
2377
|
export type SaveWestcoastIntegrationPayload = {
|
|
@@ -2561,6 +2584,7 @@ export type SubscriptionGqlModel = {
|
|
|
2561
2584
|
hasPendingChanges: Scalars['Boolean']['output'];
|
|
2562
2585
|
isAutoRenewalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2563
2586
|
lines: Array<SubscriptionLine>;
|
|
2587
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
2564
2588
|
orders: Array<SubscriptionOrder>;
|
|
2565
2589
|
providerCustomerId: Scalars['String']['output'];
|
|
2566
2590
|
providerSubscriptionId: Scalars['String']['output'];
|
|
@@ -2592,6 +2616,7 @@ export type SubscriptionGqlModelFilterInput = {
|
|
|
2592
2616
|
hasPendingChanges?: InputMaybe<BooleanOperationFilterInput>;
|
|
2593
2617
|
isAutoRenewalEnabled?: InputMaybe<BooleanOperationFilterInput>;
|
|
2594
2618
|
lines?: InputMaybe<ListFilterInputTypeOfSubscriptionLineFilterInput>;
|
|
2619
|
+
notes?: InputMaybe<StringOperationFilterInput>;
|
|
2595
2620
|
or?: InputMaybe<Array<SubscriptionGqlModelFilterInput>>;
|
|
2596
2621
|
orders?: InputMaybe<ListFilterInputTypeOfSubscriptionOrderFilterInput>;
|
|
2597
2622
|
providerCustomerId?: InputMaybe<StringOperationFilterInput>;
|
|
@@ -2622,6 +2647,7 @@ export type SubscriptionGqlModelSortInput = {
|
|
|
2622
2647
|
externalSystemType?: InputMaybe<SortEnumType>;
|
|
2623
2648
|
hasPendingChanges?: InputMaybe<SortEnumType>;
|
|
2624
2649
|
isAutoRenewalEnabled?: InputMaybe<SortEnumType>;
|
|
2650
|
+
notes?: InputMaybe<SortEnumType>;
|
|
2625
2651
|
providerCustomerId?: InputMaybe<SortEnumType>;
|
|
2626
2652
|
providerSubscriptionId?: InputMaybe<SortEnumType>;
|
|
2627
2653
|
quantity?: InputMaybe<SortEnumType>;
|
|
@@ -2837,6 +2863,7 @@ export type UpdateIngramCustomerPayload = {
|
|
|
2837
2863
|
errors?: Maybe<Array<UpdateIngramCustomerError>>;
|
|
2838
2864
|
};
|
|
2839
2865
|
export type UpdateMicrosoftScheduledNextTermInstructionsInput = {
|
|
2866
|
+
cspSubscriptionId: Scalars['Int']['input'];
|
|
2840
2867
|
externalSystemClientId: Scalars['Int']['input'];
|
|
2841
2868
|
isAutoRenewEnabled: Scalars['Boolean']['input'];
|
|
2842
2869
|
providerCustomerId: Scalars['String']['input'];
|
|
@@ -2854,6 +2881,14 @@ export type UpdateSubscriptionInput = {
|
|
|
2854
2881
|
lines: Array<SubscriptionLineInputGqlInput>;
|
|
2855
2882
|
purchaseOrderNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2856
2883
|
};
|
|
2884
|
+
export type UpdateSubscriptionNotesInput = {
|
|
2885
|
+
cspSubscriptionId: Scalars['Int']['input'];
|
|
2886
|
+
notes: Scalars['String']['input'];
|
|
2887
|
+
};
|
|
2888
|
+
export type UpdateSubscriptionNotesPayload = {
|
|
2889
|
+
__typename?: 'UpdateSubscriptionNotesPayload';
|
|
2890
|
+
boolean?: Maybe<Scalars['Boolean']['output']>;
|
|
2891
|
+
};
|
|
2857
2892
|
export type UpdateSubscriptionPayload = {
|
|
2858
2893
|
__typename?: 'UpdateSubscriptionPayload';
|
|
2859
2894
|
boolean?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { RouteLocationNormalizedLoaded, Router } from 'vue-router';
|
|
2
2
|
import { ProductVariantResult } from '@/api-clients/SearchApiClient';
|
|
3
|
+
import { GetResellerExternalClientsPayload } from '@/api-clients/generated/graphql';
|
|
3
4
|
export type CheckProducSubscriptionResult = {
|
|
4
5
|
providerSubscriptionId: string;
|
|
5
6
|
externalSystem: string;
|
|
@@ -29,17 +30,19 @@ export type DistributorProduct = {
|
|
|
29
30
|
clientPriceCurrency?: string;
|
|
30
31
|
variants: ProductVariantResult[];
|
|
31
32
|
productId: number;
|
|
33
|
+
isDistributorEnabledForReseller: Boolean;
|
|
34
|
+
disableBasketOnCustomerPortal: Boolean;
|
|
32
35
|
};
|
|
33
36
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
34
37
|
route: RouteLocationNormalizedLoaded;
|
|
35
38
|
router: Router;
|
|
36
|
-
enabledDistributorIds: number[];
|
|
37
39
|
rowsPerPageOptions: number[];
|
|
38
40
|
addProductToBasketLoading: boolean;
|
|
39
41
|
columnVisibility?: ColumnVisibility | undefined;
|
|
40
42
|
viewAsTiles: boolean;
|
|
41
43
|
siteCloud: boolean;
|
|
42
44
|
hideDistributorsSection: boolean;
|
|
45
|
+
resellerExternalSystems: GetResellerExternalClientsPayload[];
|
|
43
46
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
47
|
addProductToBasket: (product: DistributorProduct, quantity: number, evt: Event) => void;
|
|
45
48
|
navigateToConfigureUrl: (product: DistributorProduct, evt: Event) => void;
|
|
@@ -47,13 +50,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
47
50
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
48
51
|
route: RouteLocationNormalizedLoaded;
|
|
49
52
|
router: Router;
|
|
50
|
-
enabledDistributorIds: number[];
|
|
51
53
|
rowsPerPageOptions: number[];
|
|
52
54
|
addProductToBasketLoading: boolean;
|
|
53
55
|
columnVisibility?: ColumnVisibility | undefined;
|
|
54
56
|
viewAsTiles: boolean;
|
|
55
57
|
siteCloud: boolean;
|
|
56
58
|
hideDistributorsSection: boolean;
|
|
59
|
+
resellerExternalSystems: GetResellerExternalClientsPayload[];
|
|
57
60
|
}>>> & Readonly<{
|
|
58
61
|
onAddProductToBasket?: ((product: DistributorProduct, quantity: number, evt: Event) => any) | undefined;
|
|
59
62
|
onNavigateToConfigureUrl?: ((product: DistributorProduct, evt: Event) => any) | undefined;
|
package/dist/types/components/CloudChannel/Pages/Subscription/MicrosoftRenewalScheduler.vue.d.ts
CHANGED
|
@@ -67,10 +67,14 @@ export interface RefundableQuantity {
|
|
|
67
67
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
68
68
|
subscriptionDetails: SubscriptionModelGraphQlLocal;
|
|
69
69
|
subscriptionProviderData: string | undefined;
|
|
70
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
70
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
71
|
+
updateFinished: () => void;
|
|
72
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
71
73
|
subscriptionDetails: SubscriptionModelGraphQlLocal;
|
|
72
74
|
subscriptionProviderData: string | undefined;
|
|
73
|
-
}>>> & Readonly<{
|
|
75
|
+
}>>> & Readonly<{
|
|
76
|
+
onUpdateFinished?: (() => any) | undefined;
|
|
77
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
74
78
|
export default _default;
|
|
75
79
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
76
80
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -30,6 +30,7 @@ export type SubscriptionModelGraphQlLocal = {
|
|
|
30
30
|
externalSystemClientName?: string;
|
|
31
31
|
externalSystemClientId?: number;
|
|
32
32
|
providerData?: Record<string, any>;
|
|
33
|
+
notes?: string;
|
|
33
34
|
};
|
|
34
35
|
export type SubscriptionLineLocal = {
|
|
35
36
|
__typename?: 'SubscriptionLineLocal';
|
package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionNotesComponent.vue.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
notes: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
subscriptionId: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
saved: (...args: any[]) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
notes: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
subscriptionId: {
|
|
18
|
+
type: NumberConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{
|
|
22
|
+
onSaved?: ((...args: any[]) => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
notes: string;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
export default _default;
|
package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionOrderHistories.vue.d.ts
CHANGED
|
@@ -2,12 +2,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2
2
|
cspSubscriptionId: number;
|
|
3
3
|
title: string;
|
|
4
4
|
rowsPerPageOptions: number[];
|
|
5
|
+
triggerUpdateHook: Number;
|
|
5
6
|
}>, {
|
|
6
7
|
rowsPerPageOptions: () => number[];
|
|
7
8
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
9
|
cspSubscriptionId: number;
|
|
9
10
|
title: string;
|
|
10
11
|
rowsPerPageOptions: number[];
|
|
12
|
+
triggerUpdateHook: Number;
|
|
11
13
|
}>, {
|
|
12
14
|
rowsPerPageOptions: () => number[];
|
|
13
15
|
}>>> & Readonly<{}>, {
|
|
@@ -2,5 +2,5 @@ import { SubscriptionOrderDetailsCollectionSegment, SubscriptionOrderFilterInput
|
|
|
2
2
|
declare const productSubscriptionDetailsQuery: import("@apollo/client").DocumentNode;
|
|
3
3
|
declare const updateSubscriptionMutation: import("@apollo/client").DocumentNode;
|
|
4
4
|
export { productSubscriptionDetailsQuery, updateSubscriptionMutation, };
|
|
5
|
-
export declare function fetchSubscriptionOrderHistoryDetails(page: number, rowsPerPage: number, where: SubscriptionOrderStatusHistoriesModelFilterInput, order: [SubscriptionOrderStatusHistoriesModelSortInput]): Promise<SubscriptionOrderStatusHistoriesModelCollectionSegment>;
|
|
5
|
+
export declare function fetchSubscriptionOrderHistoryDetails(page: number, rowsPerPage: number, where: SubscriptionOrderStatusHistoriesModelFilterInput, order: [SubscriptionOrderStatusHistoriesModelSortInput], forceRefresh?: boolean): Promise<SubscriptionOrderStatusHistoriesModelCollectionSegment>;
|
|
6
6
|
export declare function fetchSubscriptionOrderDetails(take: number, skip: number, where: SubscriptionOrderFilterInput, order: SubscriptionOrderSortInput): Promise<SubscriptionOrderDetailsCollectionSegment>;
|