@stock-in-the-channel/sinch-vue-components 0.0.364 → 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/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-94a831be]{max-width:1100px;width:80vw}.q-td{min-width:80px}
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
  };
@@ -1300,8 +1304,10 @@ export type GetOrderDetails = {
1300
1304
  externalSystemClientId: Scalars['Int']['output'];
1301
1305
  externalSystemType: ExternalSystemType;
1302
1306
  orderItems: Array<OrderItemPayload>;
1307
+ orderStatusMetadata?: Maybe<Scalars['String']['output']>;
1303
1308
  providerCustomerId: Scalars['String']['output'];
1304
1309
  providerName: Scalars['String']['output'];
1310
+ providerOrderId?: Maybe<Scalars['String']['output']>;
1305
1311
  salesOrderParameters?: Maybe<Scalars['String']['output']>;
1306
1312
  sinchAccountId: Scalars['String']['output'];
1307
1313
  status: OrderPayloadStatus;
@@ -1628,6 +1634,7 @@ export type Mutation = {
1628
1634
  updateIngramCustomer: UpdateIngramCustomerPayload;
1629
1635
  updateMicrosoftScheduledNextTermInstructions: UpdateMicrosoftScheduledNextTermInstructionsPayload;
1630
1636
  updateSubscription: UpdateSubscriptionPayload;
1637
+ updateSubscriptionNotes: UpdateSubscriptionNotesPayload;
1631
1638
  updateWestcoastCustomer: UpdateWestcoastCustomerPayload;
1632
1639
  };
1633
1640
  export type MutationAddItemToBasketArgs = {
@@ -1726,6 +1733,9 @@ export type MutationUpdateMicrosoftScheduledNextTermInstructionsArgs = {
1726
1733
  export type MutationUpdateSubscriptionArgs = {
1727
1734
  input: UpdateSubscriptionInput;
1728
1735
  };
1736
+ export type MutationUpdateSubscriptionNotesArgs = {
1737
+ input: UpdateSubscriptionNotesInput;
1738
+ };
1729
1739
  export type MutationUpdateWestcoastCustomerArgs = {
1730
1740
  input: UpdateWestcoastCustomerInput;
1731
1741
  };
@@ -2388,11 +2398,13 @@ export type SearchOrdersPayload = {
2388
2398
  currency: Scalars['String']['output'];
2389
2399
  customerCompanyName?: Maybe<Scalars['String']['output']>;
2390
2400
  externalSystemClientId: Scalars['Int']['output'];
2391
- externalSystemType: Scalars['String']['output'];
2401
+ externalSystemType: ExternalSystemType;
2402
+ orderStatusMetadata?: Maybe<Scalars['String']['output']>;
2392
2403
  providerCustomerId: Scalars['String']['output'];
2393
- providerName: Scalars['String']['output'];
2404
+ providerName?: Maybe<Scalars['String']['output']>;
2405
+ providerOrderId?: Maybe<Scalars['String']['output']>;
2394
2406
  salesOrderParameters?: Maybe<Scalars['String']['output']>;
2395
- sinchAccountId: Scalars['String']['output'];
2407
+ sinchAccountId?: Maybe<Scalars['String']['output']>;
2396
2408
  status: OrderPayloadStatus;
2397
2409
  statusHistory: Array<OrderPayloadStatusHistory>;
2398
2410
  totalMsrp: Scalars['Decimal']['output'];
@@ -2407,10 +2419,12 @@ export type SearchOrdersPayloadFilterInput = {
2407
2419
  currency?: InputMaybe<StringOperationFilterInput>;
2408
2420
  customerCompanyName?: InputMaybe<StringOperationFilterInput>;
2409
2421
  externalSystemClientId?: InputMaybe<IntOperationFilterInput>;
2410
- externalSystemType?: InputMaybe<StringOperationFilterInput>;
2422
+ externalSystemType?: InputMaybe<ExternalSystemTypeOperationFilterInput>;
2411
2423
  or?: InputMaybe<Array<SearchOrdersPayloadFilterInput>>;
2424
+ orderStatusMetadata?: InputMaybe<StringOperationFilterInput>;
2412
2425
  providerCustomerId?: InputMaybe<StringOperationFilterInput>;
2413
2426
  providerName?: InputMaybe<StringOperationFilterInput>;
2427
+ providerOrderId?: InputMaybe<StringOperationFilterInput>;
2414
2428
  salesOrderParameters?: InputMaybe<StringOperationFilterInput>;
2415
2429
  sinchAccountId?: InputMaybe<StringOperationFilterInput>;
2416
2430
  status?: InputMaybe<OrderPayloadStatusOperationFilterInput>;
@@ -2427,8 +2441,10 @@ export type SearchOrdersPayloadSortInput = {
2427
2441
  customerCompanyName?: InputMaybe<SortEnumType>;
2428
2442
  externalSystemClientId?: InputMaybe<SortEnumType>;
2429
2443
  externalSystemType?: InputMaybe<SortEnumType>;
2444
+ orderStatusMetadata?: InputMaybe<SortEnumType>;
2430
2445
  providerCustomerId?: InputMaybe<SortEnumType>;
2431
2446
  providerName?: InputMaybe<SortEnumType>;
2447
+ providerOrderId?: InputMaybe<SortEnumType>;
2432
2448
  salesOrderParameters?: InputMaybe<SortEnumType>;
2433
2449
  sinchAccountId?: InputMaybe<SortEnumType>;
2434
2450
  status?: InputMaybe<SortEnumType>;
@@ -2553,6 +2569,7 @@ export type SubscriptionGqlModel = {
2553
2569
  hasPendingChanges: Scalars['Boolean']['output'];
2554
2570
  isAutoRenewalEnabled?: Maybe<Scalars['Boolean']['output']>;
2555
2571
  lines: Array<SubscriptionLine>;
2572
+ notes?: Maybe<Scalars['String']['output']>;
2556
2573
  orders: Array<SubscriptionOrder>;
2557
2574
  providerCustomerId: Scalars['String']['output'];
2558
2575
  providerSubscriptionId: Scalars['String']['output'];
@@ -2584,6 +2601,7 @@ export type SubscriptionGqlModelFilterInput = {
2584
2601
  hasPendingChanges?: InputMaybe<BooleanOperationFilterInput>;
2585
2602
  isAutoRenewalEnabled?: InputMaybe<BooleanOperationFilterInput>;
2586
2603
  lines?: InputMaybe<ListFilterInputTypeOfSubscriptionLineFilterInput>;
2604
+ notes?: InputMaybe<StringOperationFilterInput>;
2587
2605
  or?: InputMaybe<Array<SubscriptionGqlModelFilterInput>>;
2588
2606
  orders?: InputMaybe<ListFilterInputTypeOfSubscriptionOrderFilterInput>;
2589
2607
  providerCustomerId?: InputMaybe<StringOperationFilterInput>;
@@ -2614,6 +2632,7 @@ export type SubscriptionGqlModelSortInput = {
2614
2632
  externalSystemType?: InputMaybe<SortEnumType>;
2615
2633
  hasPendingChanges?: InputMaybe<SortEnumType>;
2616
2634
  isAutoRenewalEnabled?: InputMaybe<SortEnumType>;
2635
+ notes?: InputMaybe<SortEnumType>;
2617
2636
  providerCustomerId?: InputMaybe<SortEnumType>;
2618
2637
  providerSubscriptionId?: InputMaybe<SortEnumType>;
2619
2638
  quantity?: InputMaybe<SortEnumType>;
@@ -2829,6 +2848,7 @@ export type UpdateIngramCustomerPayload = {
2829
2848
  errors?: Maybe<Array<UpdateIngramCustomerError>>;
2830
2849
  };
2831
2850
  export type UpdateMicrosoftScheduledNextTermInstructionsInput = {
2851
+ cspSubscriptionId: Scalars['Int']['input'];
2832
2852
  externalSystemClientId: Scalars['Int']['input'];
2833
2853
  isAutoRenewEnabled: Scalars['Boolean']['input'];
2834
2854
  providerCustomerId: Scalars['String']['input'];
@@ -2846,6 +2866,14 @@ export type UpdateSubscriptionInput = {
2846
2866
  lines: Array<SubscriptionLineInputGqlInput>;
2847
2867
  purchaseOrderNumber?: InputMaybe<Scalars['String']['input']>;
2848
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
+ };
2849
2877
  export type UpdateSubscriptionPayload = {
2850
2878
  __typename?: 'UpdateSubscriptionPayload';
2851
2879
  boolean?: Maybe<Scalars['Boolean']['output']>;
@@ -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, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
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<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
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';
@@ -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;
@@ -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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stock-in-the-channel/sinch-vue-components",
3
- "version": "0.0.364",
3
+ "version": "0.0.366",
4
4
  "files": [
5
5
  "dist"
6
6
  ],