@restorecommerce/facade 1.13.19 → 1.13.21

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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.13.21](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.13.20...@restorecommerce/facade@1.13.21) (2024-05-10)
7
+
8
+ **Note:** Version bump only for package @restorecommerce/facade
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.13.20](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.13.19...@restorecommerce/facade@1.13.20) (2024-05-07)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **credentials:** expose credential service, acs-client decorators support multi resource ([fbb6dde](https://github.com/restorecommerce/libs/commit/fbb6ddebfc1f65d4bad940c20096ff7f6b6e2d3a))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.13.19](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.13.18...@restorecommerce/facade@1.13.19) (2024-04-26)
7
26
 
8
27
 
@@ -426,6 +426,7 @@ export type IoRestorecommerceFulfillmentCourierFulfillmentCourier = {
426
426
  logo?: Maybe<Scalars['String']['output']>;
427
427
  website?: Maybe<Scalars['String']['output']>;
428
428
  stubType?: Maybe<Scalars['String']['output']>;
429
+ credentialId?: Maybe<Scalars['String']['output']>;
429
430
  configuration?: Maybe<GoogleProtobufAny>;
430
431
  };
431
432
  export type IoRestorecommerceFulfillmentProductVariant = {
@@ -1315,6 +1316,7 @@ export type IIoRestorecommerceFulfillmentCourierFulfillmentCourier = {
1315
1316
  logo?: InputMaybe<Scalars['String']['input']>;
1316
1317
  website?: InputMaybe<Scalars['String']['input']>;
1317
1318
  stubType?: InputMaybe<Scalars['String']['input']>;
1319
+ credentialId?: InputMaybe<Scalars['String']['input']>;
1318
1320
  configuration?: InputMaybe<IGoogleProtobufAny>;
1319
1321
  };
1320
1322
  export type FulfillmentFulfillmentProductMutation = {
@@ -2133,6 +2135,7 @@ export type IoRestorecommerceFulfillmentCourierFulfillmentCourierResolvers<Conte
2133
2135
  logo?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
2134
2136
  website?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
2135
2137
  stubType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
2138
+ credentialId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
2136
2139
  configuration?: Resolver<Maybe<ResolversTypes['GoogleProtobufAny']>, ParentType, ContextType>;
2137
2140
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2138
2141
  }>;