@wix/auto_sdk_payments_payment-acceptance-configurations 1.0.70 → 1.0.71
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/package.json +4 -11
- package/build/cjs/schemas.d.ts +0 -54
- package/build/cjs/schemas.js +0 -133
- package/build/cjs/schemas.js.map +0 -1
- package/build/es/schemas.d.mts +0 -54
- package/build/es/schemas.mjs +0 -95
- package/build/es/schemas.mjs.map +0 -1
- package/build/internal/cjs/index.js +0 -1018
- package/build/internal/cjs/index.js.map +0 -1
- package/build/internal/cjs/index.typings.js +0 -900
- package/build/internal/cjs/index.typings.js.map +0 -1
- package/build/internal/cjs/meta.js +0 -755
- package/build/internal/cjs/meta.js.map +0 -1
- package/build/internal/cjs/schemas.d.ts +0 -54
- package/build/internal/cjs/schemas.js +0 -133
- package/build/internal/cjs/schemas.js.map +0 -1
- package/build/internal/es/index.mjs +0 -978
- package/build/internal/es/index.mjs.map +0 -1
- package/build/internal/es/index.typings.mjs +0 -859
- package/build/internal/es/index.typings.mjs.map +0 -1
- package/build/internal/es/meta.mjs +0 -713
- package/build/internal/es/meta.mjs.map +0 -1
- package/build/internal/es/schemas.d.mts +0 -54
- package/build/internal/es/schemas.mjs +0 -95
- package/build/internal/es/schemas.mjs.map +0 -1
- package/schemas/package.json +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_payments_payment-acceptance-configurations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.71",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -21,23 +21,16 @@
|
|
|
21
21
|
"import": "./build/es/meta.mjs",
|
|
22
22
|
"require": "./build/cjs/meta.js",
|
|
23
23
|
"types": "./build/es/meta.d.mts"
|
|
24
|
-
},
|
|
25
|
-
"./schemas": {
|
|
26
|
-
"import": "./build/es/schemas.mjs",
|
|
27
|
-
"require": "./build/cjs/schemas.js",
|
|
28
|
-
"types": "./build/es/schemas.d.mts"
|
|
29
24
|
}
|
|
30
25
|
},
|
|
31
26
|
"files": [
|
|
32
27
|
"build",
|
|
33
28
|
"meta",
|
|
34
|
-
"service-plugins"
|
|
35
|
-
"schemas"
|
|
29
|
+
"service-plugins"
|
|
36
30
|
],
|
|
37
31
|
"dependencies": {
|
|
38
32
|
"@wix/sdk-runtime": "^1.0.24",
|
|
39
|
-
"@wix/sdk-types": "^1.17.11"
|
|
40
|
-
"zod": "^4.3.6"
|
|
33
|
+
"@wix/sdk-types": "^1.17.11"
|
|
41
34
|
},
|
|
42
35
|
"devDependencies": {
|
|
43
36
|
"tsup": "^8.4.0",
|
|
@@ -57,5 +50,5 @@
|
|
|
57
50
|
"fqdn": "wix.payments.payment_acceptance_configurations.v1.payment_acceptance_configuration"
|
|
58
51
|
}
|
|
59
52
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "4bed465623071a81c5c17c6eece6f77fc11830b1df19f209eefb1fbc"
|
|
61
54
|
}
|
package/build/cjs/schemas.d.ts
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod';
|
|
2
|
-
|
|
3
|
-
declare const QueryPaymentAcceptanceConfigurationsRequest: z.ZodObject<{
|
|
4
|
-
query: z.ZodIntersection<z.ZodObject<{
|
|
5
|
-
filter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
6
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7
|
-
fieldName: z.ZodOptional<z.ZodString>;
|
|
8
|
-
order: z.ZodOptional<z.ZodEnum<{
|
|
9
|
-
ASC: "ASC";
|
|
10
|
-
DESC: "DESC";
|
|
11
|
-
}>>;
|
|
12
|
-
}, z.core.$strip>>>;
|
|
13
|
-
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
14
|
-
cursorPaging: z.ZodOptional<z.ZodNever>;
|
|
15
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
16
|
-
cursorPaging: z.ZodObject<{
|
|
17
|
-
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
18
|
-
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19
|
-
}, z.core.$strip>;
|
|
20
|
-
}, z.core.$strip>]>>;
|
|
21
|
-
}, z.core.$strip>;
|
|
22
|
-
declare const QueryPaymentAcceptanceConfigurationsResponse: z.ZodObject<{
|
|
23
|
-
paymentAcceptanceConfigurations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25
|
-
appId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26
|
-
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28
|
-
paymentMethodTypeId: z.ZodOptional<z.ZodString>;
|
|
29
|
-
accountConnectionId: z.ZodOptional<z.ZodString>;
|
|
30
|
-
merchantEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
31
|
-
}, z.core.$strip>>>;
|
|
32
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
34
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
35
|
-
extendedFields: z.ZodOptional<z.ZodObject<{
|
|
36
|
-
namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
37
|
-
}, z.core.$strip>>;
|
|
38
|
-
tags: z.ZodOptional<z.ZodObject<{
|
|
39
|
-
tags: z.ZodOptional<z.ZodObject<{
|
|
40
|
-
tagIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
41
|
-
}, z.core.$strip>>;
|
|
42
|
-
}, z.core.$strip>>;
|
|
43
|
-
}, z.core.$strip>>>;
|
|
44
|
-
pagingMetadata: z.ZodOptional<z.ZodObject<{
|
|
45
|
-
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
46
|
-
cursors: z.ZodOptional<z.ZodObject<{
|
|
47
|
-
next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
48
|
-
prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49
|
-
}, z.core.$strip>>;
|
|
50
|
-
hasNext: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
51
|
-
}, z.core.$strip>>;
|
|
52
|
-
}, z.core.$strip>;
|
|
53
|
-
|
|
54
|
-
export { QueryPaymentAcceptanceConfigurationsRequest, QueryPaymentAcceptanceConfigurationsResponse };
|
package/build/cjs/schemas.js
DELETED
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
|
|
30
|
-
// schemas.ts
|
|
31
|
-
var schemas_exports = {};
|
|
32
|
-
__export(schemas_exports, {
|
|
33
|
-
QueryPaymentAcceptanceConfigurationsRequest: () => QueryPaymentAcceptanceConfigurationsRequest,
|
|
34
|
-
QueryPaymentAcceptanceConfigurationsResponse: () => QueryPaymentAcceptanceConfigurationsResponse
|
|
35
|
-
});
|
|
36
|
-
module.exports = __toCommonJS(schemas_exports);
|
|
37
|
-
|
|
38
|
-
// src/payments-payment-acceptance-configurations-v1-payment-acceptance-configuration-payment-acceptance-configurations.schemas.ts
|
|
39
|
-
var z = __toESM(require("zod"));
|
|
40
|
-
var QueryPaymentAcceptanceConfigurationsRequest = /* @__PURE__ */ z.object({
|
|
41
|
-
query: z.intersection(
|
|
42
|
-
z.object({
|
|
43
|
-
filter: z.record(z.string(), z.any()).describe(
|
|
44
|
-
'Filter object in the following format:\n`"filter" : {\n"fieldName1": "value1",\n"fieldName2":{"$operator":"value2"}\n}`\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`'
|
|
45
|
-
).optional().nullable(),
|
|
46
|
-
sort: z.array(
|
|
47
|
-
z.object({
|
|
48
|
-
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
49
|
-
order: z.enum(["ASC", "DESC"]).optional()
|
|
50
|
-
})
|
|
51
|
-
).max(5).optional()
|
|
52
|
-
}),
|
|
53
|
-
z.xor([
|
|
54
|
-
z.object({ cursorPaging: z.never().optional() }),
|
|
55
|
-
z.object({
|
|
56
|
-
cursorPaging: z.object({
|
|
57
|
-
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
58
|
-
cursor: z.string().describe(
|
|
59
|
-
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
60
|
-
).max(16e3).optional().nullable()
|
|
61
|
-
}).describe(
|
|
62
|
-
"Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`."
|
|
63
|
-
)
|
|
64
|
-
})
|
|
65
|
-
])
|
|
66
|
-
).describe("WQL expression.")
|
|
67
|
-
});
|
|
68
|
-
var QueryPaymentAcceptanceConfigurationsResponse = /* @__PURE__ */ z.object({
|
|
69
|
-
paymentAcceptanceConfigurations: z.array(
|
|
70
|
-
z.object({
|
|
71
|
-
_id: z.string().describe("Id").regex(
|
|
72
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
73
|
-
"Must be a valid GUID"
|
|
74
|
-
).optional().nullable(),
|
|
75
|
-
appId: z.string().describe("App id").regex(
|
|
76
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
77
|
-
"Must be a valid GUID"
|
|
78
|
-
).optional().nullable(),
|
|
79
|
-
rules: z.array(
|
|
80
|
-
z.object({
|
|
81
|
-
_id: z.string().describe("Rule Id").regex(
|
|
82
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
83
|
-
"Must be a valid GUID"
|
|
84
|
-
).optional().nullable(),
|
|
85
|
-
paymentMethodTypeId: z.string().describe("Payment method type id").regex(
|
|
86
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
87
|
-
"Must be a valid GUID"
|
|
88
|
-
).optional(),
|
|
89
|
-
accountConnectionId: z.string().describe("Account connection id").regex(
|
|
90
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
91
|
-
"Must be a valid GUID"
|
|
92
|
-
).optional(),
|
|
93
|
-
merchantEnabled: z.boolean().describe("Merchant enabled").optional()
|
|
94
|
-
})
|
|
95
|
-
).max(1e3).optional(),
|
|
96
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe("Revision").optional().nullable(),
|
|
97
|
-
_createdDate: z.date().describe("Date when PaymentAcceptanceConfiguration was created").optional().nullable(),
|
|
98
|
-
_updatedDate: z.date().describe("Date when PaymentAcceptanceConfiguration was updated").optional().nullable(),
|
|
99
|
-
extendedFields: z.object({
|
|
100
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
101
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
102
|
-
).optional()
|
|
103
|
-
}).describe("Data Extensions").optional(),
|
|
104
|
-
tags: z.object({
|
|
105
|
-
tags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
106
|
-
"Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors."
|
|
107
|
-
).optional()
|
|
108
|
-
}).describe("Tags").optional()
|
|
109
|
-
})
|
|
110
|
-
).optional(),
|
|
111
|
-
pagingMetadata: z.object({
|
|
112
|
-
count: z.number().int().describe("Number of items returned in the response.").optional().nullable(),
|
|
113
|
-
cursors: z.object({
|
|
114
|
-
next: z.string().describe(
|
|
115
|
-
"Cursor string pointing to the next page in the list of results."
|
|
116
|
-
).max(16e3).optional().nullable(),
|
|
117
|
-
prev: z.string().describe(
|
|
118
|
-
"Cursor pointing to the previous page in the list of results."
|
|
119
|
-
).max(16e3).optional().nullable()
|
|
120
|
-
}).describe(
|
|
121
|
-
"Cursor strings that point to the next page, previous page, or both."
|
|
122
|
-
).optional(),
|
|
123
|
-
hasNext: z.boolean().describe(
|
|
124
|
-
"Whether there are more pages to retrieve following the current page.\n\n+ `true`: Another page of results can be retrieved.\n+ `false`: This is the last page."
|
|
125
|
-
).optional().nullable()
|
|
126
|
-
}).describe("Paging metadata").optional()
|
|
127
|
-
});
|
|
128
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
129
|
-
0 && (module.exports = {
|
|
130
|
-
QueryPaymentAcceptanceConfigurationsRequest,
|
|
131
|
-
QueryPaymentAcceptanceConfigurationsResponse
|
|
132
|
-
});
|
|
133
|
-
//# sourceMappingURL=schemas.js.map
|
package/build/cjs/schemas.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../schemas.ts","../../src/payments-payment-acceptance-configurations-v1-payment-acceptance-configuration-payment-acceptance-configurations.schemas.ts"],"sourcesContent":["export * from './src/payments-payment-acceptance-configurations-v1-payment-acceptance-configuration-payment-acceptance-configurations.schemas.js';\n","import * as z from 'zod';\n\nexport const QueryPaymentAcceptanceConfigurationsRequest =\n /*#__PURE__*/ z.object({\n query: z\n .intersection(\n z.object({\n filter: z\n .record(z.string(), z.any())\n .describe(\n 'Filter object in the following format:\\n`\"filter\" : {\\n\"fieldName1\": \"value1\",\\n\"fieldName2\":{\"$operator\":\"value2\"}\\n}`\\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`'\n )\n .optional()\n .nullable(),\n sort: z\n .array(\n z.object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n )\n .max(5)\n .optional(),\n }),\n z.xor([\n z.object({ cursorPaging: z.never().optional() }),\n z.object({\n cursorPaging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.'\n ),\n }),\n ])\n )\n .describe('WQL expression.'),\n });\nexport const QueryPaymentAcceptanceConfigurationsResponse =\n /*#__PURE__*/ z.object({\n paymentAcceptanceConfigurations: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n appId: z\n .string()\n .describe('App id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n rules: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Rule Id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n paymentMethodTypeId: z\n .string()\n .describe('Payment method type id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n accountConnectionId: z\n .string()\n .describe('Account connection id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n merchantEnabled: z\n .boolean()\n .describe('Merchant enabled')\n .optional(),\n })\n )\n .max(1000)\n .optional(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe('Revision')\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date when PaymentAcceptanceConfiguration was created')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date when PaymentAcceptanceConfiguration was updated')\n .optional()\n .nullable(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Data Extensions')\n .optional(),\n tags: z\n .object({\n tags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags')\n .optional(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor strings that point to the next page, previous page, or both.'\n )\n .optional(),\n hasNext: z\n .boolean()\n .describe(\n 'Whether there are more pages to retrieve following the current page.\\n\\n+ `true`: Another page of results can be retrieved.\\n+ `false`: This is the last page.'\n )\n .optional()\n .nullable(),\n })\n .describe('Paging metadata')\n .optional(),\n });\n"],"mappings":"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","names":[]}
|
package/build/es/schemas.d.mts
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod';
|
|
2
|
-
|
|
3
|
-
declare const QueryPaymentAcceptanceConfigurationsRequest: z.ZodObject<{
|
|
4
|
-
query: z.ZodIntersection<z.ZodObject<{
|
|
5
|
-
filter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
6
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7
|
-
fieldName: z.ZodOptional<z.ZodString>;
|
|
8
|
-
order: z.ZodOptional<z.ZodEnum<{
|
|
9
|
-
ASC: "ASC";
|
|
10
|
-
DESC: "DESC";
|
|
11
|
-
}>>;
|
|
12
|
-
}, z.core.$strip>>>;
|
|
13
|
-
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
14
|
-
cursorPaging: z.ZodOptional<z.ZodNever>;
|
|
15
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
16
|
-
cursorPaging: z.ZodObject<{
|
|
17
|
-
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
18
|
-
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19
|
-
}, z.core.$strip>;
|
|
20
|
-
}, z.core.$strip>]>>;
|
|
21
|
-
}, z.core.$strip>;
|
|
22
|
-
declare const QueryPaymentAcceptanceConfigurationsResponse: z.ZodObject<{
|
|
23
|
-
paymentAcceptanceConfigurations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25
|
-
appId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26
|
-
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28
|
-
paymentMethodTypeId: z.ZodOptional<z.ZodString>;
|
|
29
|
-
accountConnectionId: z.ZodOptional<z.ZodString>;
|
|
30
|
-
merchantEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
31
|
-
}, z.core.$strip>>>;
|
|
32
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
34
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
35
|
-
extendedFields: z.ZodOptional<z.ZodObject<{
|
|
36
|
-
namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
37
|
-
}, z.core.$strip>>;
|
|
38
|
-
tags: z.ZodOptional<z.ZodObject<{
|
|
39
|
-
tags: z.ZodOptional<z.ZodObject<{
|
|
40
|
-
tagIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
41
|
-
}, z.core.$strip>>;
|
|
42
|
-
}, z.core.$strip>>;
|
|
43
|
-
}, z.core.$strip>>>;
|
|
44
|
-
pagingMetadata: z.ZodOptional<z.ZodObject<{
|
|
45
|
-
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
46
|
-
cursors: z.ZodOptional<z.ZodObject<{
|
|
47
|
-
next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
48
|
-
prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49
|
-
}, z.core.$strip>>;
|
|
50
|
-
hasNext: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
51
|
-
}, z.core.$strip>>;
|
|
52
|
-
}, z.core.$strip>;
|
|
53
|
-
|
|
54
|
-
export { QueryPaymentAcceptanceConfigurationsRequest, QueryPaymentAcceptanceConfigurationsResponse };
|
package/build/es/schemas.mjs
DELETED
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
// src/payments-payment-acceptance-configurations-v1-payment-acceptance-configuration-payment-acceptance-configurations.schemas.ts
|
|
2
|
-
import * as z from "zod";
|
|
3
|
-
var QueryPaymentAcceptanceConfigurationsRequest = /* @__PURE__ */ z.object({
|
|
4
|
-
query: z.intersection(
|
|
5
|
-
z.object({
|
|
6
|
-
filter: z.record(z.string(), z.any()).describe(
|
|
7
|
-
'Filter object in the following format:\n`"filter" : {\n"fieldName1": "value1",\n"fieldName2":{"$operator":"value2"}\n}`\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`'
|
|
8
|
-
).optional().nullable(),
|
|
9
|
-
sort: z.array(
|
|
10
|
-
z.object({
|
|
11
|
-
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
12
|
-
order: z.enum(["ASC", "DESC"]).optional()
|
|
13
|
-
})
|
|
14
|
-
).max(5).optional()
|
|
15
|
-
}),
|
|
16
|
-
z.xor([
|
|
17
|
-
z.object({ cursorPaging: z.never().optional() }),
|
|
18
|
-
z.object({
|
|
19
|
-
cursorPaging: z.object({
|
|
20
|
-
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
21
|
-
cursor: z.string().describe(
|
|
22
|
-
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
23
|
-
).max(16e3).optional().nullable()
|
|
24
|
-
}).describe(
|
|
25
|
-
"Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`."
|
|
26
|
-
)
|
|
27
|
-
})
|
|
28
|
-
])
|
|
29
|
-
).describe("WQL expression.")
|
|
30
|
-
});
|
|
31
|
-
var QueryPaymentAcceptanceConfigurationsResponse = /* @__PURE__ */ z.object({
|
|
32
|
-
paymentAcceptanceConfigurations: z.array(
|
|
33
|
-
z.object({
|
|
34
|
-
_id: z.string().describe("Id").regex(
|
|
35
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
36
|
-
"Must be a valid GUID"
|
|
37
|
-
).optional().nullable(),
|
|
38
|
-
appId: z.string().describe("App id").regex(
|
|
39
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
40
|
-
"Must be a valid GUID"
|
|
41
|
-
).optional().nullable(),
|
|
42
|
-
rules: z.array(
|
|
43
|
-
z.object({
|
|
44
|
-
_id: z.string().describe("Rule Id").regex(
|
|
45
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
46
|
-
"Must be a valid GUID"
|
|
47
|
-
).optional().nullable(),
|
|
48
|
-
paymentMethodTypeId: z.string().describe("Payment method type id").regex(
|
|
49
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
50
|
-
"Must be a valid GUID"
|
|
51
|
-
).optional(),
|
|
52
|
-
accountConnectionId: z.string().describe("Account connection id").regex(
|
|
53
|
-
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
54
|
-
"Must be a valid GUID"
|
|
55
|
-
).optional(),
|
|
56
|
-
merchantEnabled: z.boolean().describe("Merchant enabled").optional()
|
|
57
|
-
})
|
|
58
|
-
).max(1e3).optional(),
|
|
59
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe("Revision").optional().nullable(),
|
|
60
|
-
_createdDate: z.date().describe("Date when PaymentAcceptanceConfiguration was created").optional().nullable(),
|
|
61
|
-
_updatedDate: z.date().describe("Date when PaymentAcceptanceConfiguration was updated").optional().nullable(),
|
|
62
|
-
extendedFields: z.object({
|
|
63
|
-
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
64
|
-
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
65
|
-
).optional()
|
|
66
|
-
}).describe("Data Extensions").optional(),
|
|
67
|
-
tags: z.object({
|
|
68
|
-
tags: z.object({ tagIds: z.array(z.string()).max(100).optional() }).describe(
|
|
69
|
-
"Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors."
|
|
70
|
-
).optional()
|
|
71
|
-
}).describe("Tags").optional()
|
|
72
|
-
})
|
|
73
|
-
).optional(),
|
|
74
|
-
pagingMetadata: z.object({
|
|
75
|
-
count: z.number().int().describe("Number of items returned in the response.").optional().nullable(),
|
|
76
|
-
cursors: z.object({
|
|
77
|
-
next: z.string().describe(
|
|
78
|
-
"Cursor string pointing to the next page in the list of results."
|
|
79
|
-
).max(16e3).optional().nullable(),
|
|
80
|
-
prev: z.string().describe(
|
|
81
|
-
"Cursor pointing to the previous page in the list of results."
|
|
82
|
-
).max(16e3).optional().nullable()
|
|
83
|
-
}).describe(
|
|
84
|
-
"Cursor strings that point to the next page, previous page, or both."
|
|
85
|
-
).optional(),
|
|
86
|
-
hasNext: z.boolean().describe(
|
|
87
|
-
"Whether there are more pages to retrieve following the current page.\n\n+ `true`: Another page of results can be retrieved.\n+ `false`: This is the last page."
|
|
88
|
-
).optional().nullable()
|
|
89
|
-
}).describe("Paging metadata").optional()
|
|
90
|
-
});
|
|
91
|
-
export {
|
|
92
|
-
QueryPaymentAcceptanceConfigurationsRequest,
|
|
93
|
-
QueryPaymentAcceptanceConfigurationsResponse
|
|
94
|
-
};
|
|
95
|
-
//# sourceMappingURL=schemas.mjs.map
|
package/build/es/schemas.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/payments-payment-acceptance-configurations-v1-payment-acceptance-configuration-payment-acceptance-configurations.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const QueryPaymentAcceptanceConfigurationsRequest =\n /*#__PURE__*/ z.object({\n query: z\n .intersection(\n z.object({\n filter: z\n .record(z.string(), z.any())\n .describe(\n 'Filter object in the following format:\\n`\"filter\" : {\\n\"fieldName1\": \"value1\",\\n\"fieldName2\":{\"$operator\":\"value2\"}\\n}`\\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`'\n )\n .optional()\n .nullable(),\n sort: z\n .array(\n z.object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n )\n .max(5)\n .optional(),\n }),\n z.xor([\n z.object({ cursorPaging: z.never().optional() }),\n z.object({\n cursorPaging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.'\n ),\n }),\n ])\n )\n .describe('WQL expression.'),\n });\nexport const QueryPaymentAcceptanceConfigurationsResponse =\n /*#__PURE__*/ z.object({\n paymentAcceptanceConfigurations: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n appId: z\n .string()\n .describe('App id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n rules: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Rule Id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n paymentMethodTypeId: z\n .string()\n .describe('Payment method type id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n accountConnectionId: z\n .string()\n .describe('Account connection id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n merchantEnabled: z\n .boolean()\n .describe('Merchant enabled')\n .optional(),\n })\n )\n .max(1000)\n .optional(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe('Revision')\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date when PaymentAcceptanceConfiguration was created')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date when PaymentAcceptanceConfiguration was updated')\n .optional()\n .nullable(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Data Extensions')\n .optional(),\n tags: z\n .object({\n tags: z\n .object({ tagIds: z.array(z.string()).max(100).optional() })\n .describe(\n 'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n )\n .optional(),\n })\n .describe('Tags')\n .optional(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor strings that point to the next page, previous page, or both.'\n )\n .optional(),\n hasNext: z\n .boolean()\n .describe(\n 'Whether there are more pages to retrieve following the current page.\\n\\n+ `true`: Another page of results can be retrieved.\\n+ `false`: This is the last page.'\n )\n .optional()\n .nullable(),\n })\n .describe('Paging metadata')\n .optional(),\n });\n"],"mappings":"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","names":[]}
|