@simpleapps-com/augur-api 2026.6.1 → 2026.6.3
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/{client-R8LU4_qg.d.mts → client-Bkt57JO1.d.mts} +159 -5
- package/dist/{client-R8LU4_qg.d.ts → client-Bkt57JO1.d.ts} +159 -5
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1191 -858
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1190 -858
- package/dist/index.mjs.map +1 -1
- package/dist/testing.d.mts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31,6 +31,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
33
|
AgrInfoClient: () => AgrInfoClient,
|
|
34
|
+
AgrIntClient: () => AgrIntClient,
|
|
34
35
|
AgrSiteClient: () => AgrSiteClient,
|
|
35
36
|
AgrWorkClient: () => AgrWorkClient,
|
|
36
37
|
AugurAPI: () => AugurAPI,
|
|
@@ -236,11 +237,11 @@ function buildUrlWithParams(url, params) {
|
|
|
236
237
|
return `${url}${separator}${queryString}`;
|
|
237
238
|
}
|
|
238
239
|
function headersToRecord(headers) {
|
|
239
|
-
const
|
|
240
|
+
const record29 = {};
|
|
240
241
|
headers.forEach((value, key) => {
|
|
241
|
-
|
|
242
|
+
record29[key] = value;
|
|
242
243
|
});
|
|
243
|
-
return
|
|
244
|
+
return record29;
|
|
244
245
|
}
|
|
245
246
|
var HTTPClient = class {
|
|
246
247
|
constructor(serviceName, config) {
|
|
@@ -1185,19 +1186,19 @@ Provided parameters: ${JSON.stringify(params, null, 2)}`;
|
|
|
1185
1186
|
* @returns ServiceDiscoveryMetadata containing service info and endpoint metadata
|
|
1186
1187
|
*/
|
|
1187
1188
|
getDiscoveryMetadata() {
|
|
1188
|
-
const
|
|
1189
|
+
const endpoints28 = [];
|
|
1189
1190
|
const methods = this.getAllMethods();
|
|
1190
1191
|
for (const methodName of methods) {
|
|
1191
1192
|
const metadata = this.extractMethodMetadata(methodName);
|
|
1192
1193
|
if (metadata && metadata.discoverable) {
|
|
1193
|
-
|
|
1194
|
+
endpoints28.push(metadata);
|
|
1194
1195
|
}
|
|
1195
1196
|
}
|
|
1196
1197
|
return {
|
|
1197
1198
|
serviceName: this.serviceName,
|
|
1198
1199
|
description: this.getServiceDescription(),
|
|
1199
1200
|
baseUrl: this.baseUrl,
|
|
1200
|
-
endpoints:
|
|
1201
|
+
endpoints: endpoints28
|
|
1201
1202
|
};
|
|
1202
1203
|
}
|
|
1203
1204
|
/**
|
|
@@ -1373,9 +1374,9 @@ var PassthroughResponseSchema = v3.looseObject({
|
|
|
1373
1374
|
totalResults: v3.number()
|
|
1374
1375
|
});
|
|
1375
1376
|
var PassthroughParamsSchema = v3.looseObject({});
|
|
1376
|
-
function buildEndpointTrie(
|
|
1377
|
+
function buildEndpointTrie(endpoints28) {
|
|
1377
1378
|
const root = { actions: /* @__PURE__ */ new Map(), children: /* @__PURE__ */ new Map() };
|
|
1378
|
-
for (const ep of
|
|
1379
|
+
for (const ep of endpoints28) {
|
|
1379
1380
|
const parts = ep.chain.split(".");
|
|
1380
1381
|
let node = root;
|
|
1381
1382
|
for (const part of parts) {
|
|
@@ -1391,8 +1392,8 @@ function buildEndpointTrie(endpoints27) {
|
|
|
1391
1392
|
}
|
|
1392
1393
|
return root;
|
|
1393
1394
|
}
|
|
1394
|
-
function createServiceProxy(serviceName, executeRequest,
|
|
1395
|
-
const trie = buildEndpointTrie(
|
|
1395
|
+
function createServiceProxy(serviceName, executeRequest, endpoints28) {
|
|
1396
|
+
const trie = buildEndpointTrie(endpoints28);
|
|
1396
1397
|
return createNodeObject(serviceName, executeRequest, trie);
|
|
1397
1398
|
}
|
|
1398
1399
|
function createNodeObject(serviceName, executeRequest, node) {
|
|
@@ -9799,6 +9800,324 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9799
9800
|
}
|
|
9800
9801
|
};
|
|
9801
9802
|
|
|
9803
|
+
// src/services/agr-int/generated/schemas.ts
|
|
9804
|
+
var v22 = __toESM(require("valibot"));
|
|
9805
|
+
var RolesListParamsSchema = v22.looseObject({
|
|
9806
|
+
...EdgeCacheParamsSchema.entries,
|
|
9807
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9808
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9809
|
+
orderBy: v22.optional(v22.string()),
|
|
9810
|
+
roleId: v22.optional(v22.string()),
|
|
9811
|
+
roleName: v22.optional(v22.string()),
|
|
9812
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9813
|
+
systemFlag: v22.optional(v22.string())
|
|
9814
|
+
});
|
|
9815
|
+
var UsersListParamsSchema = v22.looseObject({
|
|
9816
|
+
...EdgeCacheParamsSchema.entries,
|
|
9817
|
+
email: v22.optional(v22.string()),
|
|
9818
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9819
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9820
|
+
orderBy: v22.optional(v22.string()),
|
|
9821
|
+
phoneNumber: v22.optional(v22.string()),
|
|
9822
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9823
|
+
username: v22.optional(v22.string())
|
|
9824
|
+
});
|
|
9825
|
+
var UsersRolesListParamsSchema = v22.looseObject({
|
|
9826
|
+
...EdgeCacheParamsSchema.entries,
|
|
9827
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9828
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9829
|
+
orderBy: v22.optional(v22.string()),
|
|
9830
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
|
|
9831
|
+
});
|
|
9832
|
+
var RolesDataSchema = v22.looseObject({
|
|
9833
|
+
rolesUid: v22.optional(v22.number()),
|
|
9834
|
+
roleId: v22.optional(v22.string()),
|
|
9835
|
+
roleName: v22.optional(v22.string()),
|
|
9836
|
+
description: v22.optional(v22.nullable(v22.string())),
|
|
9837
|
+
systemFlag: v22.optional(v22.string()),
|
|
9838
|
+
dateCreated: v22.optional(v22.string()),
|
|
9839
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9840
|
+
updateCd: v22.optional(v22.number()),
|
|
9841
|
+
statusCd: v22.optional(v22.number()),
|
|
9842
|
+
processCd: v22.optional(v22.number())
|
|
9843
|
+
});
|
|
9844
|
+
var UsersDataSchema = v22.looseObject({
|
|
9845
|
+
usersUid: v22.optional(v22.number()),
|
|
9846
|
+
username: v22.optional(v22.string()),
|
|
9847
|
+
password: v22.optional(v22.string()),
|
|
9848
|
+
name: v22.optional(v22.nullable(v22.string())),
|
|
9849
|
+
email: v22.optional(v22.string()),
|
|
9850
|
+
phoneNumber: v22.optional(v22.nullable(v22.string())),
|
|
9851
|
+
dateCreated: v22.optional(v22.string()),
|
|
9852
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9853
|
+
updateCd: v22.optional(v22.number()),
|
|
9854
|
+
statusCd: v22.optional(v22.number()),
|
|
9855
|
+
processCd: v22.optional(v22.number())
|
|
9856
|
+
});
|
|
9857
|
+
var UsersRotateDataSchema = v22.looseObject({
|
|
9858
|
+
usersUid: v22.optional(v22.number()),
|
|
9859
|
+
username: v22.optional(v22.string()),
|
|
9860
|
+
token: v22.optional(v22.string())
|
|
9861
|
+
});
|
|
9862
|
+
var UsersValidateDataSchema = v22.looseObject({
|
|
9863
|
+
valid: v22.optional(v22.boolean()),
|
|
9864
|
+
scope: v22.optional(v22.string()),
|
|
9865
|
+
userId: v22.optional(v22.number()),
|
|
9866
|
+
username: v22.optional(v22.string()),
|
|
9867
|
+
email: v22.optional(v22.string()),
|
|
9868
|
+
name: v22.optional(v22.string())
|
|
9869
|
+
});
|
|
9870
|
+
var UsersRolesDataSchema = v22.looseObject({
|
|
9871
|
+
usersXRolesUid: v22.optional(v22.number()),
|
|
9872
|
+
usersUid: v22.optional(v22.number()),
|
|
9873
|
+
rolesUid: v22.optional(v22.number()),
|
|
9874
|
+
dateCreated: v22.optional(v22.string()),
|
|
9875
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9876
|
+
updateCd: v22.optional(v22.number()),
|
|
9877
|
+
statusCd: v22.optional(v22.number()),
|
|
9878
|
+
processCd: v22.optional(v22.number())
|
|
9879
|
+
});
|
|
9880
|
+
var PassthroughDataSchema15 = v22.record(v22.string(), v22.unknown());
|
|
9881
|
+
|
|
9882
|
+
// src/services/agr-int/generated/endpoints.ts
|
|
9883
|
+
var endpoints15 = [
|
|
9884
|
+
{
|
|
9885
|
+
method: "GET",
|
|
9886
|
+
path: "/roles",
|
|
9887
|
+
chain: "roles",
|
|
9888
|
+
action: "list",
|
|
9889
|
+
aliases: [],
|
|
9890
|
+
pathParams: [],
|
|
9891
|
+
queryParams: ["limit", "offset", "orderBy", "roleId", "roleName", "statusCd", "systemFlag"],
|
|
9892
|
+
edgeCache: true,
|
|
9893
|
+
responseSchema: RolesDataSchema,
|
|
9894
|
+
responseType: "array"
|
|
9895
|
+
},
|
|
9896
|
+
{
|
|
9897
|
+
method: "POST",
|
|
9898
|
+
path: "/roles",
|
|
9899
|
+
chain: "roles",
|
|
9900
|
+
action: "create",
|
|
9901
|
+
aliases: [],
|
|
9902
|
+
pathParams: [],
|
|
9903
|
+
queryParams: [],
|
|
9904
|
+
edgeCache: false,
|
|
9905
|
+
responseSchema: RolesDataSchema,
|
|
9906
|
+
responseType: "object"
|
|
9907
|
+
},
|
|
9908
|
+
{
|
|
9909
|
+
method: "GET",
|
|
9910
|
+
path: "/roles/{rolesUid}",
|
|
9911
|
+
chain: "roles",
|
|
9912
|
+
action: "get",
|
|
9913
|
+
aliases: [],
|
|
9914
|
+
pathParams: ["rolesUid"],
|
|
9915
|
+
queryParams: [],
|
|
9916
|
+
edgeCache: true,
|
|
9917
|
+
responseSchema: RolesDataSchema,
|
|
9918
|
+
responseType: "object"
|
|
9919
|
+
},
|
|
9920
|
+
{
|
|
9921
|
+
method: "PUT",
|
|
9922
|
+
path: "/roles/{rolesUid}",
|
|
9923
|
+
chain: "roles",
|
|
9924
|
+
action: "update",
|
|
9925
|
+
aliases: [],
|
|
9926
|
+
pathParams: ["rolesUid"],
|
|
9927
|
+
queryParams: [],
|
|
9928
|
+
edgeCache: false,
|
|
9929
|
+
responseSchema: RolesDataSchema,
|
|
9930
|
+
responseType: "object"
|
|
9931
|
+
},
|
|
9932
|
+
{
|
|
9933
|
+
method: "DELETE",
|
|
9934
|
+
path: "/roles/{rolesUid}",
|
|
9935
|
+
chain: "roles",
|
|
9936
|
+
action: "delete",
|
|
9937
|
+
aliases: [],
|
|
9938
|
+
pathParams: ["rolesUid"],
|
|
9939
|
+
queryParams: [],
|
|
9940
|
+
edgeCache: false,
|
|
9941
|
+
responseSchema: RolesDataSchema,
|
|
9942
|
+
responseType: "object"
|
|
9943
|
+
},
|
|
9944
|
+
{
|
|
9945
|
+
method: "GET",
|
|
9946
|
+
path: "/users",
|
|
9947
|
+
chain: "users",
|
|
9948
|
+
action: "list",
|
|
9949
|
+
aliases: [],
|
|
9950
|
+
pathParams: [],
|
|
9951
|
+
queryParams: ["email", "limit", "offset", "orderBy", "phoneNumber", "statusCd", "username"],
|
|
9952
|
+
edgeCache: true,
|
|
9953
|
+
responseSchema: UsersDataSchema,
|
|
9954
|
+
responseType: "array"
|
|
9955
|
+
},
|
|
9956
|
+
{
|
|
9957
|
+
method: "POST",
|
|
9958
|
+
path: "/users",
|
|
9959
|
+
chain: "users",
|
|
9960
|
+
action: "create",
|
|
9961
|
+
aliases: [],
|
|
9962
|
+
pathParams: [],
|
|
9963
|
+
queryParams: [],
|
|
9964
|
+
edgeCache: false,
|
|
9965
|
+
responseSchema: UsersDataSchema,
|
|
9966
|
+
responseType: "object"
|
|
9967
|
+
},
|
|
9968
|
+
{
|
|
9969
|
+
method: "POST",
|
|
9970
|
+
path: "/users/rotate",
|
|
9971
|
+
chain: "users.rotate",
|
|
9972
|
+
action: "create",
|
|
9973
|
+
aliases: [],
|
|
9974
|
+
pathParams: [],
|
|
9975
|
+
queryParams: [],
|
|
9976
|
+
edgeCache: false,
|
|
9977
|
+
responseSchema: UsersRotateDataSchema,
|
|
9978
|
+
responseType: "object"
|
|
9979
|
+
},
|
|
9980
|
+
{
|
|
9981
|
+
method: "POST",
|
|
9982
|
+
path: "/users/validate",
|
|
9983
|
+
chain: "users.validate",
|
|
9984
|
+
action: "create",
|
|
9985
|
+
aliases: [],
|
|
9986
|
+
pathParams: [],
|
|
9987
|
+
queryParams: [],
|
|
9988
|
+
edgeCache: false,
|
|
9989
|
+
responseSchema: UsersValidateDataSchema,
|
|
9990
|
+
responseType: "object"
|
|
9991
|
+
},
|
|
9992
|
+
{
|
|
9993
|
+
method: "POST",
|
|
9994
|
+
path: "/users/verify",
|
|
9995
|
+
chain: "users.verify",
|
|
9996
|
+
action: "create",
|
|
9997
|
+
aliases: [],
|
|
9998
|
+
pathParams: [],
|
|
9999
|
+
queryParams: [],
|
|
10000
|
+
edgeCache: false,
|
|
10001
|
+
responseSchema: UsersRotateDataSchema,
|
|
10002
|
+
responseType: "object"
|
|
10003
|
+
},
|
|
10004
|
+
{
|
|
10005
|
+
method: "GET",
|
|
10006
|
+
path: "/users/{usersUid}",
|
|
10007
|
+
chain: "users",
|
|
10008
|
+
action: "get",
|
|
10009
|
+
aliases: [],
|
|
10010
|
+
pathParams: ["usersUid"],
|
|
10011
|
+
queryParams: [],
|
|
10012
|
+
edgeCache: true,
|
|
10013
|
+
responseSchema: UsersDataSchema,
|
|
10014
|
+
responseType: "object"
|
|
10015
|
+
},
|
|
10016
|
+
{
|
|
10017
|
+
method: "PUT",
|
|
10018
|
+
path: "/users/{usersUid}",
|
|
10019
|
+
chain: "users",
|
|
10020
|
+
action: "update",
|
|
10021
|
+
aliases: [],
|
|
10022
|
+
pathParams: ["usersUid"],
|
|
10023
|
+
queryParams: [],
|
|
10024
|
+
edgeCache: false,
|
|
10025
|
+
responseSchema: UsersDataSchema,
|
|
10026
|
+
responseType: "object"
|
|
10027
|
+
},
|
|
10028
|
+
{
|
|
10029
|
+
method: "DELETE",
|
|
10030
|
+
path: "/users/{usersUid}",
|
|
10031
|
+
chain: "users",
|
|
10032
|
+
action: "delete",
|
|
10033
|
+
aliases: [],
|
|
10034
|
+
pathParams: ["usersUid"],
|
|
10035
|
+
queryParams: [],
|
|
10036
|
+
edgeCache: false,
|
|
10037
|
+
responseSchema: UsersDataSchema,
|
|
10038
|
+
responseType: "object"
|
|
10039
|
+
},
|
|
10040
|
+
{
|
|
10041
|
+
method: "GET",
|
|
10042
|
+
path: "/users/{usersUid}/roles",
|
|
10043
|
+
chain: "users.roles",
|
|
10044
|
+
action: "list",
|
|
10045
|
+
aliases: [],
|
|
10046
|
+
pathParams: ["usersUid"],
|
|
10047
|
+
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
10048
|
+
edgeCache: true,
|
|
10049
|
+
responseSchema: UsersRolesDataSchema,
|
|
10050
|
+
responseType: "array"
|
|
10051
|
+
},
|
|
10052
|
+
{
|
|
10053
|
+
method: "POST",
|
|
10054
|
+
path: "/users/{usersUid}/roles",
|
|
10055
|
+
chain: "users.roles",
|
|
10056
|
+
action: "create",
|
|
10057
|
+
aliases: [],
|
|
10058
|
+
pathParams: ["usersUid"],
|
|
10059
|
+
queryParams: [],
|
|
10060
|
+
edgeCache: false,
|
|
10061
|
+
responseSchema: UsersRolesDataSchema,
|
|
10062
|
+
responseType: "object"
|
|
10063
|
+
},
|
|
10064
|
+
{
|
|
10065
|
+
method: "GET",
|
|
10066
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10067
|
+
chain: "users.roles",
|
|
10068
|
+
action: "get",
|
|
10069
|
+
aliases: [],
|
|
10070
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10071
|
+
queryParams: [],
|
|
10072
|
+
edgeCache: true,
|
|
10073
|
+
responseSchema: UsersRolesDataSchema,
|
|
10074
|
+
responseType: "object"
|
|
10075
|
+
},
|
|
10076
|
+
{
|
|
10077
|
+
method: "PUT",
|
|
10078
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10079
|
+
chain: "users.roles",
|
|
10080
|
+
action: "update",
|
|
10081
|
+
aliases: [],
|
|
10082
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10083
|
+
queryParams: [],
|
|
10084
|
+
edgeCache: false,
|
|
10085
|
+
responseSchema: UsersRolesDataSchema,
|
|
10086
|
+
responseType: "object"
|
|
10087
|
+
},
|
|
10088
|
+
{
|
|
10089
|
+
method: "DELETE",
|
|
10090
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10091
|
+
chain: "users.roles",
|
|
10092
|
+
action: "delete",
|
|
10093
|
+
aliases: [],
|
|
10094
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10095
|
+
queryParams: [],
|
|
10096
|
+
edgeCache: false,
|
|
10097
|
+
responseSchema: UsersRolesDataSchema,
|
|
10098
|
+
responseType: "object"
|
|
10099
|
+
}
|
|
10100
|
+
];
|
|
10101
|
+
|
|
10102
|
+
// src/services/agr-int/client.ts
|
|
10103
|
+
var AgrIntClient = class extends BaseServiceClient {
|
|
10104
|
+
constructor(http, baseUrl = "https://agr-int.augur-api.com") {
|
|
10105
|
+
super("agr-int", http, baseUrl);
|
|
10106
|
+
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10107
|
+
return this.executeRequest(config, params, pathParams);
|
|
10108
|
+
};
|
|
10109
|
+
const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
|
|
10110
|
+
const dataProxy = createDataProxy(proxy);
|
|
10111
|
+
this.roles = proxy.roles;
|
|
10112
|
+
this.users = proxy.users;
|
|
10113
|
+
this.rolesData = dataProxy.roles;
|
|
10114
|
+
this.usersData = dataProxy.users;
|
|
10115
|
+
}
|
|
10116
|
+
getServiceDescription() {
|
|
10117
|
+
return "agr_int";
|
|
10118
|
+
}
|
|
10119
|
+
};
|
|
10120
|
+
|
|
9802
10121
|
// src/services/agr-work/resources/health-check.ts
|
|
9803
10122
|
function createHealthCheckResource15(executeRequest) {
|
|
9804
10123
|
return {
|
|
@@ -9968,11 +10287,11 @@ var AgrWorkClient = class extends BaseServiceClient {
|
|
|
9968
10287
|
};
|
|
9969
10288
|
|
|
9970
10289
|
// src/services/avalara/generated/schemas.ts
|
|
9971
|
-
var
|
|
9972
|
-
var
|
|
10290
|
+
var v23 = __toESM(require("valibot"));
|
|
10291
|
+
var PassthroughDataSchema16 = v23.record(v23.string(), v23.unknown());
|
|
9973
10292
|
|
|
9974
10293
|
// src/services/avalara/generated/endpoints.ts
|
|
9975
|
-
var
|
|
10294
|
+
var endpoints16 = [
|
|
9976
10295
|
{
|
|
9977
10296
|
method: "POST",
|
|
9978
10297
|
path: "/rates",
|
|
@@ -9982,7 +10301,7 @@ var endpoints15 = [
|
|
|
9982
10301
|
pathParams: [],
|
|
9983
10302
|
queryParams: [],
|
|
9984
10303
|
edgeCache: false,
|
|
9985
|
-
responseSchema:
|
|
10304
|
+
responseSchema: PassthroughDataSchema16,
|
|
9986
10305
|
responseType: "passthrough"
|
|
9987
10306
|
}
|
|
9988
10307
|
];
|
|
@@ -10055,7 +10374,7 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10055
10374
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10056
10375
|
return this.executeRequest(config, params, pathParams);
|
|
10057
10376
|
};
|
|
10058
|
-
const proxy = createServiceProxy("avalara", boundExecuteRequest,
|
|
10377
|
+
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
|
|
10059
10378
|
const dataProxy = createDataProxy(proxy);
|
|
10060
10379
|
this.rates = proxy.rates;
|
|
10061
10380
|
this.ratesData = dataProxy.rates;
|
|
@@ -10065,11 +10384,11 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10065
10384
|
};
|
|
10066
10385
|
|
|
10067
10386
|
// src/services/brand-folder/generated/schemas.ts
|
|
10068
|
-
var
|
|
10069
|
-
var
|
|
10387
|
+
var v24 = __toESM(require("valibot"));
|
|
10388
|
+
var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
|
|
10070
10389
|
|
|
10071
10390
|
// src/services/brand-folder/generated/endpoints.ts
|
|
10072
|
-
var
|
|
10391
|
+
var endpoints17 = [
|
|
10073
10392
|
{
|
|
10074
10393
|
method: "POST",
|
|
10075
10394
|
path: "/categories/focus",
|
|
@@ -10079,7 +10398,7 @@ var endpoints16 = [
|
|
|
10079
10398
|
pathParams: [],
|
|
10080
10399
|
queryParams: [],
|
|
10081
10400
|
edgeCache: false,
|
|
10082
|
-
responseSchema:
|
|
10401
|
+
responseSchema: PassthroughDataSchema17,
|
|
10083
10402
|
responseType: "passthrough"
|
|
10084
10403
|
}
|
|
10085
10404
|
];
|
|
@@ -10155,7 +10474,7 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10155
10474
|
const proxy = createServiceProxy(
|
|
10156
10475
|
"brand-folder",
|
|
10157
10476
|
boundExecuteRequest,
|
|
10158
|
-
|
|
10477
|
+
endpoints17
|
|
10159
10478
|
);
|
|
10160
10479
|
const dataProxy = createDataProxy(proxy);
|
|
10161
10480
|
this.categories = proxy.categories;
|
|
@@ -10169,15 +10488,15 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10169
10488
|
};
|
|
10170
10489
|
|
|
10171
10490
|
// src/services/gregorovich/generated/schemas.ts
|
|
10172
|
-
var
|
|
10173
|
-
var ChatGptAskGetParamsSchema =
|
|
10491
|
+
var v25 = __toESM(require("valibot"));
|
|
10492
|
+
var ChatGptAskGetParamsSchema = v25.looseObject({
|
|
10174
10493
|
...EdgeCacheParamsSchema.entries,
|
|
10175
|
-
question:
|
|
10494
|
+
question: v25.string()
|
|
10176
10495
|
});
|
|
10177
|
-
var
|
|
10496
|
+
var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
|
|
10178
10497
|
|
|
10179
10498
|
// src/services/gregorovich/generated/endpoints.ts
|
|
10180
|
-
var
|
|
10499
|
+
var endpoints18 = [
|
|
10181
10500
|
{
|
|
10182
10501
|
method: "GET",
|
|
10183
10502
|
path: "/chat-gpt/ask",
|
|
@@ -10187,7 +10506,7 @@ var endpoints17 = [
|
|
|
10187
10506
|
pathParams: [],
|
|
10188
10507
|
queryParams: ["question"],
|
|
10189
10508
|
edgeCache: true,
|
|
10190
|
-
responseSchema:
|
|
10509
|
+
responseSchema: PassthroughDataSchema18,
|
|
10191
10510
|
responseType: "passthrough"
|
|
10192
10511
|
},
|
|
10193
10512
|
{
|
|
@@ -10199,7 +10518,7 @@ var endpoints17 = [
|
|
|
10199
10518
|
pathParams: [],
|
|
10200
10519
|
queryParams: [],
|
|
10201
10520
|
edgeCache: true,
|
|
10202
|
-
responseSchema:
|
|
10521
|
+
responseSchema: PassthroughDataSchema18,
|
|
10203
10522
|
responseType: "passthrough"
|
|
10204
10523
|
},
|
|
10205
10524
|
{
|
|
@@ -10211,7 +10530,7 @@ var endpoints17 = [
|
|
|
10211
10530
|
pathParams: [],
|
|
10212
10531
|
queryParams: [],
|
|
10213
10532
|
edgeCache: false,
|
|
10214
|
-
responseSchema:
|
|
10533
|
+
responseSchema: PassthroughDataSchema18,
|
|
10215
10534
|
responseType: "passthrough"
|
|
10216
10535
|
}
|
|
10217
10536
|
];
|
|
@@ -10287,7 +10606,7 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10287
10606
|
const proxy = createServiceProxy(
|
|
10288
10607
|
"gregorovich",
|
|
10289
10608
|
boundExecuteRequest,
|
|
10290
|
-
|
|
10609
|
+
endpoints18
|
|
10291
10610
|
);
|
|
10292
10611
|
const dataProxy = createDataProxy(proxy);
|
|
10293
10612
|
this.chatGpt = proxy.chatGpt;
|
|
@@ -10302,139 +10621,139 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10302
10621
|
};
|
|
10303
10622
|
|
|
10304
10623
|
// src/services/logistics/generated/schemas.ts
|
|
10305
|
-
var
|
|
10306
|
-
var FedexRatesListParamsSchema =
|
|
10307
|
-
...EdgeCacheParamsSchema.entries,
|
|
10308
|
-
fromAddress1:
|
|
10309
|
-
fromCity:
|
|
10310
|
-
fromCountryCode:
|
|
10311
|
-
fromPostalCode:
|
|
10312
|
-
fromStateProvinceCode:
|
|
10313
|
-
toAddress1:
|
|
10314
|
-
toCity:
|
|
10315
|
-
toCountryCode:
|
|
10316
|
-
toPostalCode:
|
|
10317
|
-
toResidential:
|
|
10318
|
-
toStateProvinceCode:
|
|
10319
|
-
weight:
|
|
10320
|
-
});
|
|
10321
|
-
var RtsBrandsListParamsSchema =
|
|
10322
|
-
...EdgeCacheParamsSchema.entries,
|
|
10323
|
-
search:
|
|
10324
|
-
});
|
|
10325
|
-
var RtsBrandsBrandIdMachinesListParamsSchema =
|
|
10326
|
-
...EdgeCacheParamsSchema.entries,
|
|
10327
|
-
search:
|
|
10328
|
-
});
|
|
10329
|
-
var RtsSearchMachinesListParamsSchema =
|
|
10330
|
-
...EdgeCacheParamsSchema.entries,
|
|
10331
|
-
q:
|
|
10332
|
-
});
|
|
10333
|
-
var RtsTracksListParamsSchema =
|
|
10334
|
-
...EdgeCacheParamsSchema.entries,
|
|
10335
|
-
search:
|
|
10336
|
-
trackClass:
|
|
10337
|
-
});
|
|
10338
|
-
var ShipviaRatesListParamsSchema =
|
|
10339
|
-
...EdgeCacheParamsSchema.entries,
|
|
10340
|
-
carriers:
|
|
10341
|
-
dimensionUnit:
|
|
10342
|
-
fromCity:
|
|
10343
|
-
fromCountry:
|
|
10344
|
-
fromPostalCode:
|
|
10345
|
-
fromState:
|
|
10346
|
-
locationId:
|
|
10347
|
-
packageHeight:
|
|
10348
|
-
packageLength:
|
|
10349
|
-
packageWidth:
|
|
10350
|
-
residential:
|
|
10351
|
-
serviceType:
|
|
10352
|
-
toCity:
|
|
10353
|
-
toCountry:
|
|
10354
|
-
toPostalCode:
|
|
10355
|
-
toState:
|
|
10356
|
-
totalWeight:
|
|
10357
|
-
weightUnit:
|
|
10358
|
-
});
|
|
10359
|
-
var ShipviaRatesLtlListParamsSchema =
|
|
10360
|
-
...EdgeCacheParamsSchema.entries,
|
|
10361
|
-
carriers:
|
|
10362
|
-
commodityClass:
|
|
10363
|
-
commodityDescription:
|
|
10364
|
-
deliveryInstructions:
|
|
10365
|
-
dimensionUnit:
|
|
10366
|
-
fromCity:
|
|
10367
|
-
fromCountry:
|
|
10368
|
-
fromPostalCode:
|
|
10369
|
-
fromState:
|
|
10370
|
-
isHazMat:
|
|
10371
|
-
locationId:
|
|
10372
|
-
packageHeight:
|
|
10373
|
-
packageLength:
|
|
10374
|
-
packageWidth:
|
|
10375
|
-
packagingType:
|
|
10376
|
-
pickupInstructions:
|
|
10377
|
-
quantity:
|
|
10378
|
-
toCity:
|
|
10379
|
-
toCountry:
|
|
10380
|
-
toPostalCode:
|
|
10381
|
-
toState:
|
|
10382
|
-
totalWeight:
|
|
10383
|
-
weightUnit:
|
|
10384
|
-
});
|
|
10385
|
-
var SpeedshipFreightListParamsSchema =
|
|
10386
|
-
...EdgeCacheParamsSchema.entries,
|
|
10387
|
-
deliveryInstructions:
|
|
10388
|
-
dimensionUnit:
|
|
10389
|
-
fromAddressLine:
|
|
10390
|
-
fromCity:
|
|
10391
|
-
fromCompanyName:
|
|
10392
|
-
fromCountryCode:
|
|
10393
|
-
fromFirstName:
|
|
10394
|
-
fromLastName:
|
|
10395
|
-
fromPhone:
|
|
10396
|
-
fromPostalCode:
|
|
10397
|
-
fromState:
|
|
10398
|
-
handlingCharge:
|
|
10399
|
-
handlingChargeUnit:
|
|
10400
|
-
international:
|
|
10401
|
-
packageHeight:
|
|
10402
|
-
packageLength:
|
|
10403
|
-
packageWidth:
|
|
10404
|
-
pickupInstructions:
|
|
10405
|
-
productType:
|
|
10406
|
-
quantity:
|
|
10407
|
-
responseFormat:
|
|
10408
|
-
toAddressLine:
|
|
10409
|
-
toCity:
|
|
10410
|
-
toCompanyName:
|
|
10411
|
-
toCountryCode:
|
|
10412
|
-
toFirstName:
|
|
10413
|
-
toLastName:
|
|
10414
|
-
toPhone:
|
|
10415
|
-
toPostalCode:
|
|
10416
|
-
toRegion:
|
|
10417
|
-
totalWeight:
|
|
10418
|
-
weightUnit:
|
|
10419
|
-
});
|
|
10420
|
-
var UPSRatesListParamsSchema =
|
|
10421
|
-
...EdgeCacheParamsSchema.entries,
|
|
10422
|
-
fromAddress1:
|
|
10423
|
-
fromCity:
|
|
10424
|
-
fromCountryCode:
|
|
10425
|
-
fromPostalCode:
|
|
10426
|
-
fromStateProvinceCode:
|
|
10427
|
-
toAddress1:
|
|
10428
|
-
toCity:
|
|
10429
|
-
toCountryCode:
|
|
10430
|
-
toPostalCode:
|
|
10431
|
-
toStateProvinceCode:
|
|
10432
|
-
weight:
|
|
10624
|
+
var v26 = __toESM(require("valibot"));
|
|
10625
|
+
var FedexRatesListParamsSchema = v26.looseObject({
|
|
10626
|
+
...EdgeCacheParamsSchema.entries,
|
|
10627
|
+
fromAddress1: v26.string(),
|
|
10628
|
+
fromCity: v26.string(),
|
|
10629
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10630
|
+
fromPostalCode: v26.string(),
|
|
10631
|
+
fromStateProvinceCode: v26.string(),
|
|
10632
|
+
toAddress1: v26.string(),
|
|
10633
|
+
toCity: v26.string(),
|
|
10634
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10635
|
+
toPostalCode: v26.string(),
|
|
10636
|
+
toResidential: v26.optional(v26.boolean()),
|
|
10637
|
+
toStateProvinceCode: v26.string(),
|
|
10638
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10639
|
+
});
|
|
10640
|
+
var RtsBrandsListParamsSchema = v26.looseObject({
|
|
10641
|
+
...EdgeCacheParamsSchema.entries,
|
|
10642
|
+
search: v26.optional(v26.string())
|
|
10643
|
+
});
|
|
10644
|
+
var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
|
|
10645
|
+
...EdgeCacheParamsSchema.entries,
|
|
10646
|
+
search: v26.optional(v26.string())
|
|
10647
|
+
});
|
|
10648
|
+
var RtsSearchMachinesListParamsSchema = v26.looseObject({
|
|
10649
|
+
...EdgeCacheParamsSchema.entries,
|
|
10650
|
+
q: v26.string()
|
|
10651
|
+
});
|
|
10652
|
+
var RtsTracksListParamsSchema = v26.looseObject({
|
|
10653
|
+
...EdgeCacheParamsSchema.entries,
|
|
10654
|
+
search: v26.optional(v26.string()),
|
|
10655
|
+
trackClass: v26.optional(v26.string())
|
|
10656
|
+
});
|
|
10657
|
+
var ShipviaRatesListParamsSchema = v26.looseObject({
|
|
10658
|
+
...EdgeCacheParamsSchema.entries,
|
|
10659
|
+
carriers: v26.optional(v26.string()),
|
|
10660
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10661
|
+
fromCity: v26.optional(v26.string()),
|
|
10662
|
+
fromCountry: v26.optional(v26.string()),
|
|
10663
|
+
fromPostalCode: v26.string(),
|
|
10664
|
+
fromState: v26.optional(v26.string()),
|
|
10665
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10666
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10667
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10668
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10669
|
+
residential: v26.optional(v26.boolean()),
|
|
10670
|
+
serviceType: v26.optional(v26.string()),
|
|
10671
|
+
toCity: v26.optional(v26.string()),
|
|
10672
|
+
toCountry: v26.optional(v26.string()),
|
|
10673
|
+
toPostalCode: v26.string(),
|
|
10674
|
+
toState: v26.optional(v26.string()),
|
|
10675
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10676
|
+
weightUnit: v26.string()
|
|
10677
|
+
});
|
|
10678
|
+
var ShipviaRatesLtlListParamsSchema = v26.looseObject({
|
|
10679
|
+
...EdgeCacheParamsSchema.entries,
|
|
10680
|
+
carriers: v26.optional(v26.string()),
|
|
10681
|
+
commodityClass: v26.string(),
|
|
10682
|
+
commodityDescription: v26.string(),
|
|
10683
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10684
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10685
|
+
fromCity: v26.optional(v26.string()),
|
|
10686
|
+
fromCountry: v26.optional(v26.string()),
|
|
10687
|
+
fromPostalCode: v26.string(),
|
|
10688
|
+
fromState: v26.optional(v26.string()),
|
|
10689
|
+
isHazMat: v26.optional(v26.boolean()),
|
|
10690
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10691
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10692
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10693
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10694
|
+
packagingType: v26.string(),
|
|
10695
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10696
|
+
quantity: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10697
|
+
toCity: v26.optional(v26.string()),
|
|
10698
|
+
toCountry: v26.optional(v26.string()),
|
|
10699
|
+
toPostalCode: v26.string(),
|
|
10700
|
+
toState: v26.optional(v26.string()),
|
|
10701
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10702
|
+
weightUnit: v26.string()
|
|
10703
|
+
});
|
|
10704
|
+
var SpeedshipFreightListParamsSchema = v26.looseObject({
|
|
10705
|
+
...EdgeCacheParamsSchema.entries,
|
|
10706
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10707
|
+
dimensionUnit: v26.string(),
|
|
10708
|
+
fromAddressLine: v26.string(),
|
|
10709
|
+
fromCity: v26.string(),
|
|
10710
|
+
fromCompanyName: v26.string(),
|
|
10711
|
+
fromCountryCode: v26.string(),
|
|
10712
|
+
fromFirstName: v26.string(),
|
|
10713
|
+
fromLastName: v26.string(),
|
|
10714
|
+
fromPhone: v26.string(),
|
|
10715
|
+
fromPostalCode: v26.string(),
|
|
10716
|
+
fromState: v26.string(),
|
|
10717
|
+
handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10718
|
+
handlingChargeUnit: v26.optional(v26.string()),
|
|
10719
|
+
international: v26.optional(v26.boolean()),
|
|
10720
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10721
|
+
packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10722
|
+
packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10723
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10724
|
+
productType: v26.string(),
|
|
10725
|
+
quantity: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10726
|
+
responseFormat: v26.string(),
|
|
10727
|
+
toAddressLine: v26.string(),
|
|
10728
|
+
toCity: v26.string(),
|
|
10729
|
+
toCompanyName: v26.string(),
|
|
10730
|
+
toCountryCode: v26.string(),
|
|
10731
|
+
toFirstName: v26.string(),
|
|
10732
|
+
toLastName: v26.string(),
|
|
10733
|
+
toPhone: v26.string(),
|
|
10734
|
+
toPostalCode: v26.string(),
|
|
10735
|
+
toRegion: v26.string(),
|
|
10736
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10737
|
+
weightUnit: v26.string()
|
|
10738
|
+
});
|
|
10739
|
+
var UPSRatesListParamsSchema = v26.looseObject({
|
|
10740
|
+
...EdgeCacheParamsSchema.entries,
|
|
10741
|
+
fromAddress1: v26.string(),
|
|
10742
|
+
fromCity: v26.string(),
|
|
10743
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10744
|
+
fromPostalCode: v26.string(),
|
|
10745
|
+
fromStateProvinceCode: v26.string(),
|
|
10746
|
+
toAddress1: v26.string(),
|
|
10747
|
+
toCity: v26.string(),
|
|
10748
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10749
|
+
toPostalCode: v26.string(),
|
|
10750
|
+
toStateProvinceCode: v26.string(),
|
|
10751
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10433
10752
|
});
|
|
10434
|
-
var
|
|
10753
|
+
var PassthroughDataSchema19 = v26.record(v26.string(), v26.unknown());
|
|
10435
10754
|
|
|
10436
10755
|
// src/services/logistics/generated/endpoints.ts
|
|
10437
|
-
var
|
|
10756
|
+
var endpoints19 = [
|
|
10438
10757
|
{
|
|
10439
10758
|
method: "GET",
|
|
10440
10759
|
path: "/fedex/rates",
|
|
@@ -10457,7 +10776,7 @@ var endpoints18 = [
|
|
|
10457
10776
|
"weight"
|
|
10458
10777
|
],
|
|
10459
10778
|
edgeCache: true,
|
|
10460
|
-
responseSchema:
|
|
10779
|
+
responseSchema: PassthroughDataSchema19,
|
|
10461
10780
|
responseType: "passthrough"
|
|
10462
10781
|
},
|
|
10463
10782
|
{
|
|
@@ -10469,7 +10788,7 @@ var endpoints18 = [
|
|
|
10469
10788
|
pathParams: [],
|
|
10470
10789
|
queryParams: ["search"],
|
|
10471
10790
|
edgeCache: true,
|
|
10472
|
-
responseSchema:
|
|
10791
|
+
responseSchema: PassthroughDataSchema19,
|
|
10473
10792
|
responseType: "passthrough"
|
|
10474
10793
|
},
|
|
10475
10794
|
{
|
|
@@ -10481,7 +10800,7 @@ var endpoints18 = [
|
|
|
10481
10800
|
pathParams: ["brandId"],
|
|
10482
10801
|
queryParams: ["search"],
|
|
10483
10802
|
edgeCache: true,
|
|
10484
|
-
responseSchema:
|
|
10803
|
+
responseSchema: PassthroughDataSchema19,
|
|
10485
10804
|
responseType: "passthrough"
|
|
10486
10805
|
},
|
|
10487
10806
|
{
|
|
@@ -10493,7 +10812,7 @@ var endpoints18 = [
|
|
|
10493
10812
|
pathParams: ["machineId"],
|
|
10494
10813
|
queryParams: [],
|
|
10495
10814
|
edgeCache: true,
|
|
10496
|
-
responseSchema:
|
|
10815
|
+
responseSchema: PassthroughDataSchema19,
|
|
10497
10816
|
responseType: "passthrough"
|
|
10498
10817
|
},
|
|
10499
10818
|
{
|
|
@@ -10505,7 +10824,7 @@ var endpoints18 = [
|
|
|
10505
10824
|
pathParams: [],
|
|
10506
10825
|
queryParams: ["q"],
|
|
10507
10826
|
edgeCache: true,
|
|
10508
|
-
responseSchema:
|
|
10827
|
+
responseSchema: PassthroughDataSchema19,
|
|
10509
10828
|
responseType: "passthrough"
|
|
10510
10829
|
},
|
|
10511
10830
|
{
|
|
@@ -10517,7 +10836,7 @@ var endpoints18 = [
|
|
|
10517
10836
|
pathParams: ["trackId"],
|
|
10518
10837
|
queryParams: [],
|
|
10519
10838
|
edgeCache: true,
|
|
10520
|
-
responseSchema:
|
|
10839
|
+
responseSchema: PassthroughDataSchema19,
|
|
10521
10840
|
responseType: "passthrough"
|
|
10522
10841
|
},
|
|
10523
10842
|
{
|
|
@@ -10529,7 +10848,7 @@ var endpoints18 = [
|
|
|
10529
10848
|
pathParams: [],
|
|
10530
10849
|
queryParams: ["search", "trackClass"],
|
|
10531
10850
|
edgeCache: true,
|
|
10532
|
-
responseSchema:
|
|
10851
|
+
responseSchema: PassthroughDataSchema19,
|
|
10533
10852
|
responseType: "passthrough"
|
|
10534
10853
|
},
|
|
10535
10854
|
{
|
|
@@ -10560,7 +10879,7 @@ var endpoints18 = [
|
|
|
10560
10879
|
"weightUnit"
|
|
10561
10880
|
],
|
|
10562
10881
|
edgeCache: true,
|
|
10563
|
-
responseSchema:
|
|
10882
|
+
responseSchema: PassthroughDataSchema19,
|
|
10564
10883
|
responseType: "passthrough"
|
|
10565
10884
|
},
|
|
10566
10885
|
{
|
|
@@ -10596,7 +10915,7 @@ var endpoints18 = [
|
|
|
10596
10915
|
"weightUnit"
|
|
10597
10916
|
],
|
|
10598
10917
|
edgeCache: true,
|
|
10599
|
-
responseSchema:
|
|
10918
|
+
responseSchema: PassthroughDataSchema19,
|
|
10600
10919
|
responseType: "passthrough"
|
|
10601
10920
|
},
|
|
10602
10921
|
{
|
|
@@ -10641,7 +10960,7 @@ var endpoints18 = [
|
|
|
10641
10960
|
"weightUnit"
|
|
10642
10961
|
],
|
|
10643
10962
|
edgeCache: true,
|
|
10644
|
-
responseSchema:
|
|
10963
|
+
responseSchema: PassthroughDataSchema19,
|
|
10645
10964
|
responseType: "passthrough"
|
|
10646
10965
|
},
|
|
10647
10966
|
{
|
|
@@ -10665,7 +10984,7 @@ var endpoints18 = [
|
|
|
10665
10984
|
"weight"
|
|
10666
10985
|
],
|
|
10667
10986
|
edgeCache: true,
|
|
10668
|
-
responseSchema:
|
|
10987
|
+
responseSchema: PassthroughDataSchema19,
|
|
10669
10988
|
responseType: "passthrough"
|
|
10670
10989
|
}
|
|
10671
10990
|
];
|
|
@@ -10808,7 +11127,7 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10808
11127
|
const proxy = createServiceProxy(
|
|
10809
11128
|
"logistics",
|
|
10810
11129
|
boundExecuteRequest,
|
|
10811
|
-
|
|
11130
|
+
endpoints19
|
|
10812
11131
|
);
|
|
10813
11132
|
const dataProxy = createDataProxy(proxy);
|
|
10814
11133
|
this.fedex = proxy.fedex;
|
|
@@ -10832,51 +11151,51 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10832
11151
|
};
|
|
10833
11152
|
|
|
10834
11153
|
// src/services/p21-apis/generated/schemas.ts
|
|
10835
|
-
var
|
|
10836
|
-
var TransCategoryGetParamsSchema =
|
|
11154
|
+
var v27 = __toESM(require("valibot"));
|
|
11155
|
+
var TransCategoryGetParamsSchema = v27.looseObject({
|
|
10837
11156
|
...EdgeCacheParamsSchema.entries,
|
|
10838
|
-
category_id:
|
|
11157
|
+
category_id: v27.optional(v27.string())
|
|
10839
11158
|
});
|
|
10840
|
-
var TransCategoryUpdateParamsSchema =
|
|
10841
|
-
category_id:
|
|
11159
|
+
var TransCategoryUpdateParamsSchema = v27.looseObject({
|
|
11160
|
+
category_id: v27.optional(v27.string())
|
|
10842
11161
|
});
|
|
10843
|
-
var TransCategoryDeleteParamsSchema =
|
|
10844
|
-
category_id:
|
|
11162
|
+
var TransCategoryDeleteParamsSchema = v27.looseObject({
|
|
11163
|
+
category_id: v27.optional(v27.string())
|
|
10845
11164
|
});
|
|
10846
|
-
var TransCompanyGetParamsSchema =
|
|
11165
|
+
var TransCompanyGetParamsSchema = v27.looseObject({
|
|
10847
11166
|
...EdgeCacheParamsSchema.entries,
|
|
10848
|
-
company_id:
|
|
11167
|
+
company_id: v27.optional(v27.string())
|
|
10849
11168
|
});
|
|
10850
|
-
var TransCompanyUpdateParamsSchema =
|
|
10851
|
-
company_id:
|
|
11169
|
+
var TransCompanyUpdateParamsSchema = v27.looseObject({
|
|
11170
|
+
company_id: v27.optional(v27.string())
|
|
10852
11171
|
});
|
|
10853
|
-
var TransCompanyDeleteParamsSchema =
|
|
10854
|
-
company_id:
|
|
11172
|
+
var TransCompanyDeleteParamsSchema = v27.looseObject({
|
|
11173
|
+
company_id: v27.optional(v27.string())
|
|
10855
11174
|
});
|
|
10856
|
-
var TransUserGetParamsSchema =
|
|
11175
|
+
var TransUserGetParamsSchema = v27.looseObject({
|
|
10857
11176
|
...EdgeCacheParamsSchema.entries,
|
|
10858
|
-
user_id:
|
|
11177
|
+
user_id: v27.optional(v27.string())
|
|
10859
11178
|
});
|
|
10860
|
-
var TransUserUpdateParamsSchema =
|
|
10861
|
-
user_id:
|
|
11179
|
+
var TransUserUpdateParamsSchema = v27.looseObject({
|
|
11180
|
+
user_id: v27.optional(v27.string())
|
|
10862
11181
|
});
|
|
10863
|
-
var TransUserDeleteParamsSchema =
|
|
10864
|
-
user_id:
|
|
11182
|
+
var TransUserDeleteParamsSchema = v27.looseObject({
|
|
11183
|
+
user_id: v27.optional(v27.string())
|
|
10865
11184
|
});
|
|
10866
|
-
var TransWebDisplayTypeGetParamsSchema =
|
|
11185
|
+
var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
|
|
10867
11186
|
...EdgeCacheParamsSchema.entries,
|
|
10868
|
-
web_display_type_id:
|
|
11187
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10869
11188
|
});
|
|
10870
|
-
var TransWebDisplayTypeUpdateParamsSchema =
|
|
10871
|
-
web_display_type_id:
|
|
11189
|
+
var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
|
|
11190
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10872
11191
|
});
|
|
10873
|
-
var TransWebDisplayTypeDeleteParamsSchema =
|
|
10874
|
-
web_display_type_id:
|
|
11192
|
+
var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
|
|
11193
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10875
11194
|
});
|
|
10876
|
-
var
|
|
11195
|
+
var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
|
|
10877
11196
|
|
|
10878
11197
|
// src/services/p21-apis/generated/endpoints.ts
|
|
10879
|
-
var
|
|
11198
|
+
var endpoints20 = [
|
|
10880
11199
|
{
|
|
10881
11200
|
method: "GET",
|
|
10882
11201
|
path: "/entity-contacts/refresh",
|
|
@@ -10886,7 +11205,7 @@ var endpoints19 = [
|
|
|
10886
11205
|
pathParams: [],
|
|
10887
11206
|
queryParams: [],
|
|
10888
11207
|
edgeCache: true,
|
|
10889
|
-
responseSchema:
|
|
11208
|
+
responseSchema: PassthroughDataSchema20,
|
|
10890
11209
|
responseType: "passthrough"
|
|
10891
11210
|
},
|
|
10892
11211
|
{
|
|
@@ -10898,7 +11217,7 @@ var endpoints19 = [
|
|
|
10898
11217
|
pathParams: [],
|
|
10899
11218
|
queryParams: [],
|
|
10900
11219
|
edgeCache: true,
|
|
10901
|
-
responseSchema:
|
|
11220
|
+
responseSchema: PassthroughDataSchema20,
|
|
10902
11221
|
responseType: "passthrough"
|
|
10903
11222
|
},
|
|
10904
11223
|
{
|
|
@@ -10910,7 +11229,7 @@ var endpoints19 = [
|
|
|
10910
11229
|
pathParams: [],
|
|
10911
11230
|
queryParams: [],
|
|
10912
11231
|
edgeCache: false,
|
|
10913
|
-
responseSchema:
|
|
11232
|
+
responseSchema: PassthroughDataSchema20,
|
|
10914
11233
|
responseType: "passthrough"
|
|
10915
11234
|
},
|
|
10916
11235
|
{
|
|
@@ -10922,7 +11241,7 @@ var endpoints19 = [
|
|
|
10922
11241
|
pathParams: ["categoryUid"],
|
|
10923
11242
|
queryParams: ["category_id"],
|
|
10924
11243
|
edgeCache: true,
|
|
10925
|
-
responseSchema:
|
|
11244
|
+
responseSchema: PassthroughDataSchema20,
|
|
10926
11245
|
responseType: "passthrough"
|
|
10927
11246
|
},
|
|
10928
11247
|
{
|
|
@@ -10934,7 +11253,7 @@ var endpoints19 = [
|
|
|
10934
11253
|
pathParams: ["categoryUid"],
|
|
10935
11254
|
queryParams: ["category_id"],
|
|
10936
11255
|
edgeCache: false,
|
|
10937
|
-
responseSchema:
|
|
11256
|
+
responseSchema: PassthroughDataSchema20,
|
|
10938
11257
|
responseType: "passthrough"
|
|
10939
11258
|
},
|
|
10940
11259
|
{
|
|
@@ -10946,7 +11265,7 @@ var endpoints19 = [
|
|
|
10946
11265
|
pathParams: ["categoryUid"],
|
|
10947
11266
|
queryParams: ["category_id"],
|
|
10948
11267
|
edgeCache: false,
|
|
10949
|
-
responseSchema:
|
|
11268
|
+
responseSchema: PassthroughDataSchema20,
|
|
10950
11269
|
responseType: "passthrough"
|
|
10951
11270
|
},
|
|
10952
11271
|
{
|
|
@@ -10958,7 +11277,7 @@ var endpoints19 = [
|
|
|
10958
11277
|
pathParams: [],
|
|
10959
11278
|
queryParams: [],
|
|
10960
11279
|
edgeCache: false,
|
|
10961
|
-
responseSchema:
|
|
11280
|
+
responseSchema: PassthroughDataSchema20,
|
|
10962
11281
|
responseType: "passthrough"
|
|
10963
11282
|
},
|
|
10964
11283
|
{
|
|
@@ -10970,7 +11289,7 @@ var endpoints19 = [
|
|
|
10970
11289
|
pathParams: ["companyUid"],
|
|
10971
11290
|
queryParams: ["company_id"],
|
|
10972
11291
|
edgeCache: true,
|
|
10973
|
-
responseSchema:
|
|
11292
|
+
responseSchema: PassthroughDataSchema20,
|
|
10974
11293
|
responseType: "passthrough"
|
|
10975
11294
|
},
|
|
10976
11295
|
{
|
|
@@ -10982,7 +11301,7 @@ var endpoints19 = [
|
|
|
10982
11301
|
pathParams: ["companyUid"],
|
|
10983
11302
|
queryParams: ["company_id"],
|
|
10984
11303
|
edgeCache: false,
|
|
10985
|
-
responseSchema:
|
|
11304
|
+
responseSchema: PassthroughDataSchema20,
|
|
10986
11305
|
responseType: "passthrough"
|
|
10987
11306
|
},
|
|
10988
11307
|
{
|
|
@@ -10994,7 +11313,7 @@ var endpoints19 = [
|
|
|
10994
11313
|
pathParams: ["companyUid"],
|
|
10995
11314
|
queryParams: ["company_id"],
|
|
10996
11315
|
edgeCache: false,
|
|
10997
|
-
responseSchema:
|
|
11316
|
+
responseSchema: PassthroughDataSchema20,
|
|
10998
11317
|
responseType: "passthrough"
|
|
10999
11318
|
},
|
|
11000
11319
|
{
|
|
@@ -11006,7 +11325,7 @@ var endpoints19 = [
|
|
|
11006
11325
|
pathParams: ["poNo"],
|
|
11007
11326
|
queryParams: [],
|
|
11008
11327
|
edgeCache: true,
|
|
11009
|
-
responseSchema:
|
|
11328
|
+
responseSchema: PassthroughDataSchema20,
|
|
11010
11329
|
responseType: "passthrough"
|
|
11011
11330
|
},
|
|
11012
11331
|
{
|
|
@@ -11018,7 +11337,7 @@ var endpoints19 = [
|
|
|
11018
11337
|
pathParams: ["poNo"],
|
|
11019
11338
|
queryParams: [],
|
|
11020
11339
|
edgeCache: false,
|
|
11021
|
-
responseSchema:
|
|
11340
|
+
responseSchema: PassthroughDataSchema20,
|
|
11022
11341
|
responseType: "passthrough"
|
|
11023
11342
|
},
|
|
11024
11343
|
{
|
|
@@ -11030,7 +11349,7 @@ var endpoints19 = [
|
|
|
11030
11349
|
pathParams: [],
|
|
11031
11350
|
queryParams: [],
|
|
11032
11351
|
edgeCache: false,
|
|
11033
|
-
responseSchema:
|
|
11352
|
+
responseSchema: PassthroughDataSchema20,
|
|
11034
11353
|
responseType: "passthrough"
|
|
11035
11354
|
},
|
|
11036
11355
|
{
|
|
@@ -11042,7 +11361,7 @@ var endpoints19 = [
|
|
|
11042
11361
|
pathParams: ["usersUid"],
|
|
11043
11362
|
queryParams: ["user_id"],
|
|
11044
11363
|
edgeCache: true,
|
|
11045
|
-
responseSchema:
|
|
11364
|
+
responseSchema: PassthroughDataSchema20,
|
|
11046
11365
|
responseType: "passthrough"
|
|
11047
11366
|
},
|
|
11048
11367
|
{
|
|
@@ -11054,7 +11373,7 @@ var endpoints19 = [
|
|
|
11054
11373
|
pathParams: ["usersUid"],
|
|
11055
11374
|
queryParams: ["user_id"],
|
|
11056
11375
|
edgeCache: false,
|
|
11057
|
-
responseSchema:
|
|
11376
|
+
responseSchema: PassthroughDataSchema20,
|
|
11058
11377
|
responseType: "passthrough"
|
|
11059
11378
|
},
|
|
11060
11379
|
{
|
|
@@ -11066,7 +11385,7 @@ var endpoints19 = [
|
|
|
11066
11385
|
pathParams: ["usersUid"],
|
|
11067
11386
|
queryParams: ["user_id"],
|
|
11068
11387
|
edgeCache: false,
|
|
11069
|
-
responseSchema:
|
|
11388
|
+
responseSchema: PassthroughDataSchema20,
|
|
11070
11389
|
responseType: "passthrough"
|
|
11071
11390
|
},
|
|
11072
11391
|
{
|
|
@@ -11078,7 +11397,7 @@ var endpoints19 = [
|
|
|
11078
11397
|
pathParams: [],
|
|
11079
11398
|
queryParams: [],
|
|
11080
11399
|
edgeCache: false,
|
|
11081
|
-
responseSchema:
|
|
11400
|
+
responseSchema: PassthroughDataSchema20,
|
|
11082
11401
|
responseType: "passthrough"
|
|
11083
11402
|
},
|
|
11084
11403
|
{
|
|
@@ -11090,7 +11409,7 @@ var endpoints19 = [
|
|
|
11090
11409
|
pathParams: [],
|
|
11091
11410
|
queryParams: [],
|
|
11092
11411
|
edgeCache: true,
|
|
11093
|
-
responseSchema:
|
|
11412
|
+
responseSchema: PassthroughDataSchema20,
|
|
11094
11413
|
responseType: "passthrough"
|
|
11095
11414
|
},
|
|
11096
11415
|
{
|
|
@@ -11102,7 +11421,7 @@ var endpoints19 = [
|
|
|
11102
11421
|
pathParams: [],
|
|
11103
11422
|
queryParams: [],
|
|
11104
11423
|
edgeCache: true,
|
|
11105
|
-
responseSchema:
|
|
11424
|
+
responseSchema: PassthroughDataSchema20,
|
|
11106
11425
|
responseType: "passthrough"
|
|
11107
11426
|
},
|
|
11108
11427
|
{
|
|
@@ -11114,7 +11433,7 @@ var endpoints19 = [
|
|
|
11114
11433
|
pathParams: ["webDisplayTypeUid"],
|
|
11115
11434
|
queryParams: ["web_display_type_id"],
|
|
11116
11435
|
edgeCache: true,
|
|
11117
|
-
responseSchema:
|
|
11436
|
+
responseSchema: PassthroughDataSchema20,
|
|
11118
11437
|
responseType: "passthrough"
|
|
11119
11438
|
},
|
|
11120
11439
|
{
|
|
@@ -11126,7 +11445,7 @@ var endpoints19 = [
|
|
|
11126
11445
|
pathParams: ["webDisplayTypeUid"],
|
|
11127
11446
|
queryParams: ["web_display_type_id"],
|
|
11128
11447
|
edgeCache: false,
|
|
11129
|
-
responseSchema:
|
|
11448
|
+
responseSchema: PassthroughDataSchema20,
|
|
11130
11449
|
responseType: "passthrough"
|
|
11131
11450
|
},
|
|
11132
11451
|
{
|
|
@@ -11138,7 +11457,7 @@ var endpoints19 = [
|
|
|
11138
11457
|
pathParams: ["webDisplayTypeUid"],
|
|
11139
11458
|
queryParams: ["web_display_type_id"],
|
|
11140
11459
|
edgeCache: false,
|
|
11141
|
-
responseSchema:
|
|
11460
|
+
responseSchema: PassthroughDataSchema20,
|
|
11142
11461
|
responseType: "passthrough"
|
|
11143
11462
|
}
|
|
11144
11463
|
];
|
|
@@ -11197,7 +11516,7 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11197
11516
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11198
11517
|
return this.executeRequest(config, params, pathParams);
|
|
11199
11518
|
};
|
|
11200
|
-
const proxy = createServiceProxy("p21-apis", boundExecuteRequest,
|
|
11519
|
+
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
|
|
11201
11520
|
const dataProxy = createDataProxy(proxy);
|
|
11202
11521
|
this.entityContacts = proxy.entityContacts;
|
|
11203
11522
|
this.entityCustomers = proxy.entityCustomers;
|
|
@@ -11222,150 +11541,150 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11222
11541
|
};
|
|
11223
11542
|
|
|
11224
11543
|
// src/services/p21-core/generated/schemas.ts
|
|
11225
|
-
var
|
|
11226
|
-
var AddressListParamsSchema =
|
|
11227
|
-
...EdgeCacheParamsSchema.entries,
|
|
11228
|
-
carrierFlag:
|
|
11229
|
-
defaultCd:
|
|
11230
|
-
enabledCd:
|
|
11231
|
-
limit:
|
|
11232
|
-
offset:
|
|
11233
|
-
statusCd:
|
|
11234
|
-
});
|
|
11235
|
-
var AddressCorpAddressListParamsSchema =
|
|
11236
|
-
...EdgeCacheParamsSchema.entries,
|
|
11237
|
-
limit:
|
|
11238
|
-
offset:
|
|
11239
|
-
q:
|
|
11240
|
-
});
|
|
11241
|
-
var AddressEnableGetParamsSchema =
|
|
11242
|
-
...EdgeCacheParamsSchema.entries,
|
|
11243
|
-
enabledCd:
|
|
11244
|
-
});
|
|
11245
|
-
var CashDrawerListParamsSchema =
|
|
11246
|
-
...EdgeCacheParamsSchema.entries,
|
|
11247
|
-
companyId:
|
|
11248
|
-
drawerOpen:
|
|
11249
|
-
limit:
|
|
11250
|
-
offset:
|
|
11251
|
-
orderBy:
|
|
11252
|
-
q:
|
|
11253
|
-
statusCd:
|
|
11254
|
-
});
|
|
11255
|
-
var CodeP21ListParamsSchema =
|
|
11256
|
-
...EdgeCacheParamsSchema.entries,
|
|
11257
|
-
codeNoList:
|
|
11258
|
-
limit:
|
|
11259
|
-
offset:
|
|
11260
|
-
q:
|
|
11261
|
-
});
|
|
11262
|
-
var CompanyListParamsSchema =
|
|
11263
|
-
...EdgeCacheParamsSchema.entries,
|
|
11264
|
-
companyId:
|
|
11265
|
-
limit:
|
|
11266
|
-
offset:
|
|
11267
|
-
orderBy:
|
|
11268
|
-
q:
|
|
11269
|
-
});
|
|
11270
|
-
var CompanyGetParamsSchema =
|
|
11271
|
-
...EdgeCacheParamsSchema.entries,
|
|
11272
|
-
companyId:
|
|
11273
|
-
});
|
|
11274
|
-
var LocationListParamsSchema =
|
|
11275
|
-
...EdgeCacheParamsSchema.entries,
|
|
11276
|
-
deleteFlag:
|
|
11277
|
-
includeAddress:
|
|
11278
|
-
limit:
|
|
11279
|
-
offset:
|
|
11280
|
-
orderBy:
|
|
11281
|
-
q:
|
|
11282
|
-
});
|
|
11283
|
-
var LocationGetParamsSchema =
|
|
11284
|
-
...EdgeCacheParamsSchema.entries,
|
|
11285
|
-
includeAddress:
|
|
11286
|
-
});
|
|
11287
|
-
var PaymentTypesListParamsSchema =
|
|
11288
|
-
...EdgeCacheParamsSchema.entries,
|
|
11289
|
-
limit:
|
|
11290
|
-
offset:
|
|
11291
|
-
});
|
|
11292
|
-
var CashDrawerDataSchema =
|
|
11293
|
-
cashDrawerId:
|
|
11294
|
-
companyId:
|
|
11295
|
-
cashDrawerDescription:
|
|
11296
|
-
currentSequenceNo:
|
|
11297
|
-
openingBalance:
|
|
11298
|
-
withdrawals:
|
|
11299
|
-
deposits:
|
|
11300
|
-
currentBalance:
|
|
11301
|
-
drawerOpen:
|
|
11302
|
-
bankNo:
|
|
11303
|
-
cashOnHandAccountNumber:
|
|
11304
|
-
deleteFlag:
|
|
11305
|
-
dateCreated:
|
|
11306
|
-
dateLastModified:
|
|
11307
|
-
lastMaintainedBy:
|
|
11308
|
-
cashCardLoad:
|
|
11309
|
-
cashDrawerUid:
|
|
11310
|
-
locIdForBranchConflict:
|
|
11311
|
-
defaultCloseBranchId:
|
|
11312
|
-
updateCd:
|
|
11313
|
-
statusCd:
|
|
11314
|
-
processCd:
|
|
11315
|
-
});
|
|
11316
|
-
var CodeP21DataSchema =
|
|
11317
|
-
codeUid:
|
|
11318
|
-
codeNo:
|
|
11319
|
-
languageId:
|
|
11320
|
-
codeDescription:
|
|
11321
|
-
rowStatusFlag:
|
|
11322
|
-
dateCreated:
|
|
11323
|
-
dateLastModified:
|
|
11324
|
-
lastMaintainedBy:
|
|
11325
|
-
codeSubDescription:
|
|
11326
|
-
updateCd:
|
|
11327
|
-
});
|
|
11328
|
-
var CompanyDataSchema =
|
|
11329
|
-
companyUid:
|
|
11330
|
-
companyId:
|
|
11331
|
-
companyName:
|
|
11332
|
-
dateCreated:
|
|
11333
|
-
dateLastModified:
|
|
11334
|
-
deleteFlag:
|
|
11335
|
-
updateCd:
|
|
11336
|
-
lastMaintainedBy:
|
|
11337
|
-
addressId:
|
|
11338
|
-
defaultSalesLocationId:
|
|
11339
|
-
freightCodeUid:
|
|
11340
|
-
upsAccountNo:
|
|
11341
|
-
defaultSourcePriceCd:
|
|
11342
|
-
defaultMultiplier:
|
|
11343
|
-
});
|
|
11344
|
-
var LocationDataSchema =
|
|
11345
|
-
locationId:
|
|
11346
|
-
companyId:
|
|
11347
|
-
defaultBranchId:
|
|
11348
|
-
deleteFlag:
|
|
11349
|
-
dateCreated:
|
|
11350
|
-
dateLastModified:
|
|
11351
|
-
lastMaintainedBy:
|
|
11352
|
-
locationName:
|
|
11353
|
-
lotBinIntegration:
|
|
11354
|
-
fedexLocAcctNo:
|
|
11355
|
-
fedexMeterNo:
|
|
11356
|
-
upsAccountNo:
|
|
11357
|
-
upsPickupTypeCd:
|
|
11358
|
-
upsCustomerTypeCd:
|
|
11359
|
-
upsOltAccessKey:
|
|
11360
|
-
upsOltPassword:
|
|
11361
|
-
upsOltUserId:
|
|
11362
|
-
distributionCenter:
|
|
11363
|
-
updateCd:
|
|
11364
|
-
});
|
|
11365
|
-
var
|
|
11544
|
+
var v28 = __toESM(require("valibot"));
|
|
11545
|
+
var AddressListParamsSchema = v28.looseObject({
|
|
11546
|
+
...EdgeCacheParamsSchema.entries,
|
|
11547
|
+
carrierFlag: v28.optional(v28.string()),
|
|
11548
|
+
defaultCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11549
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11550
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11551
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11552
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11553
|
+
});
|
|
11554
|
+
var AddressCorpAddressListParamsSchema = v28.looseObject({
|
|
11555
|
+
...EdgeCacheParamsSchema.entries,
|
|
11556
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11557
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11558
|
+
q: v28.optional(v28.string())
|
|
11559
|
+
});
|
|
11560
|
+
var AddressEnableGetParamsSchema = v28.looseObject({
|
|
11561
|
+
...EdgeCacheParamsSchema.entries,
|
|
11562
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11563
|
+
});
|
|
11564
|
+
var CashDrawerListParamsSchema = v28.looseObject({
|
|
11565
|
+
...EdgeCacheParamsSchema.entries,
|
|
11566
|
+
companyId: v28.optional(v28.string()),
|
|
11567
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11568
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11569
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11570
|
+
orderBy: v28.optional(v28.string()),
|
|
11571
|
+
q: v28.optional(v28.string()),
|
|
11572
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11573
|
+
});
|
|
11574
|
+
var CodeP21ListParamsSchema = v28.looseObject({
|
|
11575
|
+
...EdgeCacheParamsSchema.entries,
|
|
11576
|
+
codeNoList: v28.optional(v28.string()),
|
|
11577
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11578
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11579
|
+
q: v28.string()
|
|
11580
|
+
});
|
|
11581
|
+
var CompanyListParamsSchema = v28.looseObject({
|
|
11582
|
+
...EdgeCacheParamsSchema.entries,
|
|
11583
|
+
companyId: v28.optional(v28.string()),
|
|
11584
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11585
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11586
|
+
orderBy: v28.optional(v28.string()),
|
|
11587
|
+
q: v28.optional(v28.string())
|
|
11588
|
+
});
|
|
11589
|
+
var CompanyGetParamsSchema = v28.looseObject({
|
|
11590
|
+
...EdgeCacheParamsSchema.entries,
|
|
11591
|
+
companyId: v28.optional(v28.string())
|
|
11592
|
+
});
|
|
11593
|
+
var LocationListParamsSchema = v28.looseObject({
|
|
11594
|
+
...EdgeCacheParamsSchema.entries,
|
|
11595
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11596
|
+
includeAddress: v28.optional(v28.string()),
|
|
11597
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11598
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11599
|
+
orderBy: v28.optional(v28.string()),
|
|
11600
|
+
q: v28.optional(v28.string())
|
|
11601
|
+
});
|
|
11602
|
+
var LocationGetParamsSchema = v28.looseObject({
|
|
11603
|
+
...EdgeCacheParamsSchema.entries,
|
|
11604
|
+
includeAddress: v28.optional(v28.string())
|
|
11605
|
+
});
|
|
11606
|
+
var PaymentTypesListParamsSchema = v28.looseObject({
|
|
11607
|
+
...EdgeCacheParamsSchema.entries,
|
|
11608
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11609
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11610
|
+
});
|
|
11611
|
+
var CashDrawerDataSchema = v28.looseObject({
|
|
11612
|
+
cashDrawerId: v28.optional(v28.string()),
|
|
11613
|
+
companyId: v28.optional(v28.string()),
|
|
11614
|
+
cashDrawerDescription: v28.optional(v28.string()),
|
|
11615
|
+
currentSequenceNo: v28.optional(v28.number()),
|
|
11616
|
+
openingBalance: v28.optional(v28.nullable(v28.number())),
|
|
11617
|
+
withdrawals: v28.optional(v28.nullable(v28.number())),
|
|
11618
|
+
deposits: v28.optional(v28.nullable(v28.number())),
|
|
11619
|
+
currentBalance: v28.optional(v28.number()),
|
|
11620
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11621
|
+
bankNo: v28.optional(v28.nullable(v28.number())),
|
|
11622
|
+
cashOnHandAccountNumber: v28.optional(v28.string()),
|
|
11623
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11624
|
+
dateCreated: v28.optional(v28.string()),
|
|
11625
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11626
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11627
|
+
cashCardLoad: v28.optional(v28.nullable(v28.number())),
|
|
11628
|
+
cashDrawerUid: v28.optional(v28.number()),
|
|
11629
|
+
locIdForBranchConflict: v28.optional(v28.nullable(v28.number())),
|
|
11630
|
+
defaultCloseBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11631
|
+
updateCd: v28.optional(v28.number()),
|
|
11632
|
+
statusCd: v28.optional(v28.number()),
|
|
11633
|
+
processCd: v28.optional(v28.number())
|
|
11634
|
+
});
|
|
11635
|
+
var CodeP21DataSchema = v28.looseObject({
|
|
11636
|
+
codeUid: v28.optional(v28.number()),
|
|
11637
|
+
codeNo: v28.optional(v28.number()),
|
|
11638
|
+
languageId: v28.optional(v28.string()),
|
|
11639
|
+
codeDescription: v28.optional(v28.string()),
|
|
11640
|
+
rowStatusFlag: v28.optional(v28.string()),
|
|
11641
|
+
dateCreated: v28.optional(v28.string()),
|
|
11642
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11643
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11644
|
+
codeSubDescription: v28.optional(v28.nullable(v28.string())),
|
|
11645
|
+
updateCd: v28.optional(v28.number())
|
|
11646
|
+
});
|
|
11647
|
+
var CompanyDataSchema = v28.looseObject({
|
|
11648
|
+
companyUid: v28.optional(v28.number()),
|
|
11649
|
+
companyId: v28.optional(v28.string()),
|
|
11650
|
+
companyName: v28.optional(v28.nullable(v28.string())),
|
|
11651
|
+
dateCreated: v28.optional(v28.string()),
|
|
11652
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11653
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11654
|
+
updateCd: v28.optional(v28.number()),
|
|
11655
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11656
|
+
addressId: v28.optional(v28.nullable(v28.number())),
|
|
11657
|
+
defaultSalesLocationId: v28.optional(v28.nullable(v28.number())),
|
|
11658
|
+
freightCodeUid: v28.optional(v28.nullable(v28.number())),
|
|
11659
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11660
|
+
defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
|
|
11661
|
+
defaultMultiplier: v28.optional(v28.nullable(v28.number()))
|
|
11662
|
+
});
|
|
11663
|
+
var LocationDataSchema = v28.looseObject({
|
|
11664
|
+
locationId: v28.optional(v28.number()),
|
|
11665
|
+
companyId: v28.optional(v28.string()),
|
|
11666
|
+
defaultBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11667
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11668
|
+
dateCreated: v28.optional(v28.string()),
|
|
11669
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11670
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11671
|
+
locationName: v28.optional(v28.nullable(v28.string())),
|
|
11672
|
+
lotBinIntegration: v28.optional(v28.nullable(v28.string())),
|
|
11673
|
+
fedexLocAcctNo: v28.optional(v28.nullable(v28.string())),
|
|
11674
|
+
fedexMeterNo: v28.optional(v28.nullable(v28.string())),
|
|
11675
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11676
|
+
upsPickupTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11677
|
+
upsCustomerTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11678
|
+
upsOltAccessKey: v28.optional(v28.nullable(v28.string())),
|
|
11679
|
+
upsOltPassword: v28.optional(v28.nullable(v28.string())),
|
|
11680
|
+
upsOltUserId: v28.optional(v28.nullable(v28.string())),
|
|
11681
|
+
distributionCenter: v28.optional(v28.string()),
|
|
11682
|
+
updateCd: v28.optional(v28.number())
|
|
11683
|
+
});
|
|
11684
|
+
var PassthroughDataSchema21 = v28.record(v28.string(), v28.unknown());
|
|
11366
11685
|
|
|
11367
11686
|
// src/services/p21-core/generated/endpoints.ts
|
|
11368
|
-
var
|
|
11687
|
+
var endpoints21 = [
|
|
11369
11688
|
{
|
|
11370
11689
|
method: "GET",
|
|
11371
11690
|
path: "/address",
|
|
@@ -11375,7 +11694,7 @@ var endpoints20 = [
|
|
|
11375
11694
|
pathParams: [],
|
|
11376
11695
|
queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
|
|
11377
11696
|
edgeCache: true,
|
|
11378
|
-
responseSchema:
|
|
11697
|
+
responseSchema: PassthroughDataSchema21,
|
|
11379
11698
|
responseType: "passthrough"
|
|
11380
11699
|
},
|
|
11381
11700
|
{
|
|
@@ -11387,7 +11706,7 @@ var endpoints20 = [
|
|
|
11387
11706
|
pathParams: [],
|
|
11388
11707
|
queryParams: [],
|
|
11389
11708
|
edgeCache: true,
|
|
11390
|
-
responseSchema:
|
|
11709
|
+
responseSchema: PassthroughDataSchema21,
|
|
11391
11710
|
responseType: "passthrough"
|
|
11392
11711
|
},
|
|
11393
11712
|
{
|
|
@@ -11399,7 +11718,7 @@ var endpoints20 = [
|
|
|
11399
11718
|
pathParams: ["id"],
|
|
11400
11719
|
queryParams: [],
|
|
11401
11720
|
edgeCache: true,
|
|
11402
|
-
responseSchema:
|
|
11721
|
+
responseSchema: PassthroughDataSchema21,
|
|
11403
11722
|
responseType: "passthrough"
|
|
11404
11723
|
},
|
|
11405
11724
|
{
|
|
@@ -11411,7 +11730,7 @@ var endpoints20 = [
|
|
|
11411
11730
|
pathParams: ["id"],
|
|
11412
11731
|
queryParams: ["limit", "offset", "q"],
|
|
11413
11732
|
edgeCache: true,
|
|
11414
|
-
responseSchema:
|
|
11733
|
+
responseSchema: PassthroughDataSchema21,
|
|
11415
11734
|
responseType: "passthrough"
|
|
11416
11735
|
},
|
|
11417
11736
|
{
|
|
@@ -11423,7 +11742,7 @@ var endpoints20 = [
|
|
|
11423
11742
|
pathParams: ["id"],
|
|
11424
11743
|
queryParams: [],
|
|
11425
11744
|
edgeCache: true,
|
|
11426
|
-
responseSchema:
|
|
11745
|
+
responseSchema: PassthroughDataSchema21,
|
|
11427
11746
|
responseType: "passthrough"
|
|
11428
11747
|
},
|
|
11429
11748
|
{
|
|
@@ -11435,7 +11754,7 @@ var endpoints20 = [
|
|
|
11435
11754
|
pathParams: ["id"],
|
|
11436
11755
|
queryParams: ["enabledCd"],
|
|
11437
11756
|
edgeCache: true,
|
|
11438
|
-
responseSchema:
|
|
11757
|
+
responseSchema: PassthroughDataSchema21,
|
|
11439
11758
|
responseType: "passthrough"
|
|
11440
11759
|
},
|
|
11441
11760
|
{
|
|
@@ -11531,14 +11850,14 @@ var endpoints20 = [
|
|
|
11531
11850
|
pathParams: [],
|
|
11532
11851
|
queryParams: ["limit", "offset"],
|
|
11533
11852
|
edgeCache: true,
|
|
11534
|
-
responseSchema:
|
|
11853
|
+
responseSchema: PassthroughDataSchema21,
|
|
11535
11854
|
responseType: "passthrough"
|
|
11536
11855
|
}
|
|
11537
11856
|
];
|
|
11538
11857
|
|
|
11539
11858
|
// src/services/p21-core/resources/health-check.ts
|
|
11540
|
-
var
|
|
11541
|
-
var UnknownResponseSchema = BaseResponseSchema(
|
|
11859
|
+
var v29 = __toESM(require("valibot"));
|
|
11860
|
+
var UnknownResponseSchema = BaseResponseSchema(v29.unknown());
|
|
11542
11861
|
function createHealthCheckResource21(executeRequest) {
|
|
11543
11862
|
return {
|
|
11544
11863
|
/**
|
|
@@ -11601,7 +11920,7 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11601
11920
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11602
11921
|
return this.executeRequest(config, params, pathParams);
|
|
11603
11922
|
};
|
|
11604
|
-
const proxy = createServiceProxy("p21-core", boundExecuteRequest,
|
|
11923
|
+
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
|
|
11605
11924
|
const dataProxy = createDataProxy(proxy);
|
|
11606
11925
|
this.address = proxy.address;
|
|
11607
11926
|
this.cashDrawer = proxy.cashDrawer;
|
|
@@ -11626,84 +11945,84 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11626
11945
|
};
|
|
11627
11946
|
|
|
11628
11947
|
// src/services/p21-sism/generated/schemas.ts
|
|
11629
|
-
var
|
|
11630
|
-
var ImportListParamsSchema =
|
|
11631
|
-
...EdgeCacheParamsSchema.entries,
|
|
11632
|
-
createdFrom:
|
|
11633
|
-
createdOn:
|
|
11634
|
-
createdTo:
|
|
11635
|
-
excludeState:
|
|
11636
|
-
importState:
|
|
11637
|
-
limit:
|
|
11638
|
-
offset:
|
|
11639
|
-
orderBy:
|
|
11640
|
-
q:
|
|
11641
|
-
referenceNo:
|
|
11642
|
-
sourceId:
|
|
11643
|
-
sourceName:
|
|
11644
|
-
});
|
|
11645
|
-
var ImportDailySummaryListParamsSchema =
|
|
11646
|
-
...EdgeCacheParamsSchema.entries,
|
|
11647
|
-
days:
|
|
11648
|
-
});
|
|
11649
|
-
var ImportRecentListParamsSchema =
|
|
11650
|
-
...EdgeCacheParamsSchema.entries,
|
|
11651
|
-
createdFrom:
|
|
11652
|
-
createdOn:
|
|
11653
|
-
createdTo:
|
|
11654
|
-
excludeState:
|
|
11655
|
-
hours:
|
|
11656
|
-
importState:
|
|
11657
|
-
limit:
|
|
11658
|
-
sourceId:
|
|
11659
|
-
sourceName:
|
|
11660
|
-
});
|
|
11661
|
-
var ImportStuckListParamsSchema =
|
|
11662
|
-
...EdgeCacheParamsSchema.entries,
|
|
11663
|
-
hours:
|
|
11664
|
-
limit:
|
|
11665
|
-
});
|
|
11666
|
-
var ImportDailySummaryDataSchema =
|
|
11667
|
-
date:
|
|
11668
|
-
total:
|
|
11669
|
-
initial:
|
|
11670
|
-
processing:
|
|
11671
|
-
processingCoupon:
|
|
11672
|
-
processCoupon:
|
|
11673
|
-
validate:
|
|
11674
|
-
validating:
|
|
11675
|
-
validated:
|
|
11676
|
-
processed:
|
|
11677
|
-
hold:
|
|
11678
|
-
delivering:
|
|
11679
|
-
delivered:
|
|
11680
|
-
importing:
|
|
11681
|
-
imported:
|
|
11682
|
-
redelivered:
|
|
11683
|
-
invalid:
|
|
11684
|
-
failed:
|
|
11685
|
-
error:
|
|
11686
|
-
cancelled:
|
|
11687
|
-
stopped:
|
|
11688
|
-
skipped:
|
|
11689
|
-
});
|
|
11690
|
-
var ImportDataSchema =
|
|
11691
|
-
importUid:
|
|
11692
|
-
scheduledImportMasterUid:
|
|
11693
|
-
dateCreated:
|
|
11694
|
-
dateLastModified:
|
|
11695
|
-
sourceName:
|
|
11696
|
-
sourceId:
|
|
11697
|
-
importState:
|
|
11698
|
-
jsonData:
|
|
11699
|
-
importStatusCd:
|
|
11700
|
-
importResults:
|
|
11701
|
-
referenceNo:
|
|
11702
|
-
});
|
|
11703
|
-
var
|
|
11948
|
+
var v30 = __toESM(require("valibot"));
|
|
11949
|
+
var ImportListParamsSchema = v30.looseObject({
|
|
11950
|
+
...EdgeCacheParamsSchema.entries,
|
|
11951
|
+
createdFrom: v30.optional(v30.string()),
|
|
11952
|
+
createdOn: v30.optional(v30.string()),
|
|
11953
|
+
createdTo: v30.optional(v30.string()),
|
|
11954
|
+
excludeState: v30.optional(v30.string()),
|
|
11955
|
+
importState: v30.optional(v30.string()),
|
|
11956
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11957
|
+
offset: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11958
|
+
orderBy: v30.optional(v30.string()),
|
|
11959
|
+
q: v30.optional(v30.string()),
|
|
11960
|
+
referenceNo: v30.optional(v30.string()),
|
|
11961
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11962
|
+
sourceName: v30.optional(v30.string())
|
|
11963
|
+
});
|
|
11964
|
+
var ImportDailySummaryListParamsSchema = v30.looseObject({
|
|
11965
|
+
...EdgeCacheParamsSchema.entries,
|
|
11966
|
+
days: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11967
|
+
});
|
|
11968
|
+
var ImportRecentListParamsSchema = v30.looseObject({
|
|
11969
|
+
...EdgeCacheParamsSchema.entries,
|
|
11970
|
+
createdFrom: v30.optional(v30.string()),
|
|
11971
|
+
createdOn: v30.optional(v30.string()),
|
|
11972
|
+
createdTo: v30.optional(v30.string()),
|
|
11973
|
+
excludeState: v30.optional(v30.string()),
|
|
11974
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11975
|
+
importState: v30.optional(v30.string()),
|
|
11976
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11977
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11978
|
+
sourceName: v30.optional(v30.string())
|
|
11979
|
+
});
|
|
11980
|
+
var ImportStuckListParamsSchema = v30.looseObject({
|
|
11981
|
+
...EdgeCacheParamsSchema.entries,
|
|
11982
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11983
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11984
|
+
});
|
|
11985
|
+
var ImportDailySummaryDataSchema = v30.looseObject({
|
|
11986
|
+
date: v30.optional(v30.string()),
|
|
11987
|
+
total: v30.optional(v30.number()),
|
|
11988
|
+
initial: v30.optional(v30.number()),
|
|
11989
|
+
processing: v30.optional(v30.number()),
|
|
11990
|
+
processingCoupon: v30.optional(v30.number()),
|
|
11991
|
+
processCoupon: v30.optional(v30.number()),
|
|
11992
|
+
validate: v30.optional(v30.number()),
|
|
11993
|
+
validating: v30.optional(v30.number()),
|
|
11994
|
+
validated: v30.optional(v30.number()),
|
|
11995
|
+
processed: v30.optional(v30.number()),
|
|
11996
|
+
hold: v30.optional(v30.number()),
|
|
11997
|
+
delivering: v30.optional(v30.number()),
|
|
11998
|
+
delivered: v30.optional(v30.number()),
|
|
11999
|
+
importing: v30.optional(v30.number()),
|
|
12000
|
+
imported: v30.optional(v30.number()),
|
|
12001
|
+
redelivered: v30.optional(v30.number()),
|
|
12002
|
+
invalid: v30.optional(v30.number()),
|
|
12003
|
+
failed: v30.optional(v30.number()),
|
|
12004
|
+
error: v30.optional(v30.number()),
|
|
12005
|
+
cancelled: v30.optional(v30.number()),
|
|
12006
|
+
stopped: v30.optional(v30.number()),
|
|
12007
|
+
skipped: v30.optional(v30.number())
|
|
12008
|
+
});
|
|
12009
|
+
var ImportDataSchema = v30.looseObject({
|
|
12010
|
+
importUid: v30.optional(v30.number()),
|
|
12011
|
+
scheduledImportMasterUid: v30.optional(v30.number()),
|
|
12012
|
+
dateCreated: v30.optional(v30.string()),
|
|
12013
|
+
dateLastModified: v30.optional(v30.string()),
|
|
12014
|
+
sourceName: v30.optional(v30.nullable(v30.string())),
|
|
12015
|
+
sourceId: v30.optional(v30.number()),
|
|
12016
|
+
importState: v30.optional(v30.string()),
|
|
12017
|
+
jsonData: v30.optional(v30.nullable(v30.string())),
|
|
12018
|
+
importStatusCd: v30.optional(v30.number()),
|
|
12019
|
+
importResults: v30.optional(v30.nullable(v30.string())),
|
|
12020
|
+
referenceNo: v30.optional(v30.nullable(v30.string()))
|
|
12021
|
+
});
|
|
12022
|
+
var PassthroughDataSchema22 = v30.record(v30.string(), v30.unknown());
|
|
11704
12023
|
|
|
11705
12024
|
// src/services/p21-sism/generated/endpoints.ts
|
|
11706
|
-
var
|
|
12025
|
+
var endpoints22 = [
|
|
11707
12026
|
{
|
|
11708
12027
|
method: "GET",
|
|
11709
12028
|
path: "/import",
|
|
@@ -11726,7 +12045,7 @@ var endpoints21 = [
|
|
|
11726
12045
|
"sourceName"
|
|
11727
12046
|
],
|
|
11728
12047
|
edgeCache: true,
|
|
11729
|
-
responseSchema:
|
|
12048
|
+
responseSchema: PassthroughDataSchema22,
|
|
11730
12049
|
responseType: "passthrough"
|
|
11731
12050
|
},
|
|
11732
12051
|
{
|
|
@@ -11760,7 +12079,7 @@ var endpoints21 = [
|
|
|
11760
12079
|
"sourceName"
|
|
11761
12080
|
],
|
|
11762
12081
|
edgeCache: true,
|
|
11763
|
-
responseSchema:
|
|
12082
|
+
responseSchema: PassthroughDataSchema22,
|
|
11764
12083
|
responseType: "passthrough"
|
|
11765
12084
|
},
|
|
11766
12085
|
{
|
|
@@ -11772,7 +12091,7 @@ var endpoints21 = [
|
|
|
11772
12091
|
pathParams: [],
|
|
11773
12092
|
queryParams: ["hours", "limit"],
|
|
11774
12093
|
edgeCache: true,
|
|
11775
|
-
responseSchema:
|
|
12094
|
+
responseSchema: PassthroughDataSchema22,
|
|
11776
12095
|
responseType: "passthrough"
|
|
11777
12096
|
},
|
|
11778
12097
|
{
|
|
@@ -11820,7 +12139,7 @@ var endpoints21 = [
|
|
|
11820
12139
|
pathParams: ["importUid"],
|
|
11821
12140
|
queryParams: [],
|
|
11822
12141
|
edgeCache: true,
|
|
11823
|
-
responseSchema:
|
|
12142
|
+
responseSchema: PassthroughDataSchema22,
|
|
11824
12143
|
responseType: "passthrough"
|
|
11825
12144
|
},
|
|
11826
12145
|
{
|
|
@@ -11832,7 +12151,7 @@ var endpoints21 = [
|
|
|
11832
12151
|
pathParams: ["importUid"],
|
|
11833
12152
|
queryParams: [],
|
|
11834
12153
|
edgeCache: false,
|
|
11835
|
-
responseSchema:
|
|
12154
|
+
responseSchema: PassthroughDataSchema22,
|
|
11836
12155
|
responseType: "passthrough"
|
|
11837
12156
|
},
|
|
11838
12157
|
{
|
|
@@ -11844,7 +12163,7 @@ var endpoints21 = [
|
|
|
11844
12163
|
pathParams: ["importUid"],
|
|
11845
12164
|
queryParams: [],
|
|
11846
12165
|
edgeCache: true,
|
|
11847
|
-
responseSchema:
|
|
12166
|
+
responseSchema: PassthroughDataSchema22,
|
|
11848
12167
|
responseType: "passthrough"
|
|
11849
12168
|
},
|
|
11850
12169
|
{
|
|
@@ -11856,7 +12175,7 @@ var endpoints21 = [
|
|
|
11856
12175
|
pathParams: ["importUid"],
|
|
11857
12176
|
queryParams: [],
|
|
11858
12177
|
edgeCache: false,
|
|
11859
|
-
responseSchema:
|
|
12178
|
+
responseSchema: PassthroughDataSchema22,
|
|
11860
12179
|
responseType: "passthrough"
|
|
11861
12180
|
},
|
|
11862
12181
|
{
|
|
@@ -11868,7 +12187,7 @@ var endpoints21 = [
|
|
|
11868
12187
|
pathParams: ["importUid"],
|
|
11869
12188
|
queryParams: [],
|
|
11870
12189
|
edgeCache: true,
|
|
11871
|
-
responseSchema:
|
|
12190
|
+
responseSchema: PassthroughDataSchema22,
|
|
11872
12191
|
responseType: "passthrough"
|
|
11873
12192
|
},
|
|
11874
12193
|
{
|
|
@@ -11880,7 +12199,7 @@ var endpoints21 = [
|
|
|
11880
12199
|
pathParams: ["scheduledImportMasterUid"],
|
|
11881
12200
|
queryParams: [],
|
|
11882
12201
|
edgeCache: false,
|
|
11883
|
-
responseSchema:
|
|
12202
|
+
responseSchema: PassthroughDataSchema22,
|
|
11884
12203
|
responseType: "passthrough"
|
|
11885
12204
|
}
|
|
11886
12205
|
];
|
|
@@ -11933,7 +12252,7 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11933
12252
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11934
12253
|
return this.executeRequest(config, params, pathParams);
|
|
11935
12254
|
};
|
|
11936
|
-
const proxy = createServiceProxy("p21-sism", boundExecuteRequest,
|
|
12255
|
+
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
|
|
11937
12256
|
const dataProxy = createDataProxy(proxy);
|
|
11938
12257
|
this.import = proxy.import;
|
|
11939
12258
|
this.scheduledImportMaster = proxy.scheduledImportMaster;
|
|
@@ -11948,11 +12267,11 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11948
12267
|
};
|
|
11949
12268
|
|
|
11950
12269
|
// src/services/shipping/generated/schemas.ts
|
|
11951
|
-
var
|
|
11952
|
-
var
|
|
12270
|
+
var v31 = __toESM(require("valibot"));
|
|
12271
|
+
var PassthroughDataSchema23 = v31.record(v31.string(), v31.unknown());
|
|
11953
12272
|
|
|
11954
12273
|
// src/services/shipping/generated/endpoints.ts
|
|
11955
|
-
var
|
|
12274
|
+
var endpoints23 = [
|
|
11956
12275
|
{
|
|
11957
12276
|
method: "POST",
|
|
11958
12277
|
path: "/rates",
|
|
@@ -11962,7 +12281,7 @@ var endpoints22 = [
|
|
|
11962
12281
|
pathParams: [],
|
|
11963
12282
|
queryParams: [],
|
|
11964
12283
|
edgeCache: false,
|
|
11965
|
-
responseSchema:
|
|
12284
|
+
responseSchema: PassthroughDataSchema23,
|
|
11966
12285
|
responseType: "passthrough"
|
|
11967
12286
|
}
|
|
11968
12287
|
];
|
|
@@ -12042,7 +12361,7 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
12042
12361
|
const proxy = createServiceProxy(
|
|
12043
12362
|
"shipping",
|
|
12044
12363
|
boundExecuteRequest,
|
|
12045
|
-
|
|
12364
|
+
endpoints23
|
|
12046
12365
|
);
|
|
12047
12366
|
const dataProxy = createDataProxy(proxy);
|
|
12048
12367
|
this.rates = proxy.rates;
|
|
@@ -12053,11 +12372,11 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
12053
12372
|
};
|
|
12054
12373
|
|
|
12055
12374
|
// src/services/slack/generated/schemas.ts
|
|
12056
|
-
var
|
|
12057
|
-
var
|
|
12375
|
+
var v32 = __toESM(require("valibot"));
|
|
12376
|
+
var PassthroughDataSchema24 = v32.record(v32.string(), v32.unknown());
|
|
12058
12377
|
|
|
12059
12378
|
// src/services/slack/generated/endpoints.ts
|
|
12060
|
-
var
|
|
12379
|
+
var endpoints24 = [
|
|
12061
12380
|
{
|
|
12062
12381
|
method: "POST",
|
|
12063
12382
|
path: "/web-hook",
|
|
@@ -12067,7 +12386,7 @@ var endpoints23 = [
|
|
|
12067
12386
|
pathParams: [],
|
|
12068
12387
|
queryParams: [],
|
|
12069
12388
|
edgeCache: false,
|
|
12070
|
-
responseSchema:
|
|
12389
|
+
responseSchema: PassthroughDataSchema24,
|
|
12071
12390
|
responseType: "passthrough"
|
|
12072
12391
|
},
|
|
12073
12392
|
{
|
|
@@ -12079,7 +12398,7 @@ var endpoints23 = [
|
|
|
12079
12398
|
pathParams: [],
|
|
12080
12399
|
queryParams: [],
|
|
12081
12400
|
edgeCache: true,
|
|
12082
|
-
responseSchema:
|
|
12401
|
+
responseSchema: PassthroughDataSchema24,
|
|
12083
12402
|
responseType: "passthrough"
|
|
12084
12403
|
}
|
|
12085
12404
|
];
|
|
@@ -12168,7 +12487,7 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12168
12487
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12169
12488
|
return this.executeRequest(config, params, pathParams);
|
|
12170
12489
|
};
|
|
12171
|
-
const proxy = createServiceProxy("slack", boundExecuteRequest,
|
|
12490
|
+
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
|
|
12172
12491
|
const dataProxy = createDataProxy(proxy);
|
|
12173
12492
|
this.webHook = proxy.webHook;
|
|
12174
12493
|
this.webHookData = dataProxy.webHook;
|
|
@@ -12178,19 +12497,19 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12178
12497
|
};
|
|
12179
12498
|
|
|
12180
12499
|
// src/services/smarty-streets/generated/schemas.ts
|
|
12181
|
-
var
|
|
12182
|
-
var UsLookupGetParamsSchema =
|
|
12500
|
+
var v33 = __toESM(require("valibot"));
|
|
12501
|
+
var UsLookupGetParamsSchema = v33.looseObject({
|
|
12183
12502
|
...EdgeCacheParamsSchema.entries,
|
|
12184
|
-
address1:
|
|
12185
|
-
address2:
|
|
12186
|
-
city:
|
|
12187
|
-
postalCode:
|
|
12188
|
-
state:
|
|
12503
|
+
address1: v33.string(),
|
|
12504
|
+
address2: v33.string(),
|
|
12505
|
+
city: v33.string(),
|
|
12506
|
+
postalCode: v33.string(),
|
|
12507
|
+
state: v33.string()
|
|
12189
12508
|
});
|
|
12190
|
-
var
|
|
12509
|
+
var PassthroughDataSchema25 = v33.record(v33.string(), v33.unknown());
|
|
12191
12510
|
|
|
12192
12511
|
// src/services/smarty-streets/generated/endpoints.ts
|
|
12193
|
-
var
|
|
12512
|
+
var endpoints25 = [
|
|
12194
12513
|
{
|
|
12195
12514
|
method: "GET",
|
|
12196
12515
|
path: "/us/lookup",
|
|
@@ -12200,7 +12519,7 @@ var endpoints24 = [
|
|
|
12200
12519
|
pathParams: [],
|
|
12201
12520
|
queryParams: ["address1", "address2", "city", "postalCode", "state"],
|
|
12202
12521
|
edgeCache: true,
|
|
12203
|
-
responseSchema:
|
|
12522
|
+
responseSchema: PassthroughDataSchema25,
|
|
12204
12523
|
responseType: "passthrough"
|
|
12205
12524
|
}
|
|
12206
12525
|
];
|
|
@@ -12371,7 +12690,7 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12371
12690
|
const proxy = createServiceProxy(
|
|
12372
12691
|
"smarty-streets",
|
|
12373
12692
|
boundExecuteRequest,
|
|
12374
|
-
|
|
12693
|
+
endpoints25
|
|
12375
12694
|
);
|
|
12376
12695
|
const dataProxy = createDataProxy(proxy);
|
|
12377
12696
|
this.us = proxy.us;
|
|
@@ -12384,30 +12703,30 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12384
12703
|
};
|
|
12385
12704
|
|
|
12386
12705
|
// src/services/ups/generated/schemas.ts
|
|
12387
|
-
var
|
|
12388
|
-
var RatesShopListParamsSchema =
|
|
12389
|
-
...EdgeCacheParamsSchema.entries,
|
|
12390
|
-
cacheSiteId:
|
|
12391
|
-
fromAddress1:
|
|
12392
|
-
fromAddress2:
|
|
12393
|
-
fromAddress3:
|
|
12394
|
-
fromCity:
|
|
12395
|
-
fromCountryCode:
|
|
12396
|
-
fromPostalCode:
|
|
12397
|
-
fromStateProvinceCode:
|
|
12398
|
-
toAddress1:
|
|
12399
|
-
toAddress2:
|
|
12400
|
-
toAddress3:
|
|
12401
|
-
toCity:
|
|
12402
|
-
toCountryCode:
|
|
12403
|
-
toPostalCode:
|
|
12404
|
-
toStateProvinceCode:
|
|
12405
|
-
weight:
|
|
12406
|
-
});
|
|
12407
|
-
var
|
|
12706
|
+
var v34 = __toESM(require("valibot"));
|
|
12707
|
+
var RatesShopListParamsSchema = v34.looseObject({
|
|
12708
|
+
...EdgeCacheParamsSchema.entries,
|
|
12709
|
+
cacheSiteId: v34.optional(v34.string()),
|
|
12710
|
+
fromAddress1: v34.optional(v34.string()),
|
|
12711
|
+
fromAddress2: v34.optional(v34.string()),
|
|
12712
|
+
fromAddress3: v34.optional(v34.string()),
|
|
12713
|
+
fromCity: v34.optional(v34.string()),
|
|
12714
|
+
fromCountryCode: v34.optional(v34.string()),
|
|
12715
|
+
fromPostalCode: v34.optional(v34.string()),
|
|
12716
|
+
fromStateProvinceCode: v34.optional(v34.string()),
|
|
12717
|
+
toAddress1: v34.optional(v34.string()),
|
|
12718
|
+
toAddress2: v34.optional(v34.string()),
|
|
12719
|
+
toAddress3: v34.optional(v34.string()),
|
|
12720
|
+
toCity: v34.optional(v34.string()),
|
|
12721
|
+
toCountryCode: v34.optional(v34.string()),
|
|
12722
|
+
toPostalCode: v34.optional(v34.string()),
|
|
12723
|
+
toStateProvinceCode: v34.optional(v34.string()),
|
|
12724
|
+
weight: v34.optional(v34.pipe(v34.unknown(), v34.transform(Number)))
|
|
12725
|
+
});
|
|
12726
|
+
var PassthroughDataSchema26 = v34.record(v34.string(), v34.unknown());
|
|
12408
12727
|
|
|
12409
12728
|
// src/services/ups/generated/endpoints.ts
|
|
12410
|
-
var
|
|
12729
|
+
var endpoints26 = [
|
|
12411
12730
|
{
|
|
12412
12731
|
method: "GET",
|
|
12413
12732
|
path: "/rates-shop",
|
|
@@ -12434,15 +12753,15 @@ var endpoints25 = [
|
|
|
12434
12753
|
"weight"
|
|
12435
12754
|
],
|
|
12436
12755
|
edgeCache: true,
|
|
12437
|
-
responseSchema:
|
|
12756
|
+
responseSchema: PassthroughDataSchema26,
|
|
12438
12757
|
responseType: "passthrough"
|
|
12439
12758
|
}
|
|
12440
12759
|
];
|
|
12441
12760
|
|
|
12442
12761
|
// src/services/ups/resources/health-check.ts
|
|
12443
|
-
var
|
|
12444
|
-
var HealthCheckParamsSchema =
|
|
12445
|
-
"x-site-id":
|
|
12762
|
+
var v35 = __toESM(require("valibot"));
|
|
12763
|
+
var HealthCheckParamsSchema = v35.looseObject({
|
|
12764
|
+
"x-site-id": v35.string(),
|
|
12446
12765
|
...EdgeCacheParamsSchema.entries
|
|
12447
12766
|
});
|
|
12448
12767
|
function createHealthCheckResource26(executeRequest) {
|
|
@@ -12534,7 +12853,7 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12534
12853
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12535
12854
|
return this.executeRequest(config, params, pathParams);
|
|
12536
12855
|
};
|
|
12537
|
-
const proxy = createServiceProxy("ups", boundExecuteRequest,
|
|
12856
|
+
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
|
|
12538
12857
|
const dataProxy = createDataProxy(proxy);
|
|
12539
12858
|
this.ratesShop = proxy.ratesShop;
|
|
12540
12859
|
this.ratesShopData = dataProxy.ratesShop;
|
|
@@ -12544,354 +12863,354 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12544
12863
|
};
|
|
12545
12864
|
|
|
12546
12865
|
// src/services/basecamp2/generated/schemas.ts
|
|
12547
|
-
var
|
|
12548
|
-
var CommentsListParamsSchema =
|
|
12549
|
-
...EdgeCacheParamsSchema.entries,
|
|
12550
|
-
creator_id:
|
|
12551
|
-
limit:
|
|
12552
|
-
offset:
|
|
12553
|
-
order_by:
|
|
12554
|
-
todos_id:
|
|
12555
|
-
});
|
|
12556
|
-
var EventsListParamsSchema =
|
|
12557
|
-
...EdgeCacheParamsSchema.entries,
|
|
12558
|
-
event_type_cd:
|
|
12559
|
-
id:
|
|
12560
|
-
limit:
|
|
12561
|
-
offset:
|
|
12562
|
-
order_by:
|
|
12563
|
-
people_id:
|
|
12564
|
-
});
|
|
12565
|
-
var MetricsListParamsSchema =
|
|
12566
|
-
...EdgeCacheParamsSchema.entries,
|
|
12567
|
-
assigneeId:
|
|
12568
|
-
creatorId:
|
|
12569
|
-
hasComments:
|
|
12570
|
-
isStale:
|
|
12571
|
-
limit:
|
|
12572
|
-
needsResponse:
|
|
12573
|
-
offset:
|
|
12574
|
-
orderBy:
|
|
12575
|
-
projectsId:
|
|
12576
|
-
todosStatusCd:
|
|
12577
|
-
});
|
|
12578
|
-
var PeopleListParamsSchema =
|
|
12579
|
-
...EdgeCacheParamsSchema.entries,
|
|
12580
|
-
adminFlag:
|
|
12581
|
-
limit:
|
|
12582
|
-
offset:
|
|
12583
|
-
orderBy:
|
|
12584
|
-
q:
|
|
12585
|
-
trashedFlag:
|
|
12586
|
-
});
|
|
12587
|
-
var PeopleMetricsListParamsSchema =
|
|
12588
|
-
...EdgeCacheParamsSchema.entries,
|
|
12589
|
-
hasComments:
|
|
12590
|
-
isStale:
|
|
12591
|
-
limit:
|
|
12592
|
-
needsResponse:
|
|
12593
|
-
offset:
|
|
12594
|
-
orderBy:
|
|
12595
|
-
todosStatusCd:
|
|
12596
|
-
});
|
|
12597
|
-
var PeopleTodosListParamsSchema =
|
|
12598
|
-
...EdgeCacheParamsSchema.entries,
|
|
12599
|
-
completed_flag:
|
|
12600
|
-
due_at:
|
|
12601
|
-
limit:
|
|
12602
|
-
offset:
|
|
12603
|
-
order_by:
|
|
12604
|
-
projects_id:
|
|
12605
|
-
});
|
|
12606
|
-
var PeopleProjectsTodosListParamsSchema =
|
|
12607
|
-
...EdgeCacheParamsSchema.entries,
|
|
12608
|
-
completed_flag:
|
|
12609
|
-
limit:
|
|
12610
|
-
offset:
|
|
12611
|
-
order_by:
|
|
12612
|
-
});
|
|
12613
|
-
var ProjectsListParamsSchema =
|
|
12614
|
-
...EdgeCacheParamsSchema.entries,
|
|
12615
|
-
archived_flag:
|
|
12616
|
-
limit:
|
|
12617
|
-
offset:
|
|
12618
|
-
order_by:
|
|
12619
|
-
trashed_flag:
|
|
12620
|
-
});
|
|
12621
|
-
var ProjectsMetricsListParamsSchema =
|
|
12622
|
-
...EdgeCacheParamsSchema.entries,
|
|
12623
|
-
hasComments:
|
|
12624
|
-
isStale:
|
|
12625
|
-
limit:
|
|
12626
|
-
needsResponse:
|
|
12627
|
-
offset:
|
|
12628
|
-
orderBy:
|
|
12629
|
-
todosStatusCd:
|
|
12630
|
-
});
|
|
12631
|
-
var ProjectsTodolistsListParamsSchema =
|
|
12632
|
-
...EdgeCacheParamsSchema.entries,
|
|
12633
|
-
completed_flag:
|
|
12634
|
-
limit:
|
|
12635
|
-
offset:
|
|
12636
|
-
order_by:
|
|
12637
|
-
});
|
|
12638
|
-
var ProjectsTodosListParamsSchema =
|
|
12639
|
-
...EdgeCacheParamsSchema.entries,
|
|
12640
|
-
assignee_id:
|
|
12641
|
-
completed_flag:
|
|
12642
|
-
limit:
|
|
12643
|
-
offset:
|
|
12644
|
-
order_by:
|
|
12645
|
-
});
|
|
12646
|
-
var ProjectsTodolistsTodosListParamsSchema =
|
|
12647
|
-
...EdgeCacheParamsSchema.entries,
|
|
12648
|
-
assignee_id:
|
|
12649
|
-
completed_flag:
|
|
12650
|
-
limit:
|
|
12651
|
-
offset:
|
|
12652
|
-
order_by:
|
|
12653
|
-
});
|
|
12654
|
-
var TodolistsListParamsSchema =
|
|
12655
|
-
...EdgeCacheParamsSchema.entries,
|
|
12656
|
-
assignee_id:
|
|
12657
|
-
completed_flag:
|
|
12658
|
-
limit:
|
|
12659
|
-
offset:
|
|
12660
|
-
order_by:
|
|
12661
|
-
projects_id:
|
|
12662
|
-
});
|
|
12663
|
-
var TodosListParamsSchema =
|
|
12664
|
-
...EdgeCacheParamsSchema.entries,
|
|
12665
|
-
assignee_id:
|
|
12666
|
-
completed_flag:
|
|
12667
|
-
due_at:
|
|
12668
|
-
limit:
|
|
12669
|
-
offset:
|
|
12670
|
-
order_by:
|
|
12671
|
-
projects_id:
|
|
12672
|
-
todolist_id:
|
|
12673
|
-
});
|
|
12674
|
-
var TodosSummaryListParamsSchema =
|
|
12675
|
-
...EdgeCacheParamsSchema.entries,
|
|
12676
|
-
akasha_cd:
|
|
12677
|
-
limit:
|
|
12678
|
-
offset:
|
|
12679
|
-
process_cd:
|
|
12680
|
-
});
|
|
12681
|
-
var TodosCommentsListParamsSchema =
|
|
12682
|
-
...EdgeCacheParamsSchema.entries,
|
|
12683
|
-
limit:
|
|
12684
|
-
offset:
|
|
12685
|
-
order_by:
|
|
12686
|
-
});
|
|
12687
|
-
var TodosEventsListParamsSchema =
|
|
12688
|
-
...EdgeCacheParamsSchema.entries,
|
|
12689
|
-
event_type_cd:
|
|
12690
|
-
limit:
|
|
12691
|
-
offset:
|
|
12692
|
-
order_by:
|
|
12693
|
-
people_id:
|
|
12694
|
-
});
|
|
12695
|
-
var TodosSessionsListParamsSchema =
|
|
12696
|
-
...EdgeCacheParamsSchema.entries,
|
|
12697
|
-
limit:
|
|
12698
|
-
offset:
|
|
12699
|
-
order_by:
|
|
12700
|
-
session_status_cd:
|
|
12701
|
-
});
|
|
12702
|
-
var CommentsDataSchema =
|
|
12703
|
-
id:
|
|
12704
|
-
content:
|
|
12705
|
-
updatedAt:
|
|
12706
|
-
createdAt:
|
|
12707
|
-
creatorId:
|
|
12708
|
-
updateCd:
|
|
12709
|
-
statusCd:
|
|
12710
|
-
processCd:
|
|
12711
|
-
todosId:
|
|
12712
|
-
vector:
|
|
12713
|
-
vectorCd:
|
|
12714
|
-
vectorFlag:
|
|
12715
|
-
dateLastVector:
|
|
12716
|
-
location:
|
|
12717
|
-
contentLength:
|
|
12718
|
-
tokenCount:
|
|
12719
|
-
});
|
|
12720
|
-
var EventsDataSchema =
|
|
12721
|
-
id:
|
|
12722
|
-
eventNum:
|
|
12723
|
-
eventTypeCd:
|
|
12724
|
-
peopleId:
|
|
12725
|
-
eventAt:
|
|
12726
|
-
commentId:
|
|
12727
|
-
dateCreated:
|
|
12728
|
-
dateLastModified:
|
|
12729
|
-
updateCd:
|
|
12730
|
-
statusCd:
|
|
12731
|
-
processCd:
|
|
12732
|
-
todosSessionsUid:
|
|
12733
|
-
});
|
|
12734
|
-
var MetricsDataSchema =
|
|
12735
|
-
id:
|
|
12736
|
-
projectsId:
|
|
12737
|
-
todolistId:
|
|
12738
|
-
assigneeId:
|
|
12739
|
-
creatorId:
|
|
12740
|
-
todosContent:
|
|
12741
|
-
todosStatusCd:
|
|
12742
|
-
isStale:
|
|
12743
|
-
hasComments:
|
|
12744
|
-
needsResponse:
|
|
12745
|
-
createdAt:
|
|
12746
|
-
completedAt:
|
|
12747
|
-
lastActivityAt:
|
|
12748
|
-
firstCommentAt:
|
|
12749
|
-
lastCommentAt:
|
|
12750
|
-
daysOpen:
|
|
12751
|
-
daysSinceLastEvent:
|
|
12752
|
-
daysToFirstComment:
|
|
12753
|
-
cycleTimeDays:
|
|
12754
|
-
commentCount:
|
|
12755
|
-
activeDaysCount:
|
|
12756
|
-
activitySpanDays:
|
|
12757
|
-
avgDaysBetweenActivity:
|
|
12758
|
-
lastCommenterId:
|
|
12759
|
-
dateCreated:
|
|
12760
|
-
dateLastModified:
|
|
12761
|
-
updateCd:
|
|
12762
|
-
statusCd:
|
|
12763
|
-
processCd:
|
|
12764
|
-
});
|
|
12765
|
-
var PeopleDataSchema =
|
|
12766
|
-
id:
|
|
12767
|
-
identityId:
|
|
12768
|
-
name:
|
|
12769
|
-
emailAddress:
|
|
12770
|
-
adminFlag:
|
|
12771
|
-
trashedFlag:
|
|
12772
|
-
updatedAt:
|
|
12773
|
-
createdAt:
|
|
12774
|
-
url:
|
|
12775
|
-
appUrl:
|
|
12776
|
-
avatarUrl:
|
|
12777
|
-
fullsizeAvatarUrl:
|
|
12778
|
-
updateCd:
|
|
12779
|
-
statusCd:
|
|
12780
|
-
processCd:
|
|
12781
|
-
});
|
|
12782
|
-
var ProjectsDataSchema =
|
|
12783
|
-
id:
|
|
12784
|
-
name:
|
|
12785
|
-
description:
|
|
12786
|
-
updatedAt:
|
|
12787
|
-
createdAt:
|
|
12788
|
-
lastEventAt:
|
|
12789
|
-
url:
|
|
12790
|
-
appUrl:
|
|
12791
|
-
templateFlag:
|
|
12792
|
-
archivedFlag:
|
|
12793
|
-
starredFlag:
|
|
12794
|
-
trashedFlag:
|
|
12795
|
-
draftFlag:
|
|
12796
|
-
isClientProjectFlag:
|
|
12797
|
-
color:
|
|
12798
|
-
updateCd:
|
|
12799
|
-
statusCd:
|
|
12800
|
-
processCd:
|
|
12801
|
-
});
|
|
12802
|
-
var TodolistsDataSchema =
|
|
12803
|
-
id:
|
|
12804
|
-
name:
|
|
12805
|
-
description:
|
|
12806
|
-
updatedAt:
|
|
12807
|
-
createdAt:
|
|
12808
|
-
url:
|
|
12809
|
-
appUrl:
|
|
12810
|
-
completedFlag:
|
|
12811
|
-
privateFlag:
|
|
12812
|
-
trashedFlag:
|
|
12813
|
-
completedCount:
|
|
12814
|
-
remainingCount:
|
|
12815
|
-
creatorId:
|
|
12816
|
-
bucketId:
|
|
12817
|
-
updateCd:
|
|
12818
|
-
position:
|
|
12819
|
-
statusCd:
|
|
12820
|
-
processCd:
|
|
12821
|
-
projectsId:
|
|
12822
|
-
});
|
|
12823
|
-
var TodosDataSchema =
|
|
12824
|
-
id:
|
|
12825
|
-
todolistId:
|
|
12826
|
-
content:
|
|
12827
|
-
dueAt:
|
|
12828
|
-
dueOn:
|
|
12829
|
-
updatedAt:
|
|
12830
|
-
createdAt:
|
|
12831
|
-
completedAt:
|
|
12832
|
-
commentsCount:
|
|
12833
|
-
privateFlag:
|
|
12834
|
-
trashedFlag:
|
|
12835
|
-
creatorId:
|
|
12836
|
-
assigneeId:
|
|
12837
|
-
completedFlag:
|
|
12838
|
-
url:
|
|
12839
|
-
appUrl:
|
|
12840
|
-
updateCd:
|
|
12841
|
-
position:
|
|
12842
|
-
projectsId:
|
|
12843
|
-
detailJson:
|
|
12844
|
-
pullDetailCd:
|
|
12845
|
-
processCd:
|
|
12846
|
-
agrInfoCd:
|
|
12847
|
-
statusCd:
|
|
12848
|
-
lastCommentAt:
|
|
12849
|
-
vector:
|
|
12850
|
-
vectorCd:
|
|
12851
|
-
vectorFlag:
|
|
12852
|
-
dateLastVector:
|
|
12853
|
-
});
|
|
12854
|
-
var TodosSummaryDataSchema =
|
|
12855
|
-
id:
|
|
12856
|
-
summary:
|
|
12857
|
-
summaryTokens:
|
|
12858
|
-
context:
|
|
12859
|
-
contextTokens:
|
|
12860
|
-
modelName:
|
|
12861
|
-
vector:
|
|
12862
|
-
vectorCd:
|
|
12863
|
-
statusCd:
|
|
12864
|
-
processCd:
|
|
12865
|
-
updateCd:
|
|
12866
|
-
dateCreated:
|
|
12867
|
-
dateLastModified:
|
|
12868
|
-
akashaCd:
|
|
12869
|
-
complexityScore:
|
|
12870
|
-
complexityReason:
|
|
12871
|
-
estimatedMinutes:
|
|
12872
|
-
requiredServices:
|
|
12873
|
-
worthinessReason:
|
|
12874
|
-
});
|
|
12875
|
-
var TodosSessionsDataSchema =
|
|
12876
|
-
todosSessionsUid:
|
|
12877
|
-
todosId:
|
|
12878
|
-
sessionNum:
|
|
12879
|
-
sessionStatusCd:
|
|
12880
|
-
subject:
|
|
12881
|
-
problem:
|
|
12882
|
-
investigation:
|
|
12883
|
-
plan:
|
|
12884
|
-
outcome:
|
|
12885
|
-
dateCreated:
|
|
12886
|
-
dateLastModified:
|
|
12887
|
-
updateCd:
|
|
12888
|
-
statusCd:
|
|
12889
|
-
processCd:
|
|
12890
|
-
});
|
|
12891
|
-
var
|
|
12866
|
+
var v36 = __toESM(require("valibot"));
|
|
12867
|
+
var CommentsListParamsSchema = v36.looseObject({
|
|
12868
|
+
...EdgeCacheParamsSchema.entries,
|
|
12869
|
+
creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12870
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12871
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12872
|
+
order_by: v36.optional(v36.string()),
|
|
12873
|
+
todos_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12874
|
+
});
|
|
12875
|
+
var EventsListParamsSchema = v36.looseObject({
|
|
12876
|
+
...EdgeCacheParamsSchema.entries,
|
|
12877
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12878
|
+
id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12879
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12880
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12881
|
+
order_by: v36.optional(v36.string()),
|
|
12882
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12883
|
+
});
|
|
12884
|
+
var MetricsListParamsSchema = v36.looseObject({
|
|
12885
|
+
...EdgeCacheParamsSchema.entries,
|
|
12886
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12887
|
+
creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12888
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12889
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12890
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12891
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12892
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12893
|
+
orderBy: v36.optional(v36.string()),
|
|
12894
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12895
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12896
|
+
});
|
|
12897
|
+
var PeopleListParamsSchema = v36.looseObject({
|
|
12898
|
+
...EdgeCacheParamsSchema.entries,
|
|
12899
|
+
adminFlag: v36.optional(v36.string()),
|
|
12900
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12901
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12902
|
+
orderBy: v36.optional(v36.string()),
|
|
12903
|
+
q: v36.optional(v36.string()),
|
|
12904
|
+
trashedFlag: v36.optional(v36.string())
|
|
12905
|
+
});
|
|
12906
|
+
var PeopleMetricsListParamsSchema = v36.looseObject({
|
|
12907
|
+
...EdgeCacheParamsSchema.entries,
|
|
12908
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12909
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12910
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12911
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12912
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12913
|
+
orderBy: v36.optional(v36.string()),
|
|
12914
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12915
|
+
});
|
|
12916
|
+
var PeopleTodosListParamsSchema = v36.looseObject({
|
|
12917
|
+
...EdgeCacheParamsSchema.entries,
|
|
12918
|
+
completed_flag: v36.optional(v36.string()),
|
|
12919
|
+
due_at: v36.optional(v36.string()),
|
|
12920
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12921
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12922
|
+
order_by: v36.optional(v36.string()),
|
|
12923
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12924
|
+
});
|
|
12925
|
+
var PeopleProjectsTodosListParamsSchema = v36.looseObject({
|
|
12926
|
+
...EdgeCacheParamsSchema.entries,
|
|
12927
|
+
completed_flag: v36.optional(v36.string()),
|
|
12928
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12929
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12930
|
+
order_by: v36.optional(v36.string())
|
|
12931
|
+
});
|
|
12932
|
+
var ProjectsListParamsSchema = v36.looseObject({
|
|
12933
|
+
...EdgeCacheParamsSchema.entries,
|
|
12934
|
+
archived_flag: v36.optional(v36.string()),
|
|
12935
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12936
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12937
|
+
order_by: v36.optional(v36.string()),
|
|
12938
|
+
trashed_flag: v36.optional(v36.string())
|
|
12939
|
+
});
|
|
12940
|
+
var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
12941
|
+
...EdgeCacheParamsSchema.entries,
|
|
12942
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12943
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12944
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12945
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12946
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12947
|
+
orderBy: v36.optional(v36.string()),
|
|
12948
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12949
|
+
});
|
|
12950
|
+
var ProjectsTodolistsListParamsSchema = v36.looseObject({
|
|
12951
|
+
...EdgeCacheParamsSchema.entries,
|
|
12952
|
+
completed_flag: v36.optional(v36.string()),
|
|
12953
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12954
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12955
|
+
order_by: v36.optional(v36.string())
|
|
12956
|
+
});
|
|
12957
|
+
var ProjectsTodosListParamsSchema = v36.looseObject({
|
|
12958
|
+
...EdgeCacheParamsSchema.entries,
|
|
12959
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12960
|
+
completed_flag: v36.optional(v36.string()),
|
|
12961
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12962
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12963
|
+
order_by: v36.optional(v36.string())
|
|
12964
|
+
});
|
|
12965
|
+
var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
|
|
12966
|
+
...EdgeCacheParamsSchema.entries,
|
|
12967
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12968
|
+
completed_flag: v36.optional(v36.string()),
|
|
12969
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12970
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12971
|
+
order_by: v36.optional(v36.string())
|
|
12972
|
+
});
|
|
12973
|
+
var TodolistsListParamsSchema = v36.looseObject({
|
|
12974
|
+
...EdgeCacheParamsSchema.entries,
|
|
12975
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12976
|
+
completed_flag: v36.optional(v36.string()),
|
|
12977
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12978
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12979
|
+
order_by: v36.optional(v36.string()),
|
|
12980
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12981
|
+
});
|
|
12982
|
+
var TodosListParamsSchema = v36.looseObject({
|
|
12983
|
+
...EdgeCacheParamsSchema.entries,
|
|
12984
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12985
|
+
completed_flag: v36.optional(v36.string()),
|
|
12986
|
+
due_at: v36.optional(v36.string()),
|
|
12987
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12988
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12989
|
+
order_by: v36.optional(v36.string()),
|
|
12990
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12991
|
+
todolist_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12992
|
+
});
|
|
12993
|
+
var TodosSummaryListParamsSchema = v36.looseObject({
|
|
12994
|
+
...EdgeCacheParamsSchema.entries,
|
|
12995
|
+
akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12996
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12997
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12998
|
+
process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12999
|
+
});
|
|
13000
|
+
var TodosCommentsListParamsSchema = v36.looseObject({
|
|
13001
|
+
...EdgeCacheParamsSchema.entries,
|
|
13002
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13003
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13004
|
+
order_by: v36.optional(v36.string())
|
|
13005
|
+
});
|
|
13006
|
+
var TodosEventsListParamsSchema = v36.looseObject({
|
|
13007
|
+
...EdgeCacheParamsSchema.entries,
|
|
13008
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13009
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13010
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13011
|
+
order_by: v36.optional(v36.string()),
|
|
13012
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13013
|
+
});
|
|
13014
|
+
var TodosSessionsListParamsSchema = v36.looseObject({
|
|
13015
|
+
...EdgeCacheParamsSchema.entries,
|
|
13016
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13017
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13018
|
+
order_by: v36.optional(v36.string()),
|
|
13019
|
+
session_status_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13020
|
+
});
|
|
13021
|
+
var CommentsDataSchema = v36.looseObject({
|
|
13022
|
+
id: v36.optional(v36.number()),
|
|
13023
|
+
content: v36.optional(v36.string()),
|
|
13024
|
+
updatedAt: v36.optional(v36.string()),
|
|
13025
|
+
createdAt: v36.optional(v36.string()),
|
|
13026
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13027
|
+
updateCd: v36.optional(v36.number()),
|
|
13028
|
+
statusCd: v36.optional(v36.number()),
|
|
13029
|
+
processCd: v36.optional(v36.number()),
|
|
13030
|
+
todosId: v36.optional(v36.nullable(v36.number())),
|
|
13031
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13032
|
+
vectorCd: v36.optional(v36.number()),
|
|
13033
|
+
vectorFlag: v36.optional(v36.string()),
|
|
13034
|
+
dateLastVector: v36.optional(v36.string()),
|
|
13035
|
+
location: v36.optional(v36.nullable(v36.string())),
|
|
13036
|
+
contentLength: v36.optional(v36.number()),
|
|
13037
|
+
tokenCount: v36.optional(v36.number())
|
|
13038
|
+
});
|
|
13039
|
+
var EventsDataSchema = v36.looseObject({
|
|
13040
|
+
id: v36.optional(v36.number()),
|
|
13041
|
+
eventNum: v36.optional(v36.number()),
|
|
13042
|
+
eventTypeCd: v36.optional(v36.number()),
|
|
13043
|
+
peopleId: v36.optional(v36.number()),
|
|
13044
|
+
eventAt: v36.optional(v36.string()),
|
|
13045
|
+
commentId: v36.optional(v36.nullable(v36.number())),
|
|
13046
|
+
dateCreated: v36.optional(v36.string()),
|
|
13047
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13048
|
+
updateCd: v36.optional(v36.number()),
|
|
13049
|
+
statusCd: v36.optional(v36.number()),
|
|
13050
|
+
processCd: v36.optional(v36.number()),
|
|
13051
|
+
todosSessionsUid: v36.optional(v36.nullable(v36.number()))
|
|
13052
|
+
});
|
|
13053
|
+
var MetricsDataSchema = v36.looseObject({
|
|
13054
|
+
id: v36.optional(v36.number()),
|
|
13055
|
+
projectsId: v36.optional(v36.nullable(v36.number())),
|
|
13056
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
13057
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
13058
|
+
creatorId: v36.optional(v36.number()),
|
|
13059
|
+
todosContent: v36.optional(v36.nullable(v36.string())),
|
|
13060
|
+
todosStatusCd: v36.optional(v36.number()),
|
|
13061
|
+
isStale: v36.optional(v36.number()),
|
|
13062
|
+
hasComments: v36.optional(v36.number()),
|
|
13063
|
+
needsResponse: v36.optional(v36.number()),
|
|
13064
|
+
createdAt: v36.optional(v36.string()),
|
|
13065
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
13066
|
+
lastActivityAt: v36.optional(v36.string()),
|
|
13067
|
+
firstCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
13068
|
+
lastCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
13069
|
+
daysOpen: v36.optional(v36.nullable(v36.number())),
|
|
13070
|
+
daysSinceLastEvent: v36.optional(v36.nullable(v36.number())),
|
|
13071
|
+
daysToFirstComment: v36.optional(v36.nullable(v36.number())),
|
|
13072
|
+
cycleTimeDays: v36.optional(v36.nullable(v36.number())),
|
|
13073
|
+
commentCount: v36.optional(v36.number()),
|
|
13074
|
+
activeDaysCount: v36.optional(v36.number()),
|
|
13075
|
+
activitySpanDays: v36.optional(v36.nullable(v36.number())),
|
|
13076
|
+
avgDaysBetweenActivity: v36.optional(v36.nullable(v36.number())),
|
|
13077
|
+
lastCommenterId: v36.optional(v36.nullable(v36.number())),
|
|
13078
|
+
dateCreated: v36.optional(v36.string()),
|
|
13079
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13080
|
+
updateCd: v36.optional(v36.number()),
|
|
13081
|
+
statusCd: v36.optional(v36.number()),
|
|
13082
|
+
processCd: v36.optional(v36.number())
|
|
13083
|
+
});
|
|
13084
|
+
var PeopleDataSchema = v36.looseObject({
|
|
13085
|
+
id: v36.optional(v36.number()),
|
|
13086
|
+
identityId: v36.optional(v36.nullable(v36.number())),
|
|
13087
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13088
|
+
emailAddress: v36.optional(v36.nullable(v36.string())),
|
|
13089
|
+
adminFlag: v36.optional(v36.nullable(v36.string())),
|
|
13090
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13091
|
+
updatedAt: v36.optional(v36.string()),
|
|
13092
|
+
createdAt: v36.optional(v36.string()),
|
|
13093
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13094
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13095
|
+
avatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
13096
|
+
fullsizeAvatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
13097
|
+
updateCd: v36.optional(v36.number()),
|
|
13098
|
+
statusCd: v36.optional(v36.number()),
|
|
13099
|
+
processCd: v36.optional(v36.number())
|
|
13100
|
+
});
|
|
13101
|
+
var ProjectsDataSchema = v36.looseObject({
|
|
13102
|
+
id: v36.optional(v36.number()),
|
|
13103
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13104
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13105
|
+
updatedAt: v36.optional(v36.string()),
|
|
13106
|
+
createdAt: v36.optional(v36.string()),
|
|
13107
|
+
lastEventAt: v36.optional(v36.string()),
|
|
13108
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13109
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13110
|
+
templateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13111
|
+
archivedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13112
|
+
starredFlag: v36.optional(v36.nullable(v36.string())),
|
|
13113
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13114
|
+
draftFlag: v36.optional(v36.nullable(v36.string())),
|
|
13115
|
+
isClientProjectFlag: v36.optional(v36.nullable(v36.string())),
|
|
13116
|
+
color: v36.optional(v36.nullable(v36.string())),
|
|
13117
|
+
updateCd: v36.optional(v36.number()),
|
|
13118
|
+
statusCd: v36.optional(v36.number()),
|
|
13119
|
+
processCd: v36.optional(v36.number())
|
|
13120
|
+
});
|
|
13121
|
+
var TodolistsDataSchema = v36.looseObject({
|
|
13122
|
+
id: v36.optional(v36.number()),
|
|
13123
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13124
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13125
|
+
updatedAt: v36.optional(v36.string()),
|
|
13126
|
+
createdAt: v36.optional(v36.string()),
|
|
13127
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13128
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13129
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13130
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13131
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13132
|
+
completedCount: v36.optional(v36.nullable(v36.number())),
|
|
13133
|
+
remainingCount: v36.optional(v36.nullable(v36.number())),
|
|
13134
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13135
|
+
bucketId: v36.optional(v36.nullable(v36.number())),
|
|
13136
|
+
updateCd: v36.optional(v36.number()),
|
|
13137
|
+
position: v36.optional(v36.number()),
|
|
13138
|
+
statusCd: v36.optional(v36.number()),
|
|
13139
|
+
processCd: v36.optional(v36.number()),
|
|
13140
|
+
projectsId: v36.optional(v36.number())
|
|
13141
|
+
});
|
|
13142
|
+
var TodosDataSchema = v36.looseObject({
|
|
13143
|
+
id: v36.optional(v36.number()),
|
|
13144
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
13145
|
+
content: v36.optional(v36.nullable(v36.string())),
|
|
13146
|
+
dueAt: v36.optional(v36.nullable(v36.string())),
|
|
13147
|
+
dueOn: v36.optional(v36.nullable(v36.string())),
|
|
13148
|
+
updatedAt: v36.optional(v36.string()),
|
|
13149
|
+
createdAt: v36.optional(v36.string()),
|
|
13150
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
13151
|
+
commentsCount: v36.optional(v36.nullable(v36.number())),
|
|
13152
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13153
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13154
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13155
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
13156
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13157
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13158
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13159
|
+
updateCd: v36.optional(v36.number()),
|
|
13160
|
+
position: v36.optional(v36.number()),
|
|
13161
|
+
projectsId: v36.optional(v36.number()),
|
|
13162
|
+
detailJson: v36.optional(v36.nullable(v36.string())),
|
|
13163
|
+
pullDetailCd: v36.optional(v36.number()),
|
|
13164
|
+
processCd: v36.optional(v36.number()),
|
|
13165
|
+
agrInfoCd: v36.optional(v36.number()),
|
|
13166
|
+
statusCd: v36.optional(v36.number()),
|
|
13167
|
+
lastCommentAt: v36.optional(v36.string()),
|
|
13168
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13169
|
+
vectorCd: v36.optional(v36.number()),
|
|
13170
|
+
vectorFlag: v36.optional(v36.string()),
|
|
13171
|
+
dateLastVector: v36.optional(v36.string())
|
|
13172
|
+
});
|
|
13173
|
+
var TodosSummaryDataSchema = v36.looseObject({
|
|
13174
|
+
id: v36.optional(v36.number()),
|
|
13175
|
+
summary: v36.optional(v36.nullable(v36.string())),
|
|
13176
|
+
summaryTokens: v36.optional(v36.number()),
|
|
13177
|
+
context: v36.optional(v36.nullable(v36.string())),
|
|
13178
|
+
contextTokens: v36.optional(v36.number()),
|
|
13179
|
+
modelName: v36.optional(v36.nullable(v36.string())),
|
|
13180
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13181
|
+
vectorCd: v36.optional(v36.number()),
|
|
13182
|
+
statusCd: v36.optional(v36.number()),
|
|
13183
|
+
processCd: v36.optional(v36.number()),
|
|
13184
|
+
updateCd: v36.optional(v36.number()),
|
|
13185
|
+
dateCreated: v36.optional(v36.string()),
|
|
13186
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13187
|
+
akashaCd: v36.optional(v36.number()),
|
|
13188
|
+
complexityScore: v36.optional(v36.nullable(v36.number())),
|
|
13189
|
+
complexityReason: v36.optional(v36.nullable(v36.string())),
|
|
13190
|
+
estimatedMinutes: v36.optional(v36.nullable(v36.number())),
|
|
13191
|
+
requiredServices: v36.optional(v36.nullable(v36.string())),
|
|
13192
|
+
worthinessReason: v36.optional(v36.nullable(v36.string()))
|
|
13193
|
+
});
|
|
13194
|
+
var TodosSessionsDataSchema = v36.looseObject({
|
|
13195
|
+
todosSessionsUid: v36.optional(v36.number()),
|
|
13196
|
+
todosId: v36.optional(v36.number()),
|
|
13197
|
+
sessionNum: v36.optional(v36.number()),
|
|
13198
|
+
sessionStatusCd: v36.optional(v36.number()),
|
|
13199
|
+
subject: v36.optional(v36.nullable(v36.string())),
|
|
13200
|
+
problem: v36.optional(v36.nullable(v36.string())),
|
|
13201
|
+
investigation: v36.optional(v36.nullable(v36.string())),
|
|
13202
|
+
plan: v36.optional(v36.nullable(v36.string())),
|
|
13203
|
+
outcome: v36.optional(v36.nullable(v36.string())),
|
|
13204
|
+
dateCreated: v36.optional(v36.string()),
|
|
13205
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13206
|
+
updateCd: v36.optional(v36.number()),
|
|
13207
|
+
statusCd: v36.optional(v36.number()),
|
|
13208
|
+
processCd: v36.optional(v36.number())
|
|
13209
|
+
});
|
|
13210
|
+
var PassthroughDataSchema27 = v36.record(v36.string(), v36.unknown());
|
|
12892
13211
|
|
|
12893
13212
|
// src/services/basecamp2/generated/endpoints.ts
|
|
12894
|
-
var
|
|
13213
|
+
var endpoints27 = [
|
|
12895
13214
|
{
|
|
12896
13215
|
method: "GET",
|
|
12897
13216
|
path: "/comments",
|
|
@@ -13345,7 +13664,7 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13345
13664
|
const proxy = createServiceProxy(
|
|
13346
13665
|
"basecamp2",
|
|
13347
13666
|
boundExecuteRequest,
|
|
13348
|
-
|
|
13667
|
+
endpoints27
|
|
13349
13668
|
);
|
|
13350
13669
|
const dataProxy = createDataProxy(proxy);
|
|
13351
13670
|
this.comments = proxy.comments;
|
|
@@ -13564,6 +13883,16 @@ var AugurAPI = class _AugurAPI {
|
|
|
13564
13883
|
}
|
|
13565
13884
|
return this._agrInfo;
|
|
13566
13885
|
}
|
|
13886
|
+
/**
|
|
13887
|
+
* Access AGR Int (internal RBAC) service endpoints
|
|
13888
|
+
*/
|
|
13889
|
+
get agrInt() {
|
|
13890
|
+
if (!this._agrInt) {
|
|
13891
|
+
const httpClient = new HTTPClient("agr-int", this.config);
|
|
13892
|
+
this._agrInt = new AgrIntClient(httpClient);
|
|
13893
|
+
}
|
|
13894
|
+
return this._agrInt;
|
|
13895
|
+
}
|
|
13567
13896
|
/**
|
|
13568
13897
|
* Access AGR Work service endpoints
|
|
13569
13898
|
*/
|
|
@@ -13714,6 +14043,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13714
14043
|
this._p21Pim = void 0;
|
|
13715
14044
|
this._payments = void 0;
|
|
13716
14045
|
this._agrInfo = void 0;
|
|
14046
|
+
this._agrInt = void 0;
|
|
13717
14047
|
this._agrWork = void 0;
|
|
13718
14048
|
this._avalara = void 0;
|
|
13719
14049
|
this._brandFolder = void 0;
|
|
@@ -13748,6 +14078,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13748
14078
|
this._p21Pim = void 0;
|
|
13749
14079
|
this._payments = void 0;
|
|
13750
14080
|
this._agrInfo = void 0;
|
|
14081
|
+
this._agrInt = void 0;
|
|
13751
14082
|
this._agrWork = void 0;
|
|
13752
14083
|
this._avalara = void 0;
|
|
13753
14084
|
this._brandFolder = void 0;
|
|
@@ -13805,6 +14136,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13805
14136
|
{ name: "p21Pim", client: this.p21Pim },
|
|
13806
14137
|
{ name: "payments", client: this.payments },
|
|
13807
14138
|
{ name: "agrInfo", client: this.agrInfo },
|
|
14139
|
+
{ name: "agrInt", client: this.agrInt },
|
|
13808
14140
|
{ name: "agrWork", client: this.agrWork },
|
|
13809
14141
|
{ name: "avalara", client: this.avalara },
|
|
13810
14142
|
{ name: "brandFolder", client: this.brandFolder },
|
|
@@ -13899,11 +14231,11 @@ var AugurAPI = class _AugurAPI {
|
|
|
13899
14231
|
/**
|
|
13900
14232
|
* Search and score endpoints against search term
|
|
13901
14233
|
*/
|
|
13902
|
-
searchAndScoreEndpoints(
|
|
14234
|
+
searchAndScoreEndpoints(endpoints28, searchTerm, options) {
|
|
13903
14235
|
const { domain, minScore } = options;
|
|
13904
14236
|
const results = [];
|
|
13905
14237
|
const searchTermLower = searchTerm.toLowerCase();
|
|
13906
|
-
for (const endpoint of
|
|
14238
|
+
for (const endpoint of endpoints28) {
|
|
13907
14239
|
if (!this.isValidEndpoint(endpoint)) {
|
|
13908
14240
|
continue;
|
|
13909
14241
|
}
|
|
@@ -14257,10 +14589,11 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14257
14589
|
}
|
|
14258
14590
|
|
|
14259
14591
|
// src/index.ts
|
|
14260
|
-
var VERSION = "2026.6.
|
|
14592
|
+
var VERSION = "2026.6.3";
|
|
14261
14593
|
// Annotate the CommonJS export names for ESM import in node:
|
|
14262
14594
|
0 && (module.exports = {
|
|
14263
14595
|
AgrInfoClient,
|
|
14596
|
+
AgrIntClient,
|
|
14264
14597
|
AgrSiteClient,
|
|
14265
14598
|
AgrWorkClient,
|
|
14266
14599
|
AugurAPI,
|