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