@visa-check-r/integrations 0.0.102 → 0.0.103
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.cjs.js +10 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +10 -10
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1532,32 +1532,32 @@ var appConfigSchema = {
|
|
|
1532
1532
|
get: {
|
|
1533
1533
|
operation: "query",
|
|
1534
1534
|
name: "getAppConfig",
|
|
1535
|
-
variables: "($
|
|
1536
|
-
field: "(
|
|
1535
|
+
variables: "($appConfig: AppConfigInput!)",
|
|
1536
|
+
field: "(appConfig: $appConfig)"
|
|
1537
1537
|
},
|
|
1538
1538
|
list: {
|
|
1539
1539
|
operation: "query",
|
|
1540
1540
|
name: "listAppConfigs",
|
|
1541
|
-
variables: "($limit: Int!, $skip: Int!, $search: String, $
|
|
1542
|
-
field: "(limit: $limit, skip: $skip, search: $search,
|
|
1541
|
+
variables: "($limit: Int!, $skip: Int!, $search: String, $appConfig: AppConfigInput, $appConfigIds: [String])",
|
|
1542
|
+
field: "(limit: $limit, skip: $skip, search: $search, appConfig: $appConfig, appConfigIds: $appConfigIds)"
|
|
1543
1543
|
},
|
|
1544
1544
|
create: {
|
|
1545
1545
|
operation: "mutation",
|
|
1546
1546
|
name: "createAppConfig",
|
|
1547
|
-
variables: "($
|
|
1548
|
-
field: "(
|
|
1547
|
+
variables: "($appConfig: AppConfigInput!)",
|
|
1548
|
+
field: "(appConfig: $appConfig)"
|
|
1549
1549
|
},
|
|
1550
1550
|
update: {
|
|
1551
1551
|
operation: "mutation",
|
|
1552
1552
|
name: "updateAppConfig",
|
|
1553
|
-
variables: "($
|
|
1554
|
-
field: "(
|
|
1553
|
+
variables: "($appConfigId: String!, $appConfig: AppConfigInput!)",
|
|
1554
|
+
field: "(appConfigId: $appConfigId, appConfig: $appConfig)"
|
|
1555
1555
|
},
|
|
1556
1556
|
delete: {
|
|
1557
1557
|
operation: "mutation",
|
|
1558
1558
|
name: "deleteAppConfig",
|
|
1559
|
-
variables: "($
|
|
1560
|
-
field: "(
|
|
1559
|
+
variables: "($appConfigId: String!)",
|
|
1560
|
+
field: "(appConfigId: $appConfigId)"
|
|
1561
1561
|
}
|
|
1562
1562
|
};
|
|
1563
1563
|
|