@stock-in-the-channel/sinch-vue-components 0.0.365 → 0.0.366
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 +14669 -14420
- package/dist/style.css +1 -1
- package/dist/types/api-clients/generated/graphql.d.ts +20 -0
- 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
|
};
|
|
@@ -1630,6 +1634,7 @@ export type Mutation = {
|
|
|
1630
1634
|
updateIngramCustomer: UpdateIngramCustomerPayload;
|
|
1631
1635
|
updateMicrosoftScheduledNextTermInstructions: UpdateMicrosoftScheduledNextTermInstructionsPayload;
|
|
1632
1636
|
updateSubscription: UpdateSubscriptionPayload;
|
|
1637
|
+
updateSubscriptionNotes: UpdateSubscriptionNotesPayload;
|
|
1633
1638
|
updateWestcoastCustomer: UpdateWestcoastCustomerPayload;
|
|
1634
1639
|
};
|
|
1635
1640
|
export type MutationAddItemToBasketArgs = {
|
|
@@ -1728,6 +1733,9 @@ export type MutationUpdateMicrosoftScheduledNextTermInstructionsArgs = {
|
|
|
1728
1733
|
export type MutationUpdateSubscriptionArgs = {
|
|
1729
1734
|
input: UpdateSubscriptionInput;
|
|
1730
1735
|
};
|
|
1736
|
+
export type MutationUpdateSubscriptionNotesArgs = {
|
|
1737
|
+
input: UpdateSubscriptionNotesInput;
|
|
1738
|
+
};
|
|
1731
1739
|
export type MutationUpdateWestcoastCustomerArgs = {
|
|
1732
1740
|
input: UpdateWestcoastCustomerInput;
|
|
1733
1741
|
};
|
|
@@ -2561,6 +2569,7 @@ export type SubscriptionGqlModel = {
|
|
|
2561
2569
|
hasPendingChanges: Scalars['Boolean']['output'];
|
|
2562
2570
|
isAutoRenewalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2563
2571
|
lines: Array<SubscriptionLine>;
|
|
2572
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
2564
2573
|
orders: Array<SubscriptionOrder>;
|
|
2565
2574
|
providerCustomerId: Scalars['String']['output'];
|
|
2566
2575
|
providerSubscriptionId: Scalars['String']['output'];
|
|
@@ -2592,6 +2601,7 @@ export type SubscriptionGqlModelFilterInput = {
|
|
|
2592
2601
|
hasPendingChanges?: InputMaybe<BooleanOperationFilterInput>;
|
|
2593
2602
|
isAutoRenewalEnabled?: InputMaybe<BooleanOperationFilterInput>;
|
|
2594
2603
|
lines?: InputMaybe<ListFilterInputTypeOfSubscriptionLineFilterInput>;
|
|
2604
|
+
notes?: InputMaybe<StringOperationFilterInput>;
|
|
2595
2605
|
or?: InputMaybe<Array<SubscriptionGqlModelFilterInput>>;
|
|
2596
2606
|
orders?: InputMaybe<ListFilterInputTypeOfSubscriptionOrderFilterInput>;
|
|
2597
2607
|
providerCustomerId?: InputMaybe<StringOperationFilterInput>;
|
|
@@ -2622,6 +2632,7 @@ export type SubscriptionGqlModelSortInput = {
|
|
|
2622
2632
|
externalSystemType?: InputMaybe<SortEnumType>;
|
|
2623
2633
|
hasPendingChanges?: InputMaybe<SortEnumType>;
|
|
2624
2634
|
isAutoRenewalEnabled?: InputMaybe<SortEnumType>;
|
|
2635
|
+
notes?: InputMaybe<SortEnumType>;
|
|
2625
2636
|
providerCustomerId?: InputMaybe<SortEnumType>;
|
|
2626
2637
|
providerSubscriptionId?: InputMaybe<SortEnumType>;
|
|
2627
2638
|
quantity?: InputMaybe<SortEnumType>;
|
|
@@ -2837,6 +2848,7 @@ export type UpdateIngramCustomerPayload = {
|
|
|
2837
2848
|
errors?: Maybe<Array<UpdateIngramCustomerError>>;
|
|
2838
2849
|
};
|
|
2839
2850
|
export type UpdateMicrosoftScheduledNextTermInstructionsInput = {
|
|
2851
|
+
cspSubscriptionId: Scalars['Int']['input'];
|
|
2840
2852
|
externalSystemClientId: Scalars['Int']['input'];
|
|
2841
2853
|
isAutoRenewEnabled: Scalars['Boolean']['input'];
|
|
2842
2854
|
providerCustomerId: Scalars['String']['input'];
|
|
@@ -2854,6 +2866,14 @@ export type UpdateSubscriptionInput = {
|
|
|
2854
2866
|
lines: Array<SubscriptionLineInputGqlInput>;
|
|
2855
2867
|
purchaseOrderNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2856
2868
|
};
|
|
2869
|
+
export type UpdateSubscriptionNotesInput = {
|
|
2870
|
+
cspSubscriptionId: Scalars['Int']['input'];
|
|
2871
|
+
notes: Scalars['String']['input'];
|
|
2872
|
+
};
|
|
2873
|
+
export type UpdateSubscriptionNotesPayload = {
|
|
2874
|
+
__typename?: 'UpdateSubscriptionNotesPayload';
|
|
2875
|
+
boolean?: Maybe<Scalars['Boolean']['output']>;
|
|
2876
|
+
};
|
|
2857
2877
|
export type UpdateSubscriptionPayload = {
|
|
2858
2878
|
__typename?: 'UpdateSubscriptionPayload';
|
|
2859
2879
|
boolean?: Maybe<Scalars['Boolean']['output']>;
|
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>;
|