@stock-in-the-channel/sinch-vue-components 0.0.364 → 0.0.365
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 +1111 -1033
- package/dist/types/api-clients/generated/graphql.d.ts +12 -4
- package/package.json +1 -1
|
@@ -1300,8 +1300,10 @@ export type GetOrderDetails = {
|
|
|
1300
1300
|
externalSystemClientId: Scalars['Int']['output'];
|
|
1301
1301
|
externalSystemType: ExternalSystemType;
|
|
1302
1302
|
orderItems: Array<OrderItemPayload>;
|
|
1303
|
+
orderStatusMetadata?: Maybe<Scalars['String']['output']>;
|
|
1303
1304
|
providerCustomerId: Scalars['String']['output'];
|
|
1304
1305
|
providerName: Scalars['String']['output'];
|
|
1306
|
+
providerOrderId?: Maybe<Scalars['String']['output']>;
|
|
1305
1307
|
salesOrderParameters?: Maybe<Scalars['String']['output']>;
|
|
1306
1308
|
sinchAccountId: Scalars['String']['output'];
|
|
1307
1309
|
status: OrderPayloadStatus;
|
|
@@ -2388,11 +2390,13 @@ export type SearchOrdersPayload = {
|
|
|
2388
2390
|
currency: Scalars['String']['output'];
|
|
2389
2391
|
customerCompanyName?: Maybe<Scalars['String']['output']>;
|
|
2390
2392
|
externalSystemClientId: Scalars['Int']['output'];
|
|
2391
|
-
externalSystemType:
|
|
2393
|
+
externalSystemType: ExternalSystemType;
|
|
2394
|
+
orderStatusMetadata?: Maybe<Scalars['String']['output']>;
|
|
2392
2395
|
providerCustomerId: Scalars['String']['output'];
|
|
2393
|
-
providerName
|
|
2396
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
2397
|
+
providerOrderId?: Maybe<Scalars['String']['output']>;
|
|
2394
2398
|
salesOrderParameters?: Maybe<Scalars['String']['output']>;
|
|
2395
|
-
sinchAccountId
|
|
2399
|
+
sinchAccountId?: Maybe<Scalars['String']['output']>;
|
|
2396
2400
|
status: OrderPayloadStatus;
|
|
2397
2401
|
statusHistory: Array<OrderPayloadStatusHistory>;
|
|
2398
2402
|
totalMsrp: Scalars['Decimal']['output'];
|
|
@@ -2407,10 +2411,12 @@ export type SearchOrdersPayloadFilterInput = {
|
|
|
2407
2411
|
currency?: InputMaybe<StringOperationFilterInput>;
|
|
2408
2412
|
customerCompanyName?: InputMaybe<StringOperationFilterInput>;
|
|
2409
2413
|
externalSystemClientId?: InputMaybe<IntOperationFilterInput>;
|
|
2410
|
-
externalSystemType?: InputMaybe<
|
|
2414
|
+
externalSystemType?: InputMaybe<ExternalSystemTypeOperationFilterInput>;
|
|
2411
2415
|
or?: InputMaybe<Array<SearchOrdersPayloadFilterInput>>;
|
|
2416
|
+
orderStatusMetadata?: InputMaybe<StringOperationFilterInput>;
|
|
2412
2417
|
providerCustomerId?: InputMaybe<StringOperationFilterInput>;
|
|
2413
2418
|
providerName?: InputMaybe<StringOperationFilterInput>;
|
|
2419
|
+
providerOrderId?: InputMaybe<StringOperationFilterInput>;
|
|
2414
2420
|
salesOrderParameters?: InputMaybe<StringOperationFilterInput>;
|
|
2415
2421
|
sinchAccountId?: InputMaybe<StringOperationFilterInput>;
|
|
2416
2422
|
status?: InputMaybe<OrderPayloadStatusOperationFilterInput>;
|
|
@@ -2427,8 +2433,10 @@ export type SearchOrdersPayloadSortInput = {
|
|
|
2427
2433
|
customerCompanyName?: InputMaybe<SortEnumType>;
|
|
2428
2434
|
externalSystemClientId?: InputMaybe<SortEnumType>;
|
|
2429
2435
|
externalSystemType?: InputMaybe<SortEnumType>;
|
|
2436
|
+
orderStatusMetadata?: InputMaybe<SortEnumType>;
|
|
2430
2437
|
providerCustomerId?: InputMaybe<SortEnumType>;
|
|
2431
2438
|
providerName?: InputMaybe<SortEnumType>;
|
|
2439
|
+
providerOrderId?: InputMaybe<SortEnumType>;
|
|
2432
2440
|
salesOrderParameters?: InputMaybe<SortEnumType>;
|
|
2433
2441
|
sinchAccountId?: InputMaybe<SortEnumType>;
|
|
2434
2442
|
status?: InputMaybe<SortEnumType>;
|