@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.mjs
CHANGED
|
@@ -160,11 +160,11 @@ function buildUrlWithParams(url, params) {
|
|
|
160
160
|
return `${url}${separator}${queryString}`;
|
|
161
161
|
}
|
|
162
162
|
function headersToRecord(headers) {
|
|
163
|
-
const
|
|
163
|
+
const record29 = {};
|
|
164
164
|
headers.forEach((value, key) => {
|
|
165
|
-
|
|
165
|
+
record29[key] = value;
|
|
166
166
|
});
|
|
167
|
-
return
|
|
167
|
+
return record29;
|
|
168
168
|
}
|
|
169
169
|
var HTTPClient = class {
|
|
170
170
|
constructor(serviceName, config) {
|
|
@@ -1109,19 +1109,19 @@ Provided parameters: ${JSON.stringify(params, null, 2)}`;
|
|
|
1109
1109
|
* @returns ServiceDiscoveryMetadata containing service info and endpoint metadata
|
|
1110
1110
|
*/
|
|
1111
1111
|
getDiscoveryMetadata() {
|
|
1112
|
-
const
|
|
1112
|
+
const endpoints28 = [];
|
|
1113
1113
|
const methods = this.getAllMethods();
|
|
1114
1114
|
for (const methodName of methods) {
|
|
1115
1115
|
const metadata = this.extractMethodMetadata(methodName);
|
|
1116
1116
|
if (metadata && metadata.discoverable) {
|
|
1117
|
-
|
|
1117
|
+
endpoints28.push(metadata);
|
|
1118
1118
|
}
|
|
1119
1119
|
}
|
|
1120
1120
|
return {
|
|
1121
1121
|
serviceName: this.serviceName,
|
|
1122
1122
|
description: this.getServiceDescription(),
|
|
1123
1123
|
baseUrl: this.baseUrl,
|
|
1124
|
-
endpoints:
|
|
1124
|
+
endpoints: endpoints28
|
|
1125
1125
|
};
|
|
1126
1126
|
}
|
|
1127
1127
|
/**
|
|
@@ -1297,9 +1297,9 @@ var PassthroughResponseSchema = v3.looseObject({
|
|
|
1297
1297
|
totalResults: v3.number()
|
|
1298
1298
|
});
|
|
1299
1299
|
var PassthroughParamsSchema = v3.looseObject({});
|
|
1300
|
-
function buildEndpointTrie(
|
|
1300
|
+
function buildEndpointTrie(endpoints28) {
|
|
1301
1301
|
const root = { actions: /* @__PURE__ */ new Map(), children: /* @__PURE__ */ new Map() };
|
|
1302
|
-
for (const ep of
|
|
1302
|
+
for (const ep of endpoints28) {
|
|
1303
1303
|
const parts = ep.chain.split(".");
|
|
1304
1304
|
let node = root;
|
|
1305
1305
|
for (const part of parts) {
|
|
@@ -1315,8 +1315,8 @@ function buildEndpointTrie(endpoints27) {
|
|
|
1315
1315
|
}
|
|
1316
1316
|
return root;
|
|
1317
1317
|
}
|
|
1318
|
-
function createServiceProxy(serviceName, executeRequest,
|
|
1319
|
-
const trie = buildEndpointTrie(
|
|
1318
|
+
function createServiceProxy(serviceName, executeRequest, endpoints28) {
|
|
1319
|
+
const trie = buildEndpointTrie(endpoints28);
|
|
1320
1320
|
return createNodeObject(serviceName, executeRequest, trie);
|
|
1321
1321
|
}
|
|
1322
1322
|
function createNodeObject(serviceName, executeRequest, node) {
|
|
@@ -9723,6 +9723,324 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9723
9723
|
}
|
|
9724
9724
|
};
|
|
9725
9725
|
|
|
9726
|
+
// src/services/agr-int/generated/schemas.ts
|
|
9727
|
+
import * as v22 from "valibot";
|
|
9728
|
+
var RolesListParamsSchema = v22.looseObject({
|
|
9729
|
+
...EdgeCacheParamsSchema.entries,
|
|
9730
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9731
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9732
|
+
orderBy: v22.optional(v22.string()),
|
|
9733
|
+
roleId: v22.optional(v22.string()),
|
|
9734
|
+
roleName: v22.optional(v22.string()),
|
|
9735
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9736
|
+
systemFlag: v22.optional(v22.string())
|
|
9737
|
+
});
|
|
9738
|
+
var UsersListParamsSchema = v22.looseObject({
|
|
9739
|
+
...EdgeCacheParamsSchema.entries,
|
|
9740
|
+
email: v22.optional(v22.string()),
|
|
9741
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9742
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9743
|
+
orderBy: v22.optional(v22.string()),
|
|
9744
|
+
phoneNumber: v22.optional(v22.string()),
|
|
9745
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9746
|
+
username: v22.optional(v22.string())
|
|
9747
|
+
});
|
|
9748
|
+
var UsersRolesListParamsSchema = v22.looseObject({
|
|
9749
|
+
...EdgeCacheParamsSchema.entries,
|
|
9750
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9751
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9752
|
+
orderBy: v22.optional(v22.string()),
|
|
9753
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
|
|
9754
|
+
});
|
|
9755
|
+
var RolesDataSchema = v22.looseObject({
|
|
9756
|
+
rolesUid: v22.optional(v22.number()),
|
|
9757
|
+
roleId: v22.optional(v22.string()),
|
|
9758
|
+
roleName: v22.optional(v22.string()),
|
|
9759
|
+
description: v22.optional(v22.nullable(v22.string())),
|
|
9760
|
+
systemFlag: v22.optional(v22.string()),
|
|
9761
|
+
dateCreated: v22.optional(v22.string()),
|
|
9762
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9763
|
+
updateCd: v22.optional(v22.number()),
|
|
9764
|
+
statusCd: v22.optional(v22.number()),
|
|
9765
|
+
processCd: v22.optional(v22.number())
|
|
9766
|
+
});
|
|
9767
|
+
var UsersDataSchema = v22.looseObject({
|
|
9768
|
+
usersUid: v22.optional(v22.number()),
|
|
9769
|
+
username: v22.optional(v22.string()),
|
|
9770
|
+
password: v22.optional(v22.string()),
|
|
9771
|
+
name: v22.optional(v22.nullable(v22.string())),
|
|
9772
|
+
email: v22.optional(v22.string()),
|
|
9773
|
+
phoneNumber: v22.optional(v22.nullable(v22.string())),
|
|
9774
|
+
dateCreated: v22.optional(v22.string()),
|
|
9775
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9776
|
+
updateCd: v22.optional(v22.number()),
|
|
9777
|
+
statusCd: v22.optional(v22.number()),
|
|
9778
|
+
processCd: v22.optional(v22.number())
|
|
9779
|
+
});
|
|
9780
|
+
var UsersRotateDataSchema = v22.looseObject({
|
|
9781
|
+
usersUid: v22.optional(v22.number()),
|
|
9782
|
+
username: v22.optional(v22.string()),
|
|
9783
|
+
token: v22.optional(v22.string())
|
|
9784
|
+
});
|
|
9785
|
+
var UsersValidateDataSchema = v22.looseObject({
|
|
9786
|
+
valid: v22.optional(v22.boolean()),
|
|
9787
|
+
scope: v22.optional(v22.string()),
|
|
9788
|
+
userId: v22.optional(v22.number()),
|
|
9789
|
+
username: v22.optional(v22.string()),
|
|
9790
|
+
email: v22.optional(v22.string()),
|
|
9791
|
+
name: v22.optional(v22.string())
|
|
9792
|
+
});
|
|
9793
|
+
var UsersRolesDataSchema = v22.looseObject({
|
|
9794
|
+
usersXRolesUid: v22.optional(v22.number()),
|
|
9795
|
+
usersUid: v22.optional(v22.number()),
|
|
9796
|
+
rolesUid: v22.optional(v22.number()),
|
|
9797
|
+
dateCreated: v22.optional(v22.string()),
|
|
9798
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9799
|
+
updateCd: v22.optional(v22.number()),
|
|
9800
|
+
statusCd: v22.optional(v22.number()),
|
|
9801
|
+
processCd: v22.optional(v22.number())
|
|
9802
|
+
});
|
|
9803
|
+
var PassthroughDataSchema15 = v22.record(v22.string(), v22.unknown());
|
|
9804
|
+
|
|
9805
|
+
// src/services/agr-int/generated/endpoints.ts
|
|
9806
|
+
var endpoints15 = [
|
|
9807
|
+
{
|
|
9808
|
+
method: "GET",
|
|
9809
|
+
path: "/roles",
|
|
9810
|
+
chain: "roles",
|
|
9811
|
+
action: "list",
|
|
9812
|
+
aliases: [],
|
|
9813
|
+
pathParams: [],
|
|
9814
|
+
queryParams: ["limit", "offset", "orderBy", "roleId", "roleName", "statusCd", "systemFlag"],
|
|
9815
|
+
edgeCache: true,
|
|
9816
|
+
responseSchema: RolesDataSchema,
|
|
9817
|
+
responseType: "array"
|
|
9818
|
+
},
|
|
9819
|
+
{
|
|
9820
|
+
method: "POST",
|
|
9821
|
+
path: "/roles",
|
|
9822
|
+
chain: "roles",
|
|
9823
|
+
action: "create",
|
|
9824
|
+
aliases: [],
|
|
9825
|
+
pathParams: [],
|
|
9826
|
+
queryParams: [],
|
|
9827
|
+
edgeCache: false,
|
|
9828
|
+
responseSchema: RolesDataSchema,
|
|
9829
|
+
responseType: "object"
|
|
9830
|
+
},
|
|
9831
|
+
{
|
|
9832
|
+
method: "GET",
|
|
9833
|
+
path: "/roles/{rolesUid}",
|
|
9834
|
+
chain: "roles",
|
|
9835
|
+
action: "get",
|
|
9836
|
+
aliases: [],
|
|
9837
|
+
pathParams: ["rolesUid"],
|
|
9838
|
+
queryParams: [],
|
|
9839
|
+
edgeCache: true,
|
|
9840
|
+
responseSchema: RolesDataSchema,
|
|
9841
|
+
responseType: "object"
|
|
9842
|
+
},
|
|
9843
|
+
{
|
|
9844
|
+
method: "PUT",
|
|
9845
|
+
path: "/roles/{rolesUid}",
|
|
9846
|
+
chain: "roles",
|
|
9847
|
+
action: "update",
|
|
9848
|
+
aliases: [],
|
|
9849
|
+
pathParams: ["rolesUid"],
|
|
9850
|
+
queryParams: [],
|
|
9851
|
+
edgeCache: false,
|
|
9852
|
+
responseSchema: RolesDataSchema,
|
|
9853
|
+
responseType: "object"
|
|
9854
|
+
},
|
|
9855
|
+
{
|
|
9856
|
+
method: "DELETE",
|
|
9857
|
+
path: "/roles/{rolesUid}",
|
|
9858
|
+
chain: "roles",
|
|
9859
|
+
action: "delete",
|
|
9860
|
+
aliases: [],
|
|
9861
|
+
pathParams: ["rolesUid"],
|
|
9862
|
+
queryParams: [],
|
|
9863
|
+
edgeCache: false,
|
|
9864
|
+
responseSchema: RolesDataSchema,
|
|
9865
|
+
responseType: "object"
|
|
9866
|
+
},
|
|
9867
|
+
{
|
|
9868
|
+
method: "GET",
|
|
9869
|
+
path: "/users",
|
|
9870
|
+
chain: "users",
|
|
9871
|
+
action: "list",
|
|
9872
|
+
aliases: [],
|
|
9873
|
+
pathParams: [],
|
|
9874
|
+
queryParams: ["email", "limit", "offset", "orderBy", "phoneNumber", "statusCd", "username"],
|
|
9875
|
+
edgeCache: true,
|
|
9876
|
+
responseSchema: UsersDataSchema,
|
|
9877
|
+
responseType: "array"
|
|
9878
|
+
},
|
|
9879
|
+
{
|
|
9880
|
+
method: "POST",
|
|
9881
|
+
path: "/users",
|
|
9882
|
+
chain: "users",
|
|
9883
|
+
action: "create",
|
|
9884
|
+
aliases: [],
|
|
9885
|
+
pathParams: [],
|
|
9886
|
+
queryParams: [],
|
|
9887
|
+
edgeCache: false,
|
|
9888
|
+
responseSchema: UsersDataSchema,
|
|
9889
|
+
responseType: "object"
|
|
9890
|
+
},
|
|
9891
|
+
{
|
|
9892
|
+
method: "POST",
|
|
9893
|
+
path: "/users/rotate",
|
|
9894
|
+
chain: "users.rotate",
|
|
9895
|
+
action: "create",
|
|
9896
|
+
aliases: [],
|
|
9897
|
+
pathParams: [],
|
|
9898
|
+
queryParams: [],
|
|
9899
|
+
edgeCache: false,
|
|
9900
|
+
responseSchema: UsersRotateDataSchema,
|
|
9901
|
+
responseType: "object"
|
|
9902
|
+
},
|
|
9903
|
+
{
|
|
9904
|
+
method: "POST",
|
|
9905
|
+
path: "/users/validate",
|
|
9906
|
+
chain: "users.validate",
|
|
9907
|
+
action: "create",
|
|
9908
|
+
aliases: [],
|
|
9909
|
+
pathParams: [],
|
|
9910
|
+
queryParams: [],
|
|
9911
|
+
edgeCache: false,
|
|
9912
|
+
responseSchema: UsersValidateDataSchema,
|
|
9913
|
+
responseType: "object"
|
|
9914
|
+
},
|
|
9915
|
+
{
|
|
9916
|
+
method: "POST",
|
|
9917
|
+
path: "/users/verify",
|
|
9918
|
+
chain: "users.verify",
|
|
9919
|
+
action: "create",
|
|
9920
|
+
aliases: [],
|
|
9921
|
+
pathParams: [],
|
|
9922
|
+
queryParams: [],
|
|
9923
|
+
edgeCache: false,
|
|
9924
|
+
responseSchema: UsersRotateDataSchema,
|
|
9925
|
+
responseType: "object"
|
|
9926
|
+
},
|
|
9927
|
+
{
|
|
9928
|
+
method: "GET",
|
|
9929
|
+
path: "/users/{usersUid}",
|
|
9930
|
+
chain: "users",
|
|
9931
|
+
action: "get",
|
|
9932
|
+
aliases: [],
|
|
9933
|
+
pathParams: ["usersUid"],
|
|
9934
|
+
queryParams: [],
|
|
9935
|
+
edgeCache: true,
|
|
9936
|
+
responseSchema: UsersDataSchema,
|
|
9937
|
+
responseType: "object"
|
|
9938
|
+
},
|
|
9939
|
+
{
|
|
9940
|
+
method: "PUT",
|
|
9941
|
+
path: "/users/{usersUid}",
|
|
9942
|
+
chain: "users",
|
|
9943
|
+
action: "update",
|
|
9944
|
+
aliases: [],
|
|
9945
|
+
pathParams: ["usersUid"],
|
|
9946
|
+
queryParams: [],
|
|
9947
|
+
edgeCache: false,
|
|
9948
|
+
responseSchema: UsersDataSchema,
|
|
9949
|
+
responseType: "object"
|
|
9950
|
+
},
|
|
9951
|
+
{
|
|
9952
|
+
method: "DELETE",
|
|
9953
|
+
path: "/users/{usersUid}",
|
|
9954
|
+
chain: "users",
|
|
9955
|
+
action: "delete",
|
|
9956
|
+
aliases: [],
|
|
9957
|
+
pathParams: ["usersUid"],
|
|
9958
|
+
queryParams: [],
|
|
9959
|
+
edgeCache: false,
|
|
9960
|
+
responseSchema: UsersDataSchema,
|
|
9961
|
+
responseType: "object"
|
|
9962
|
+
},
|
|
9963
|
+
{
|
|
9964
|
+
method: "GET",
|
|
9965
|
+
path: "/users/{usersUid}/roles",
|
|
9966
|
+
chain: "users.roles",
|
|
9967
|
+
action: "list",
|
|
9968
|
+
aliases: [],
|
|
9969
|
+
pathParams: ["usersUid"],
|
|
9970
|
+
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
9971
|
+
edgeCache: true,
|
|
9972
|
+
responseSchema: UsersRolesDataSchema,
|
|
9973
|
+
responseType: "array"
|
|
9974
|
+
},
|
|
9975
|
+
{
|
|
9976
|
+
method: "POST",
|
|
9977
|
+
path: "/users/{usersUid}/roles",
|
|
9978
|
+
chain: "users.roles",
|
|
9979
|
+
action: "create",
|
|
9980
|
+
aliases: [],
|
|
9981
|
+
pathParams: ["usersUid"],
|
|
9982
|
+
queryParams: [],
|
|
9983
|
+
edgeCache: false,
|
|
9984
|
+
responseSchema: UsersRolesDataSchema,
|
|
9985
|
+
responseType: "object"
|
|
9986
|
+
},
|
|
9987
|
+
{
|
|
9988
|
+
method: "GET",
|
|
9989
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
9990
|
+
chain: "users.roles",
|
|
9991
|
+
action: "get",
|
|
9992
|
+
aliases: [],
|
|
9993
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
9994
|
+
queryParams: [],
|
|
9995
|
+
edgeCache: true,
|
|
9996
|
+
responseSchema: UsersRolesDataSchema,
|
|
9997
|
+
responseType: "object"
|
|
9998
|
+
},
|
|
9999
|
+
{
|
|
10000
|
+
method: "PUT",
|
|
10001
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10002
|
+
chain: "users.roles",
|
|
10003
|
+
action: "update",
|
|
10004
|
+
aliases: [],
|
|
10005
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10006
|
+
queryParams: [],
|
|
10007
|
+
edgeCache: false,
|
|
10008
|
+
responseSchema: UsersRolesDataSchema,
|
|
10009
|
+
responseType: "object"
|
|
10010
|
+
},
|
|
10011
|
+
{
|
|
10012
|
+
method: "DELETE",
|
|
10013
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10014
|
+
chain: "users.roles",
|
|
10015
|
+
action: "delete",
|
|
10016
|
+
aliases: [],
|
|
10017
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10018
|
+
queryParams: [],
|
|
10019
|
+
edgeCache: false,
|
|
10020
|
+
responseSchema: UsersRolesDataSchema,
|
|
10021
|
+
responseType: "object"
|
|
10022
|
+
}
|
|
10023
|
+
];
|
|
10024
|
+
|
|
10025
|
+
// src/services/agr-int/client.ts
|
|
10026
|
+
var AgrIntClient = class extends BaseServiceClient {
|
|
10027
|
+
constructor(http, baseUrl = "https://agr-int.augur-api.com") {
|
|
10028
|
+
super("agr-int", http, baseUrl);
|
|
10029
|
+
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10030
|
+
return this.executeRequest(config, params, pathParams);
|
|
10031
|
+
};
|
|
10032
|
+
const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
|
|
10033
|
+
const dataProxy = createDataProxy(proxy);
|
|
10034
|
+
this.roles = proxy.roles;
|
|
10035
|
+
this.users = proxy.users;
|
|
10036
|
+
this.rolesData = dataProxy.roles;
|
|
10037
|
+
this.usersData = dataProxy.users;
|
|
10038
|
+
}
|
|
10039
|
+
getServiceDescription() {
|
|
10040
|
+
return "agr_int";
|
|
10041
|
+
}
|
|
10042
|
+
};
|
|
10043
|
+
|
|
9726
10044
|
// src/services/agr-work/resources/health-check.ts
|
|
9727
10045
|
function createHealthCheckResource15(executeRequest) {
|
|
9728
10046
|
return {
|
|
@@ -9892,11 +10210,11 @@ var AgrWorkClient = class extends BaseServiceClient {
|
|
|
9892
10210
|
};
|
|
9893
10211
|
|
|
9894
10212
|
// src/services/avalara/generated/schemas.ts
|
|
9895
|
-
import * as
|
|
9896
|
-
var
|
|
10213
|
+
import * as v23 from "valibot";
|
|
10214
|
+
var PassthroughDataSchema16 = v23.record(v23.string(), v23.unknown());
|
|
9897
10215
|
|
|
9898
10216
|
// src/services/avalara/generated/endpoints.ts
|
|
9899
|
-
var
|
|
10217
|
+
var endpoints16 = [
|
|
9900
10218
|
{
|
|
9901
10219
|
method: "POST",
|
|
9902
10220
|
path: "/rates",
|
|
@@ -9906,7 +10224,7 @@ var endpoints15 = [
|
|
|
9906
10224
|
pathParams: [],
|
|
9907
10225
|
queryParams: [],
|
|
9908
10226
|
edgeCache: false,
|
|
9909
|
-
responseSchema:
|
|
10227
|
+
responseSchema: PassthroughDataSchema16,
|
|
9910
10228
|
responseType: "passthrough"
|
|
9911
10229
|
}
|
|
9912
10230
|
];
|
|
@@ -9979,7 +10297,7 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
9979
10297
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9980
10298
|
return this.executeRequest(config, params, pathParams);
|
|
9981
10299
|
};
|
|
9982
|
-
const proxy = createServiceProxy("avalara", boundExecuteRequest,
|
|
10300
|
+
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
|
|
9983
10301
|
const dataProxy = createDataProxy(proxy);
|
|
9984
10302
|
this.rates = proxy.rates;
|
|
9985
10303
|
this.ratesData = dataProxy.rates;
|
|
@@ -9989,11 +10307,11 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
9989
10307
|
};
|
|
9990
10308
|
|
|
9991
10309
|
// src/services/brand-folder/generated/schemas.ts
|
|
9992
|
-
import * as
|
|
9993
|
-
var
|
|
10310
|
+
import * as v24 from "valibot";
|
|
10311
|
+
var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
|
|
9994
10312
|
|
|
9995
10313
|
// src/services/brand-folder/generated/endpoints.ts
|
|
9996
|
-
var
|
|
10314
|
+
var endpoints17 = [
|
|
9997
10315
|
{
|
|
9998
10316
|
method: "POST",
|
|
9999
10317
|
path: "/categories/focus",
|
|
@@ -10003,7 +10321,7 @@ var endpoints16 = [
|
|
|
10003
10321
|
pathParams: [],
|
|
10004
10322
|
queryParams: [],
|
|
10005
10323
|
edgeCache: false,
|
|
10006
|
-
responseSchema:
|
|
10324
|
+
responseSchema: PassthroughDataSchema17,
|
|
10007
10325
|
responseType: "passthrough"
|
|
10008
10326
|
}
|
|
10009
10327
|
];
|
|
@@ -10079,7 +10397,7 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10079
10397
|
const proxy = createServiceProxy(
|
|
10080
10398
|
"brand-folder",
|
|
10081
10399
|
boundExecuteRequest,
|
|
10082
|
-
|
|
10400
|
+
endpoints17
|
|
10083
10401
|
);
|
|
10084
10402
|
const dataProxy = createDataProxy(proxy);
|
|
10085
10403
|
this.categories = proxy.categories;
|
|
@@ -10093,15 +10411,15 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10093
10411
|
};
|
|
10094
10412
|
|
|
10095
10413
|
// src/services/gregorovich/generated/schemas.ts
|
|
10096
|
-
import * as
|
|
10097
|
-
var ChatGptAskGetParamsSchema =
|
|
10414
|
+
import * as v25 from "valibot";
|
|
10415
|
+
var ChatGptAskGetParamsSchema = v25.looseObject({
|
|
10098
10416
|
...EdgeCacheParamsSchema.entries,
|
|
10099
|
-
question:
|
|
10417
|
+
question: v25.string()
|
|
10100
10418
|
});
|
|
10101
|
-
var
|
|
10419
|
+
var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
|
|
10102
10420
|
|
|
10103
10421
|
// src/services/gregorovich/generated/endpoints.ts
|
|
10104
|
-
var
|
|
10422
|
+
var endpoints18 = [
|
|
10105
10423
|
{
|
|
10106
10424
|
method: "GET",
|
|
10107
10425
|
path: "/chat-gpt/ask",
|
|
@@ -10111,7 +10429,7 @@ var endpoints17 = [
|
|
|
10111
10429
|
pathParams: [],
|
|
10112
10430
|
queryParams: ["question"],
|
|
10113
10431
|
edgeCache: true,
|
|
10114
|
-
responseSchema:
|
|
10432
|
+
responseSchema: PassthroughDataSchema18,
|
|
10115
10433
|
responseType: "passthrough"
|
|
10116
10434
|
},
|
|
10117
10435
|
{
|
|
@@ -10123,7 +10441,7 @@ var endpoints17 = [
|
|
|
10123
10441
|
pathParams: [],
|
|
10124
10442
|
queryParams: [],
|
|
10125
10443
|
edgeCache: true,
|
|
10126
|
-
responseSchema:
|
|
10444
|
+
responseSchema: PassthroughDataSchema18,
|
|
10127
10445
|
responseType: "passthrough"
|
|
10128
10446
|
},
|
|
10129
10447
|
{
|
|
@@ -10135,7 +10453,7 @@ var endpoints17 = [
|
|
|
10135
10453
|
pathParams: [],
|
|
10136
10454
|
queryParams: [],
|
|
10137
10455
|
edgeCache: false,
|
|
10138
|
-
responseSchema:
|
|
10456
|
+
responseSchema: PassthroughDataSchema18,
|
|
10139
10457
|
responseType: "passthrough"
|
|
10140
10458
|
}
|
|
10141
10459
|
];
|
|
@@ -10211,7 +10529,7 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10211
10529
|
const proxy = createServiceProxy(
|
|
10212
10530
|
"gregorovich",
|
|
10213
10531
|
boundExecuteRequest,
|
|
10214
|
-
|
|
10532
|
+
endpoints18
|
|
10215
10533
|
);
|
|
10216
10534
|
const dataProxy = createDataProxy(proxy);
|
|
10217
10535
|
this.chatGpt = proxy.chatGpt;
|
|
@@ -10226,139 +10544,139 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10226
10544
|
};
|
|
10227
10545
|
|
|
10228
10546
|
// src/services/logistics/generated/schemas.ts
|
|
10229
|
-
import * as
|
|
10230
|
-
var FedexRatesListParamsSchema =
|
|
10231
|
-
...EdgeCacheParamsSchema.entries,
|
|
10232
|
-
fromAddress1:
|
|
10233
|
-
fromCity:
|
|
10234
|
-
fromCountryCode:
|
|
10235
|
-
fromPostalCode:
|
|
10236
|
-
fromStateProvinceCode:
|
|
10237
|
-
toAddress1:
|
|
10238
|
-
toCity:
|
|
10239
|
-
toCountryCode:
|
|
10240
|
-
toPostalCode:
|
|
10241
|
-
toResidential:
|
|
10242
|
-
toStateProvinceCode:
|
|
10243
|
-
weight:
|
|
10244
|
-
});
|
|
10245
|
-
var RtsBrandsListParamsSchema =
|
|
10246
|
-
...EdgeCacheParamsSchema.entries,
|
|
10247
|
-
search:
|
|
10248
|
-
});
|
|
10249
|
-
var RtsBrandsBrandIdMachinesListParamsSchema =
|
|
10250
|
-
...EdgeCacheParamsSchema.entries,
|
|
10251
|
-
search:
|
|
10252
|
-
});
|
|
10253
|
-
var RtsSearchMachinesListParamsSchema =
|
|
10254
|
-
...EdgeCacheParamsSchema.entries,
|
|
10255
|
-
q:
|
|
10256
|
-
});
|
|
10257
|
-
var RtsTracksListParamsSchema =
|
|
10258
|
-
...EdgeCacheParamsSchema.entries,
|
|
10259
|
-
search:
|
|
10260
|
-
trackClass:
|
|
10261
|
-
});
|
|
10262
|
-
var ShipviaRatesListParamsSchema =
|
|
10263
|
-
...EdgeCacheParamsSchema.entries,
|
|
10264
|
-
carriers:
|
|
10265
|
-
dimensionUnit:
|
|
10266
|
-
fromCity:
|
|
10267
|
-
fromCountry:
|
|
10268
|
-
fromPostalCode:
|
|
10269
|
-
fromState:
|
|
10270
|
-
locationId:
|
|
10271
|
-
packageHeight:
|
|
10272
|
-
packageLength:
|
|
10273
|
-
packageWidth:
|
|
10274
|
-
residential:
|
|
10275
|
-
serviceType:
|
|
10276
|
-
toCity:
|
|
10277
|
-
toCountry:
|
|
10278
|
-
toPostalCode:
|
|
10279
|
-
toState:
|
|
10280
|
-
totalWeight:
|
|
10281
|
-
weightUnit:
|
|
10282
|
-
});
|
|
10283
|
-
var ShipviaRatesLtlListParamsSchema =
|
|
10284
|
-
...EdgeCacheParamsSchema.entries,
|
|
10285
|
-
carriers:
|
|
10286
|
-
commodityClass:
|
|
10287
|
-
commodityDescription:
|
|
10288
|
-
deliveryInstructions:
|
|
10289
|
-
dimensionUnit:
|
|
10290
|
-
fromCity:
|
|
10291
|
-
fromCountry:
|
|
10292
|
-
fromPostalCode:
|
|
10293
|
-
fromState:
|
|
10294
|
-
isHazMat:
|
|
10295
|
-
locationId:
|
|
10296
|
-
packageHeight:
|
|
10297
|
-
packageLength:
|
|
10298
|
-
packageWidth:
|
|
10299
|
-
packagingType:
|
|
10300
|
-
pickupInstructions:
|
|
10301
|
-
quantity:
|
|
10302
|
-
toCity:
|
|
10303
|
-
toCountry:
|
|
10304
|
-
toPostalCode:
|
|
10305
|
-
toState:
|
|
10306
|
-
totalWeight:
|
|
10307
|
-
weightUnit:
|
|
10308
|
-
});
|
|
10309
|
-
var SpeedshipFreightListParamsSchema =
|
|
10310
|
-
...EdgeCacheParamsSchema.entries,
|
|
10311
|
-
deliveryInstructions:
|
|
10312
|
-
dimensionUnit:
|
|
10313
|
-
fromAddressLine:
|
|
10314
|
-
fromCity:
|
|
10315
|
-
fromCompanyName:
|
|
10316
|
-
fromCountryCode:
|
|
10317
|
-
fromFirstName:
|
|
10318
|
-
fromLastName:
|
|
10319
|
-
fromPhone:
|
|
10320
|
-
fromPostalCode:
|
|
10321
|
-
fromState:
|
|
10322
|
-
handlingCharge:
|
|
10323
|
-
handlingChargeUnit:
|
|
10324
|
-
international:
|
|
10325
|
-
packageHeight:
|
|
10326
|
-
packageLength:
|
|
10327
|
-
packageWidth:
|
|
10328
|
-
pickupInstructions:
|
|
10329
|
-
productType:
|
|
10330
|
-
quantity:
|
|
10331
|
-
responseFormat:
|
|
10332
|
-
toAddressLine:
|
|
10333
|
-
toCity:
|
|
10334
|
-
toCompanyName:
|
|
10335
|
-
toCountryCode:
|
|
10336
|
-
toFirstName:
|
|
10337
|
-
toLastName:
|
|
10338
|
-
toPhone:
|
|
10339
|
-
toPostalCode:
|
|
10340
|
-
toRegion:
|
|
10341
|
-
totalWeight:
|
|
10342
|
-
weightUnit:
|
|
10343
|
-
});
|
|
10344
|
-
var UPSRatesListParamsSchema =
|
|
10345
|
-
...EdgeCacheParamsSchema.entries,
|
|
10346
|
-
fromAddress1:
|
|
10347
|
-
fromCity:
|
|
10348
|
-
fromCountryCode:
|
|
10349
|
-
fromPostalCode:
|
|
10350
|
-
fromStateProvinceCode:
|
|
10351
|
-
toAddress1:
|
|
10352
|
-
toCity:
|
|
10353
|
-
toCountryCode:
|
|
10354
|
-
toPostalCode:
|
|
10355
|
-
toStateProvinceCode:
|
|
10356
|
-
weight:
|
|
10547
|
+
import * as v26 from "valibot";
|
|
10548
|
+
var FedexRatesListParamsSchema = v26.looseObject({
|
|
10549
|
+
...EdgeCacheParamsSchema.entries,
|
|
10550
|
+
fromAddress1: v26.string(),
|
|
10551
|
+
fromCity: v26.string(),
|
|
10552
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10553
|
+
fromPostalCode: v26.string(),
|
|
10554
|
+
fromStateProvinceCode: v26.string(),
|
|
10555
|
+
toAddress1: v26.string(),
|
|
10556
|
+
toCity: v26.string(),
|
|
10557
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10558
|
+
toPostalCode: v26.string(),
|
|
10559
|
+
toResidential: v26.optional(v26.boolean()),
|
|
10560
|
+
toStateProvinceCode: v26.string(),
|
|
10561
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10562
|
+
});
|
|
10563
|
+
var RtsBrandsListParamsSchema = v26.looseObject({
|
|
10564
|
+
...EdgeCacheParamsSchema.entries,
|
|
10565
|
+
search: v26.optional(v26.string())
|
|
10566
|
+
});
|
|
10567
|
+
var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
|
|
10568
|
+
...EdgeCacheParamsSchema.entries,
|
|
10569
|
+
search: v26.optional(v26.string())
|
|
10570
|
+
});
|
|
10571
|
+
var RtsSearchMachinesListParamsSchema = v26.looseObject({
|
|
10572
|
+
...EdgeCacheParamsSchema.entries,
|
|
10573
|
+
q: v26.string()
|
|
10574
|
+
});
|
|
10575
|
+
var RtsTracksListParamsSchema = v26.looseObject({
|
|
10576
|
+
...EdgeCacheParamsSchema.entries,
|
|
10577
|
+
search: v26.optional(v26.string()),
|
|
10578
|
+
trackClass: v26.optional(v26.string())
|
|
10579
|
+
});
|
|
10580
|
+
var ShipviaRatesListParamsSchema = v26.looseObject({
|
|
10581
|
+
...EdgeCacheParamsSchema.entries,
|
|
10582
|
+
carriers: v26.optional(v26.string()),
|
|
10583
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10584
|
+
fromCity: v26.optional(v26.string()),
|
|
10585
|
+
fromCountry: v26.optional(v26.string()),
|
|
10586
|
+
fromPostalCode: v26.string(),
|
|
10587
|
+
fromState: v26.optional(v26.string()),
|
|
10588
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10589
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10590
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10591
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10592
|
+
residential: v26.optional(v26.boolean()),
|
|
10593
|
+
serviceType: v26.optional(v26.string()),
|
|
10594
|
+
toCity: v26.optional(v26.string()),
|
|
10595
|
+
toCountry: v26.optional(v26.string()),
|
|
10596
|
+
toPostalCode: v26.string(),
|
|
10597
|
+
toState: v26.optional(v26.string()),
|
|
10598
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10599
|
+
weightUnit: v26.string()
|
|
10600
|
+
});
|
|
10601
|
+
var ShipviaRatesLtlListParamsSchema = v26.looseObject({
|
|
10602
|
+
...EdgeCacheParamsSchema.entries,
|
|
10603
|
+
carriers: v26.optional(v26.string()),
|
|
10604
|
+
commodityClass: v26.string(),
|
|
10605
|
+
commodityDescription: v26.string(),
|
|
10606
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10607
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10608
|
+
fromCity: v26.optional(v26.string()),
|
|
10609
|
+
fromCountry: v26.optional(v26.string()),
|
|
10610
|
+
fromPostalCode: v26.string(),
|
|
10611
|
+
fromState: v26.optional(v26.string()),
|
|
10612
|
+
isHazMat: v26.optional(v26.boolean()),
|
|
10613
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10614
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10615
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10616
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10617
|
+
packagingType: v26.string(),
|
|
10618
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10619
|
+
quantity: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10620
|
+
toCity: v26.optional(v26.string()),
|
|
10621
|
+
toCountry: v26.optional(v26.string()),
|
|
10622
|
+
toPostalCode: v26.string(),
|
|
10623
|
+
toState: v26.optional(v26.string()),
|
|
10624
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10625
|
+
weightUnit: v26.string()
|
|
10626
|
+
});
|
|
10627
|
+
var SpeedshipFreightListParamsSchema = v26.looseObject({
|
|
10628
|
+
...EdgeCacheParamsSchema.entries,
|
|
10629
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10630
|
+
dimensionUnit: v26.string(),
|
|
10631
|
+
fromAddressLine: v26.string(),
|
|
10632
|
+
fromCity: v26.string(),
|
|
10633
|
+
fromCompanyName: v26.string(),
|
|
10634
|
+
fromCountryCode: v26.string(),
|
|
10635
|
+
fromFirstName: v26.string(),
|
|
10636
|
+
fromLastName: v26.string(),
|
|
10637
|
+
fromPhone: v26.string(),
|
|
10638
|
+
fromPostalCode: v26.string(),
|
|
10639
|
+
fromState: v26.string(),
|
|
10640
|
+
handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10641
|
+
handlingChargeUnit: v26.optional(v26.string()),
|
|
10642
|
+
international: v26.optional(v26.boolean()),
|
|
10643
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10644
|
+
packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10645
|
+
packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10646
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10647
|
+
productType: v26.string(),
|
|
10648
|
+
quantity: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10649
|
+
responseFormat: v26.string(),
|
|
10650
|
+
toAddressLine: v26.string(),
|
|
10651
|
+
toCity: v26.string(),
|
|
10652
|
+
toCompanyName: v26.string(),
|
|
10653
|
+
toCountryCode: v26.string(),
|
|
10654
|
+
toFirstName: v26.string(),
|
|
10655
|
+
toLastName: v26.string(),
|
|
10656
|
+
toPhone: v26.string(),
|
|
10657
|
+
toPostalCode: v26.string(),
|
|
10658
|
+
toRegion: v26.string(),
|
|
10659
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10660
|
+
weightUnit: v26.string()
|
|
10661
|
+
});
|
|
10662
|
+
var UPSRatesListParamsSchema = v26.looseObject({
|
|
10663
|
+
...EdgeCacheParamsSchema.entries,
|
|
10664
|
+
fromAddress1: v26.string(),
|
|
10665
|
+
fromCity: v26.string(),
|
|
10666
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10667
|
+
fromPostalCode: v26.string(),
|
|
10668
|
+
fromStateProvinceCode: v26.string(),
|
|
10669
|
+
toAddress1: v26.string(),
|
|
10670
|
+
toCity: v26.string(),
|
|
10671
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10672
|
+
toPostalCode: v26.string(),
|
|
10673
|
+
toStateProvinceCode: v26.string(),
|
|
10674
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10357
10675
|
});
|
|
10358
|
-
var
|
|
10676
|
+
var PassthroughDataSchema19 = v26.record(v26.string(), v26.unknown());
|
|
10359
10677
|
|
|
10360
10678
|
// src/services/logistics/generated/endpoints.ts
|
|
10361
|
-
var
|
|
10679
|
+
var endpoints19 = [
|
|
10362
10680
|
{
|
|
10363
10681
|
method: "GET",
|
|
10364
10682
|
path: "/fedex/rates",
|
|
@@ -10381,7 +10699,7 @@ var endpoints18 = [
|
|
|
10381
10699
|
"weight"
|
|
10382
10700
|
],
|
|
10383
10701
|
edgeCache: true,
|
|
10384
|
-
responseSchema:
|
|
10702
|
+
responseSchema: PassthroughDataSchema19,
|
|
10385
10703
|
responseType: "passthrough"
|
|
10386
10704
|
},
|
|
10387
10705
|
{
|
|
@@ -10393,7 +10711,7 @@ var endpoints18 = [
|
|
|
10393
10711
|
pathParams: [],
|
|
10394
10712
|
queryParams: ["search"],
|
|
10395
10713
|
edgeCache: true,
|
|
10396
|
-
responseSchema:
|
|
10714
|
+
responseSchema: PassthroughDataSchema19,
|
|
10397
10715
|
responseType: "passthrough"
|
|
10398
10716
|
},
|
|
10399
10717
|
{
|
|
@@ -10405,7 +10723,7 @@ var endpoints18 = [
|
|
|
10405
10723
|
pathParams: ["brandId"],
|
|
10406
10724
|
queryParams: ["search"],
|
|
10407
10725
|
edgeCache: true,
|
|
10408
|
-
responseSchema:
|
|
10726
|
+
responseSchema: PassthroughDataSchema19,
|
|
10409
10727
|
responseType: "passthrough"
|
|
10410
10728
|
},
|
|
10411
10729
|
{
|
|
@@ -10417,7 +10735,7 @@ var endpoints18 = [
|
|
|
10417
10735
|
pathParams: ["machineId"],
|
|
10418
10736
|
queryParams: [],
|
|
10419
10737
|
edgeCache: true,
|
|
10420
|
-
responseSchema:
|
|
10738
|
+
responseSchema: PassthroughDataSchema19,
|
|
10421
10739
|
responseType: "passthrough"
|
|
10422
10740
|
},
|
|
10423
10741
|
{
|
|
@@ -10429,7 +10747,7 @@ var endpoints18 = [
|
|
|
10429
10747
|
pathParams: [],
|
|
10430
10748
|
queryParams: ["q"],
|
|
10431
10749
|
edgeCache: true,
|
|
10432
|
-
responseSchema:
|
|
10750
|
+
responseSchema: PassthroughDataSchema19,
|
|
10433
10751
|
responseType: "passthrough"
|
|
10434
10752
|
},
|
|
10435
10753
|
{
|
|
@@ -10441,7 +10759,7 @@ var endpoints18 = [
|
|
|
10441
10759
|
pathParams: ["trackId"],
|
|
10442
10760
|
queryParams: [],
|
|
10443
10761
|
edgeCache: true,
|
|
10444
|
-
responseSchema:
|
|
10762
|
+
responseSchema: PassthroughDataSchema19,
|
|
10445
10763
|
responseType: "passthrough"
|
|
10446
10764
|
},
|
|
10447
10765
|
{
|
|
@@ -10453,7 +10771,7 @@ var endpoints18 = [
|
|
|
10453
10771
|
pathParams: [],
|
|
10454
10772
|
queryParams: ["search", "trackClass"],
|
|
10455
10773
|
edgeCache: true,
|
|
10456
|
-
responseSchema:
|
|
10774
|
+
responseSchema: PassthroughDataSchema19,
|
|
10457
10775
|
responseType: "passthrough"
|
|
10458
10776
|
},
|
|
10459
10777
|
{
|
|
@@ -10484,7 +10802,7 @@ var endpoints18 = [
|
|
|
10484
10802
|
"weightUnit"
|
|
10485
10803
|
],
|
|
10486
10804
|
edgeCache: true,
|
|
10487
|
-
responseSchema:
|
|
10805
|
+
responseSchema: PassthroughDataSchema19,
|
|
10488
10806
|
responseType: "passthrough"
|
|
10489
10807
|
},
|
|
10490
10808
|
{
|
|
@@ -10520,7 +10838,7 @@ var endpoints18 = [
|
|
|
10520
10838
|
"weightUnit"
|
|
10521
10839
|
],
|
|
10522
10840
|
edgeCache: true,
|
|
10523
|
-
responseSchema:
|
|
10841
|
+
responseSchema: PassthroughDataSchema19,
|
|
10524
10842
|
responseType: "passthrough"
|
|
10525
10843
|
},
|
|
10526
10844
|
{
|
|
@@ -10565,7 +10883,7 @@ var endpoints18 = [
|
|
|
10565
10883
|
"weightUnit"
|
|
10566
10884
|
],
|
|
10567
10885
|
edgeCache: true,
|
|
10568
|
-
responseSchema:
|
|
10886
|
+
responseSchema: PassthroughDataSchema19,
|
|
10569
10887
|
responseType: "passthrough"
|
|
10570
10888
|
},
|
|
10571
10889
|
{
|
|
@@ -10589,7 +10907,7 @@ var endpoints18 = [
|
|
|
10589
10907
|
"weight"
|
|
10590
10908
|
],
|
|
10591
10909
|
edgeCache: true,
|
|
10592
|
-
responseSchema:
|
|
10910
|
+
responseSchema: PassthroughDataSchema19,
|
|
10593
10911
|
responseType: "passthrough"
|
|
10594
10912
|
}
|
|
10595
10913
|
];
|
|
@@ -10732,7 +11050,7 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10732
11050
|
const proxy = createServiceProxy(
|
|
10733
11051
|
"logistics",
|
|
10734
11052
|
boundExecuteRequest,
|
|
10735
|
-
|
|
11053
|
+
endpoints19
|
|
10736
11054
|
);
|
|
10737
11055
|
const dataProxy = createDataProxy(proxy);
|
|
10738
11056
|
this.fedex = proxy.fedex;
|
|
@@ -10756,51 +11074,51 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10756
11074
|
};
|
|
10757
11075
|
|
|
10758
11076
|
// src/services/p21-apis/generated/schemas.ts
|
|
10759
|
-
import * as
|
|
10760
|
-
var TransCategoryGetParamsSchema =
|
|
11077
|
+
import * as v27 from "valibot";
|
|
11078
|
+
var TransCategoryGetParamsSchema = v27.looseObject({
|
|
10761
11079
|
...EdgeCacheParamsSchema.entries,
|
|
10762
|
-
category_id:
|
|
11080
|
+
category_id: v27.optional(v27.string())
|
|
10763
11081
|
});
|
|
10764
|
-
var TransCategoryUpdateParamsSchema =
|
|
10765
|
-
category_id:
|
|
11082
|
+
var TransCategoryUpdateParamsSchema = v27.looseObject({
|
|
11083
|
+
category_id: v27.optional(v27.string())
|
|
10766
11084
|
});
|
|
10767
|
-
var TransCategoryDeleteParamsSchema =
|
|
10768
|
-
category_id:
|
|
11085
|
+
var TransCategoryDeleteParamsSchema = v27.looseObject({
|
|
11086
|
+
category_id: v27.optional(v27.string())
|
|
10769
11087
|
});
|
|
10770
|
-
var TransCompanyGetParamsSchema =
|
|
11088
|
+
var TransCompanyGetParamsSchema = v27.looseObject({
|
|
10771
11089
|
...EdgeCacheParamsSchema.entries,
|
|
10772
|
-
company_id:
|
|
11090
|
+
company_id: v27.optional(v27.string())
|
|
10773
11091
|
});
|
|
10774
|
-
var TransCompanyUpdateParamsSchema =
|
|
10775
|
-
company_id:
|
|
11092
|
+
var TransCompanyUpdateParamsSchema = v27.looseObject({
|
|
11093
|
+
company_id: v27.optional(v27.string())
|
|
10776
11094
|
});
|
|
10777
|
-
var TransCompanyDeleteParamsSchema =
|
|
10778
|
-
company_id:
|
|
11095
|
+
var TransCompanyDeleteParamsSchema = v27.looseObject({
|
|
11096
|
+
company_id: v27.optional(v27.string())
|
|
10779
11097
|
});
|
|
10780
|
-
var TransUserGetParamsSchema =
|
|
11098
|
+
var TransUserGetParamsSchema = v27.looseObject({
|
|
10781
11099
|
...EdgeCacheParamsSchema.entries,
|
|
10782
|
-
user_id:
|
|
11100
|
+
user_id: v27.optional(v27.string())
|
|
10783
11101
|
});
|
|
10784
|
-
var TransUserUpdateParamsSchema =
|
|
10785
|
-
user_id:
|
|
11102
|
+
var TransUserUpdateParamsSchema = v27.looseObject({
|
|
11103
|
+
user_id: v27.optional(v27.string())
|
|
10786
11104
|
});
|
|
10787
|
-
var TransUserDeleteParamsSchema =
|
|
10788
|
-
user_id:
|
|
11105
|
+
var TransUserDeleteParamsSchema = v27.looseObject({
|
|
11106
|
+
user_id: v27.optional(v27.string())
|
|
10789
11107
|
});
|
|
10790
|
-
var TransWebDisplayTypeGetParamsSchema =
|
|
11108
|
+
var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
|
|
10791
11109
|
...EdgeCacheParamsSchema.entries,
|
|
10792
|
-
web_display_type_id:
|
|
11110
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10793
11111
|
});
|
|
10794
|
-
var TransWebDisplayTypeUpdateParamsSchema =
|
|
10795
|
-
web_display_type_id:
|
|
11112
|
+
var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
|
|
11113
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10796
11114
|
});
|
|
10797
|
-
var TransWebDisplayTypeDeleteParamsSchema =
|
|
10798
|
-
web_display_type_id:
|
|
11115
|
+
var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
|
|
11116
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10799
11117
|
});
|
|
10800
|
-
var
|
|
11118
|
+
var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
|
|
10801
11119
|
|
|
10802
11120
|
// src/services/p21-apis/generated/endpoints.ts
|
|
10803
|
-
var
|
|
11121
|
+
var endpoints20 = [
|
|
10804
11122
|
{
|
|
10805
11123
|
method: "GET",
|
|
10806
11124
|
path: "/entity-contacts/refresh",
|
|
@@ -10810,7 +11128,7 @@ var endpoints19 = [
|
|
|
10810
11128
|
pathParams: [],
|
|
10811
11129
|
queryParams: [],
|
|
10812
11130
|
edgeCache: true,
|
|
10813
|
-
responseSchema:
|
|
11131
|
+
responseSchema: PassthroughDataSchema20,
|
|
10814
11132
|
responseType: "passthrough"
|
|
10815
11133
|
},
|
|
10816
11134
|
{
|
|
@@ -10822,7 +11140,7 @@ var endpoints19 = [
|
|
|
10822
11140
|
pathParams: [],
|
|
10823
11141
|
queryParams: [],
|
|
10824
11142
|
edgeCache: true,
|
|
10825
|
-
responseSchema:
|
|
11143
|
+
responseSchema: PassthroughDataSchema20,
|
|
10826
11144
|
responseType: "passthrough"
|
|
10827
11145
|
},
|
|
10828
11146
|
{
|
|
@@ -10834,7 +11152,7 @@ var endpoints19 = [
|
|
|
10834
11152
|
pathParams: [],
|
|
10835
11153
|
queryParams: [],
|
|
10836
11154
|
edgeCache: false,
|
|
10837
|
-
responseSchema:
|
|
11155
|
+
responseSchema: PassthroughDataSchema20,
|
|
10838
11156
|
responseType: "passthrough"
|
|
10839
11157
|
},
|
|
10840
11158
|
{
|
|
@@ -10846,7 +11164,7 @@ var endpoints19 = [
|
|
|
10846
11164
|
pathParams: ["categoryUid"],
|
|
10847
11165
|
queryParams: ["category_id"],
|
|
10848
11166
|
edgeCache: true,
|
|
10849
|
-
responseSchema:
|
|
11167
|
+
responseSchema: PassthroughDataSchema20,
|
|
10850
11168
|
responseType: "passthrough"
|
|
10851
11169
|
},
|
|
10852
11170
|
{
|
|
@@ -10858,7 +11176,7 @@ var endpoints19 = [
|
|
|
10858
11176
|
pathParams: ["categoryUid"],
|
|
10859
11177
|
queryParams: ["category_id"],
|
|
10860
11178
|
edgeCache: false,
|
|
10861
|
-
responseSchema:
|
|
11179
|
+
responseSchema: PassthroughDataSchema20,
|
|
10862
11180
|
responseType: "passthrough"
|
|
10863
11181
|
},
|
|
10864
11182
|
{
|
|
@@ -10870,7 +11188,7 @@ var endpoints19 = [
|
|
|
10870
11188
|
pathParams: ["categoryUid"],
|
|
10871
11189
|
queryParams: ["category_id"],
|
|
10872
11190
|
edgeCache: false,
|
|
10873
|
-
responseSchema:
|
|
11191
|
+
responseSchema: PassthroughDataSchema20,
|
|
10874
11192
|
responseType: "passthrough"
|
|
10875
11193
|
},
|
|
10876
11194
|
{
|
|
@@ -10882,7 +11200,7 @@ var endpoints19 = [
|
|
|
10882
11200
|
pathParams: [],
|
|
10883
11201
|
queryParams: [],
|
|
10884
11202
|
edgeCache: false,
|
|
10885
|
-
responseSchema:
|
|
11203
|
+
responseSchema: PassthroughDataSchema20,
|
|
10886
11204
|
responseType: "passthrough"
|
|
10887
11205
|
},
|
|
10888
11206
|
{
|
|
@@ -10894,7 +11212,7 @@ var endpoints19 = [
|
|
|
10894
11212
|
pathParams: ["companyUid"],
|
|
10895
11213
|
queryParams: ["company_id"],
|
|
10896
11214
|
edgeCache: true,
|
|
10897
|
-
responseSchema:
|
|
11215
|
+
responseSchema: PassthroughDataSchema20,
|
|
10898
11216
|
responseType: "passthrough"
|
|
10899
11217
|
},
|
|
10900
11218
|
{
|
|
@@ -10906,7 +11224,7 @@ var endpoints19 = [
|
|
|
10906
11224
|
pathParams: ["companyUid"],
|
|
10907
11225
|
queryParams: ["company_id"],
|
|
10908
11226
|
edgeCache: false,
|
|
10909
|
-
responseSchema:
|
|
11227
|
+
responseSchema: PassthroughDataSchema20,
|
|
10910
11228
|
responseType: "passthrough"
|
|
10911
11229
|
},
|
|
10912
11230
|
{
|
|
@@ -10918,7 +11236,7 @@ var endpoints19 = [
|
|
|
10918
11236
|
pathParams: ["companyUid"],
|
|
10919
11237
|
queryParams: ["company_id"],
|
|
10920
11238
|
edgeCache: false,
|
|
10921
|
-
responseSchema:
|
|
11239
|
+
responseSchema: PassthroughDataSchema20,
|
|
10922
11240
|
responseType: "passthrough"
|
|
10923
11241
|
},
|
|
10924
11242
|
{
|
|
@@ -10930,7 +11248,7 @@ var endpoints19 = [
|
|
|
10930
11248
|
pathParams: ["poNo"],
|
|
10931
11249
|
queryParams: [],
|
|
10932
11250
|
edgeCache: true,
|
|
10933
|
-
responseSchema:
|
|
11251
|
+
responseSchema: PassthroughDataSchema20,
|
|
10934
11252
|
responseType: "passthrough"
|
|
10935
11253
|
},
|
|
10936
11254
|
{
|
|
@@ -10942,7 +11260,7 @@ var endpoints19 = [
|
|
|
10942
11260
|
pathParams: ["poNo"],
|
|
10943
11261
|
queryParams: [],
|
|
10944
11262
|
edgeCache: false,
|
|
10945
|
-
responseSchema:
|
|
11263
|
+
responseSchema: PassthroughDataSchema20,
|
|
10946
11264
|
responseType: "passthrough"
|
|
10947
11265
|
},
|
|
10948
11266
|
{
|
|
@@ -10954,7 +11272,7 @@ var endpoints19 = [
|
|
|
10954
11272
|
pathParams: [],
|
|
10955
11273
|
queryParams: [],
|
|
10956
11274
|
edgeCache: false,
|
|
10957
|
-
responseSchema:
|
|
11275
|
+
responseSchema: PassthroughDataSchema20,
|
|
10958
11276
|
responseType: "passthrough"
|
|
10959
11277
|
},
|
|
10960
11278
|
{
|
|
@@ -10966,7 +11284,7 @@ var endpoints19 = [
|
|
|
10966
11284
|
pathParams: ["usersUid"],
|
|
10967
11285
|
queryParams: ["user_id"],
|
|
10968
11286
|
edgeCache: true,
|
|
10969
|
-
responseSchema:
|
|
11287
|
+
responseSchema: PassthroughDataSchema20,
|
|
10970
11288
|
responseType: "passthrough"
|
|
10971
11289
|
},
|
|
10972
11290
|
{
|
|
@@ -10978,7 +11296,7 @@ var endpoints19 = [
|
|
|
10978
11296
|
pathParams: ["usersUid"],
|
|
10979
11297
|
queryParams: ["user_id"],
|
|
10980
11298
|
edgeCache: false,
|
|
10981
|
-
responseSchema:
|
|
11299
|
+
responseSchema: PassthroughDataSchema20,
|
|
10982
11300
|
responseType: "passthrough"
|
|
10983
11301
|
},
|
|
10984
11302
|
{
|
|
@@ -10990,7 +11308,7 @@ var endpoints19 = [
|
|
|
10990
11308
|
pathParams: ["usersUid"],
|
|
10991
11309
|
queryParams: ["user_id"],
|
|
10992
11310
|
edgeCache: false,
|
|
10993
|
-
responseSchema:
|
|
11311
|
+
responseSchema: PassthroughDataSchema20,
|
|
10994
11312
|
responseType: "passthrough"
|
|
10995
11313
|
},
|
|
10996
11314
|
{
|
|
@@ -11002,7 +11320,7 @@ var endpoints19 = [
|
|
|
11002
11320
|
pathParams: [],
|
|
11003
11321
|
queryParams: [],
|
|
11004
11322
|
edgeCache: false,
|
|
11005
|
-
responseSchema:
|
|
11323
|
+
responseSchema: PassthroughDataSchema20,
|
|
11006
11324
|
responseType: "passthrough"
|
|
11007
11325
|
},
|
|
11008
11326
|
{
|
|
@@ -11014,7 +11332,7 @@ var endpoints19 = [
|
|
|
11014
11332
|
pathParams: [],
|
|
11015
11333
|
queryParams: [],
|
|
11016
11334
|
edgeCache: true,
|
|
11017
|
-
responseSchema:
|
|
11335
|
+
responseSchema: PassthroughDataSchema20,
|
|
11018
11336
|
responseType: "passthrough"
|
|
11019
11337
|
},
|
|
11020
11338
|
{
|
|
@@ -11026,7 +11344,7 @@ var endpoints19 = [
|
|
|
11026
11344
|
pathParams: [],
|
|
11027
11345
|
queryParams: [],
|
|
11028
11346
|
edgeCache: true,
|
|
11029
|
-
responseSchema:
|
|
11347
|
+
responseSchema: PassthroughDataSchema20,
|
|
11030
11348
|
responseType: "passthrough"
|
|
11031
11349
|
},
|
|
11032
11350
|
{
|
|
@@ -11038,7 +11356,7 @@ var endpoints19 = [
|
|
|
11038
11356
|
pathParams: ["webDisplayTypeUid"],
|
|
11039
11357
|
queryParams: ["web_display_type_id"],
|
|
11040
11358
|
edgeCache: true,
|
|
11041
|
-
responseSchema:
|
|
11359
|
+
responseSchema: PassthroughDataSchema20,
|
|
11042
11360
|
responseType: "passthrough"
|
|
11043
11361
|
},
|
|
11044
11362
|
{
|
|
@@ -11050,7 +11368,7 @@ var endpoints19 = [
|
|
|
11050
11368
|
pathParams: ["webDisplayTypeUid"],
|
|
11051
11369
|
queryParams: ["web_display_type_id"],
|
|
11052
11370
|
edgeCache: false,
|
|
11053
|
-
responseSchema:
|
|
11371
|
+
responseSchema: PassthroughDataSchema20,
|
|
11054
11372
|
responseType: "passthrough"
|
|
11055
11373
|
},
|
|
11056
11374
|
{
|
|
@@ -11062,7 +11380,7 @@ var endpoints19 = [
|
|
|
11062
11380
|
pathParams: ["webDisplayTypeUid"],
|
|
11063
11381
|
queryParams: ["web_display_type_id"],
|
|
11064
11382
|
edgeCache: false,
|
|
11065
|
-
responseSchema:
|
|
11383
|
+
responseSchema: PassthroughDataSchema20,
|
|
11066
11384
|
responseType: "passthrough"
|
|
11067
11385
|
}
|
|
11068
11386
|
];
|
|
@@ -11121,7 +11439,7 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11121
11439
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11122
11440
|
return this.executeRequest(config, params, pathParams);
|
|
11123
11441
|
};
|
|
11124
|
-
const proxy = createServiceProxy("p21-apis", boundExecuteRequest,
|
|
11442
|
+
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
|
|
11125
11443
|
const dataProxy = createDataProxy(proxy);
|
|
11126
11444
|
this.entityContacts = proxy.entityContacts;
|
|
11127
11445
|
this.entityCustomers = proxy.entityCustomers;
|
|
@@ -11146,150 +11464,150 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11146
11464
|
};
|
|
11147
11465
|
|
|
11148
11466
|
// src/services/p21-core/generated/schemas.ts
|
|
11149
|
-
import * as
|
|
11150
|
-
var AddressListParamsSchema =
|
|
11151
|
-
...EdgeCacheParamsSchema.entries,
|
|
11152
|
-
carrierFlag:
|
|
11153
|
-
defaultCd:
|
|
11154
|
-
enabledCd:
|
|
11155
|
-
limit:
|
|
11156
|
-
offset:
|
|
11157
|
-
statusCd:
|
|
11158
|
-
});
|
|
11159
|
-
var AddressCorpAddressListParamsSchema =
|
|
11160
|
-
...EdgeCacheParamsSchema.entries,
|
|
11161
|
-
limit:
|
|
11162
|
-
offset:
|
|
11163
|
-
q:
|
|
11164
|
-
});
|
|
11165
|
-
var AddressEnableGetParamsSchema =
|
|
11166
|
-
...EdgeCacheParamsSchema.entries,
|
|
11167
|
-
enabledCd:
|
|
11168
|
-
});
|
|
11169
|
-
var CashDrawerListParamsSchema =
|
|
11170
|
-
...EdgeCacheParamsSchema.entries,
|
|
11171
|
-
companyId:
|
|
11172
|
-
drawerOpen:
|
|
11173
|
-
limit:
|
|
11174
|
-
offset:
|
|
11175
|
-
orderBy:
|
|
11176
|
-
q:
|
|
11177
|
-
statusCd:
|
|
11178
|
-
});
|
|
11179
|
-
var CodeP21ListParamsSchema =
|
|
11180
|
-
...EdgeCacheParamsSchema.entries,
|
|
11181
|
-
codeNoList:
|
|
11182
|
-
limit:
|
|
11183
|
-
offset:
|
|
11184
|
-
q:
|
|
11185
|
-
});
|
|
11186
|
-
var CompanyListParamsSchema =
|
|
11187
|
-
...EdgeCacheParamsSchema.entries,
|
|
11188
|
-
companyId:
|
|
11189
|
-
limit:
|
|
11190
|
-
offset:
|
|
11191
|
-
orderBy:
|
|
11192
|
-
q:
|
|
11193
|
-
});
|
|
11194
|
-
var CompanyGetParamsSchema =
|
|
11195
|
-
...EdgeCacheParamsSchema.entries,
|
|
11196
|
-
companyId:
|
|
11197
|
-
});
|
|
11198
|
-
var LocationListParamsSchema =
|
|
11199
|
-
...EdgeCacheParamsSchema.entries,
|
|
11200
|
-
deleteFlag:
|
|
11201
|
-
includeAddress:
|
|
11202
|
-
limit:
|
|
11203
|
-
offset:
|
|
11204
|
-
orderBy:
|
|
11205
|
-
q:
|
|
11206
|
-
});
|
|
11207
|
-
var LocationGetParamsSchema =
|
|
11208
|
-
...EdgeCacheParamsSchema.entries,
|
|
11209
|
-
includeAddress:
|
|
11210
|
-
});
|
|
11211
|
-
var PaymentTypesListParamsSchema =
|
|
11212
|
-
...EdgeCacheParamsSchema.entries,
|
|
11213
|
-
limit:
|
|
11214
|
-
offset:
|
|
11215
|
-
});
|
|
11216
|
-
var CashDrawerDataSchema =
|
|
11217
|
-
cashDrawerId:
|
|
11218
|
-
companyId:
|
|
11219
|
-
cashDrawerDescription:
|
|
11220
|
-
currentSequenceNo:
|
|
11221
|
-
openingBalance:
|
|
11222
|
-
withdrawals:
|
|
11223
|
-
deposits:
|
|
11224
|
-
currentBalance:
|
|
11225
|
-
drawerOpen:
|
|
11226
|
-
bankNo:
|
|
11227
|
-
cashOnHandAccountNumber:
|
|
11228
|
-
deleteFlag:
|
|
11229
|
-
dateCreated:
|
|
11230
|
-
dateLastModified:
|
|
11231
|
-
lastMaintainedBy:
|
|
11232
|
-
cashCardLoad:
|
|
11233
|
-
cashDrawerUid:
|
|
11234
|
-
locIdForBranchConflict:
|
|
11235
|
-
defaultCloseBranchId:
|
|
11236
|
-
updateCd:
|
|
11237
|
-
statusCd:
|
|
11238
|
-
processCd:
|
|
11239
|
-
});
|
|
11240
|
-
var CodeP21DataSchema =
|
|
11241
|
-
codeUid:
|
|
11242
|
-
codeNo:
|
|
11243
|
-
languageId:
|
|
11244
|
-
codeDescription:
|
|
11245
|
-
rowStatusFlag:
|
|
11246
|
-
dateCreated:
|
|
11247
|
-
dateLastModified:
|
|
11248
|
-
lastMaintainedBy:
|
|
11249
|
-
codeSubDescription:
|
|
11250
|
-
updateCd:
|
|
11251
|
-
});
|
|
11252
|
-
var CompanyDataSchema =
|
|
11253
|
-
companyUid:
|
|
11254
|
-
companyId:
|
|
11255
|
-
companyName:
|
|
11256
|
-
dateCreated:
|
|
11257
|
-
dateLastModified:
|
|
11258
|
-
deleteFlag:
|
|
11259
|
-
updateCd:
|
|
11260
|
-
lastMaintainedBy:
|
|
11261
|
-
addressId:
|
|
11262
|
-
defaultSalesLocationId:
|
|
11263
|
-
freightCodeUid:
|
|
11264
|
-
upsAccountNo:
|
|
11265
|
-
defaultSourcePriceCd:
|
|
11266
|
-
defaultMultiplier:
|
|
11267
|
-
});
|
|
11268
|
-
var LocationDataSchema =
|
|
11269
|
-
locationId:
|
|
11270
|
-
companyId:
|
|
11271
|
-
defaultBranchId:
|
|
11272
|
-
deleteFlag:
|
|
11273
|
-
dateCreated:
|
|
11274
|
-
dateLastModified:
|
|
11275
|
-
lastMaintainedBy:
|
|
11276
|
-
locationName:
|
|
11277
|
-
lotBinIntegration:
|
|
11278
|
-
fedexLocAcctNo:
|
|
11279
|
-
fedexMeterNo:
|
|
11280
|
-
upsAccountNo:
|
|
11281
|
-
upsPickupTypeCd:
|
|
11282
|
-
upsCustomerTypeCd:
|
|
11283
|
-
upsOltAccessKey:
|
|
11284
|
-
upsOltPassword:
|
|
11285
|
-
upsOltUserId:
|
|
11286
|
-
distributionCenter:
|
|
11287
|
-
updateCd:
|
|
11288
|
-
});
|
|
11289
|
-
var
|
|
11467
|
+
import * as v28 from "valibot";
|
|
11468
|
+
var AddressListParamsSchema = v28.looseObject({
|
|
11469
|
+
...EdgeCacheParamsSchema.entries,
|
|
11470
|
+
carrierFlag: v28.optional(v28.string()),
|
|
11471
|
+
defaultCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11472
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11473
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11474
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11475
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11476
|
+
});
|
|
11477
|
+
var AddressCorpAddressListParamsSchema = v28.looseObject({
|
|
11478
|
+
...EdgeCacheParamsSchema.entries,
|
|
11479
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11480
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11481
|
+
q: v28.optional(v28.string())
|
|
11482
|
+
});
|
|
11483
|
+
var AddressEnableGetParamsSchema = v28.looseObject({
|
|
11484
|
+
...EdgeCacheParamsSchema.entries,
|
|
11485
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11486
|
+
});
|
|
11487
|
+
var CashDrawerListParamsSchema = v28.looseObject({
|
|
11488
|
+
...EdgeCacheParamsSchema.entries,
|
|
11489
|
+
companyId: v28.optional(v28.string()),
|
|
11490
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11491
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11492
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11493
|
+
orderBy: v28.optional(v28.string()),
|
|
11494
|
+
q: v28.optional(v28.string()),
|
|
11495
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11496
|
+
});
|
|
11497
|
+
var CodeP21ListParamsSchema = v28.looseObject({
|
|
11498
|
+
...EdgeCacheParamsSchema.entries,
|
|
11499
|
+
codeNoList: v28.optional(v28.string()),
|
|
11500
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11501
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11502
|
+
q: v28.string()
|
|
11503
|
+
});
|
|
11504
|
+
var CompanyListParamsSchema = v28.looseObject({
|
|
11505
|
+
...EdgeCacheParamsSchema.entries,
|
|
11506
|
+
companyId: v28.optional(v28.string()),
|
|
11507
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11508
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11509
|
+
orderBy: v28.optional(v28.string()),
|
|
11510
|
+
q: v28.optional(v28.string())
|
|
11511
|
+
});
|
|
11512
|
+
var CompanyGetParamsSchema = v28.looseObject({
|
|
11513
|
+
...EdgeCacheParamsSchema.entries,
|
|
11514
|
+
companyId: v28.optional(v28.string())
|
|
11515
|
+
});
|
|
11516
|
+
var LocationListParamsSchema = v28.looseObject({
|
|
11517
|
+
...EdgeCacheParamsSchema.entries,
|
|
11518
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11519
|
+
includeAddress: v28.optional(v28.string()),
|
|
11520
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11521
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11522
|
+
orderBy: v28.optional(v28.string()),
|
|
11523
|
+
q: v28.optional(v28.string())
|
|
11524
|
+
});
|
|
11525
|
+
var LocationGetParamsSchema = v28.looseObject({
|
|
11526
|
+
...EdgeCacheParamsSchema.entries,
|
|
11527
|
+
includeAddress: v28.optional(v28.string())
|
|
11528
|
+
});
|
|
11529
|
+
var PaymentTypesListParamsSchema = v28.looseObject({
|
|
11530
|
+
...EdgeCacheParamsSchema.entries,
|
|
11531
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11532
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11533
|
+
});
|
|
11534
|
+
var CashDrawerDataSchema = v28.looseObject({
|
|
11535
|
+
cashDrawerId: v28.optional(v28.string()),
|
|
11536
|
+
companyId: v28.optional(v28.string()),
|
|
11537
|
+
cashDrawerDescription: v28.optional(v28.string()),
|
|
11538
|
+
currentSequenceNo: v28.optional(v28.number()),
|
|
11539
|
+
openingBalance: v28.optional(v28.nullable(v28.number())),
|
|
11540
|
+
withdrawals: v28.optional(v28.nullable(v28.number())),
|
|
11541
|
+
deposits: v28.optional(v28.nullable(v28.number())),
|
|
11542
|
+
currentBalance: v28.optional(v28.number()),
|
|
11543
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11544
|
+
bankNo: v28.optional(v28.nullable(v28.number())),
|
|
11545
|
+
cashOnHandAccountNumber: v28.optional(v28.string()),
|
|
11546
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11547
|
+
dateCreated: v28.optional(v28.string()),
|
|
11548
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11549
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11550
|
+
cashCardLoad: v28.optional(v28.nullable(v28.number())),
|
|
11551
|
+
cashDrawerUid: v28.optional(v28.number()),
|
|
11552
|
+
locIdForBranchConflict: v28.optional(v28.nullable(v28.number())),
|
|
11553
|
+
defaultCloseBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11554
|
+
updateCd: v28.optional(v28.number()),
|
|
11555
|
+
statusCd: v28.optional(v28.number()),
|
|
11556
|
+
processCd: v28.optional(v28.number())
|
|
11557
|
+
});
|
|
11558
|
+
var CodeP21DataSchema = v28.looseObject({
|
|
11559
|
+
codeUid: v28.optional(v28.number()),
|
|
11560
|
+
codeNo: v28.optional(v28.number()),
|
|
11561
|
+
languageId: v28.optional(v28.string()),
|
|
11562
|
+
codeDescription: v28.optional(v28.string()),
|
|
11563
|
+
rowStatusFlag: v28.optional(v28.string()),
|
|
11564
|
+
dateCreated: v28.optional(v28.string()),
|
|
11565
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11566
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11567
|
+
codeSubDescription: v28.optional(v28.nullable(v28.string())),
|
|
11568
|
+
updateCd: v28.optional(v28.number())
|
|
11569
|
+
});
|
|
11570
|
+
var CompanyDataSchema = v28.looseObject({
|
|
11571
|
+
companyUid: v28.optional(v28.number()),
|
|
11572
|
+
companyId: v28.optional(v28.string()),
|
|
11573
|
+
companyName: v28.optional(v28.nullable(v28.string())),
|
|
11574
|
+
dateCreated: v28.optional(v28.string()),
|
|
11575
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11576
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11577
|
+
updateCd: v28.optional(v28.number()),
|
|
11578
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11579
|
+
addressId: v28.optional(v28.nullable(v28.number())),
|
|
11580
|
+
defaultSalesLocationId: v28.optional(v28.nullable(v28.number())),
|
|
11581
|
+
freightCodeUid: v28.optional(v28.nullable(v28.number())),
|
|
11582
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11583
|
+
defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
|
|
11584
|
+
defaultMultiplier: v28.optional(v28.nullable(v28.number()))
|
|
11585
|
+
});
|
|
11586
|
+
var LocationDataSchema = v28.looseObject({
|
|
11587
|
+
locationId: v28.optional(v28.number()),
|
|
11588
|
+
companyId: v28.optional(v28.string()),
|
|
11589
|
+
defaultBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11590
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11591
|
+
dateCreated: v28.optional(v28.string()),
|
|
11592
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11593
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11594
|
+
locationName: v28.optional(v28.nullable(v28.string())),
|
|
11595
|
+
lotBinIntegration: v28.optional(v28.nullable(v28.string())),
|
|
11596
|
+
fedexLocAcctNo: v28.optional(v28.nullable(v28.string())),
|
|
11597
|
+
fedexMeterNo: v28.optional(v28.nullable(v28.string())),
|
|
11598
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11599
|
+
upsPickupTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11600
|
+
upsCustomerTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11601
|
+
upsOltAccessKey: v28.optional(v28.nullable(v28.string())),
|
|
11602
|
+
upsOltPassword: v28.optional(v28.nullable(v28.string())),
|
|
11603
|
+
upsOltUserId: v28.optional(v28.nullable(v28.string())),
|
|
11604
|
+
distributionCenter: v28.optional(v28.string()),
|
|
11605
|
+
updateCd: v28.optional(v28.number())
|
|
11606
|
+
});
|
|
11607
|
+
var PassthroughDataSchema21 = v28.record(v28.string(), v28.unknown());
|
|
11290
11608
|
|
|
11291
11609
|
// src/services/p21-core/generated/endpoints.ts
|
|
11292
|
-
var
|
|
11610
|
+
var endpoints21 = [
|
|
11293
11611
|
{
|
|
11294
11612
|
method: "GET",
|
|
11295
11613
|
path: "/address",
|
|
@@ -11299,7 +11617,7 @@ var endpoints20 = [
|
|
|
11299
11617
|
pathParams: [],
|
|
11300
11618
|
queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
|
|
11301
11619
|
edgeCache: true,
|
|
11302
|
-
responseSchema:
|
|
11620
|
+
responseSchema: PassthroughDataSchema21,
|
|
11303
11621
|
responseType: "passthrough"
|
|
11304
11622
|
},
|
|
11305
11623
|
{
|
|
@@ -11311,7 +11629,7 @@ var endpoints20 = [
|
|
|
11311
11629
|
pathParams: [],
|
|
11312
11630
|
queryParams: [],
|
|
11313
11631
|
edgeCache: true,
|
|
11314
|
-
responseSchema:
|
|
11632
|
+
responseSchema: PassthroughDataSchema21,
|
|
11315
11633
|
responseType: "passthrough"
|
|
11316
11634
|
},
|
|
11317
11635
|
{
|
|
@@ -11323,7 +11641,7 @@ var endpoints20 = [
|
|
|
11323
11641
|
pathParams: ["id"],
|
|
11324
11642
|
queryParams: [],
|
|
11325
11643
|
edgeCache: true,
|
|
11326
|
-
responseSchema:
|
|
11644
|
+
responseSchema: PassthroughDataSchema21,
|
|
11327
11645
|
responseType: "passthrough"
|
|
11328
11646
|
},
|
|
11329
11647
|
{
|
|
@@ -11335,7 +11653,7 @@ var endpoints20 = [
|
|
|
11335
11653
|
pathParams: ["id"],
|
|
11336
11654
|
queryParams: ["limit", "offset", "q"],
|
|
11337
11655
|
edgeCache: true,
|
|
11338
|
-
responseSchema:
|
|
11656
|
+
responseSchema: PassthroughDataSchema21,
|
|
11339
11657
|
responseType: "passthrough"
|
|
11340
11658
|
},
|
|
11341
11659
|
{
|
|
@@ -11347,7 +11665,7 @@ var endpoints20 = [
|
|
|
11347
11665
|
pathParams: ["id"],
|
|
11348
11666
|
queryParams: [],
|
|
11349
11667
|
edgeCache: true,
|
|
11350
|
-
responseSchema:
|
|
11668
|
+
responseSchema: PassthroughDataSchema21,
|
|
11351
11669
|
responseType: "passthrough"
|
|
11352
11670
|
},
|
|
11353
11671
|
{
|
|
@@ -11359,7 +11677,7 @@ var endpoints20 = [
|
|
|
11359
11677
|
pathParams: ["id"],
|
|
11360
11678
|
queryParams: ["enabledCd"],
|
|
11361
11679
|
edgeCache: true,
|
|
11362
|
-
responseSchema:
|
|
11680
|
+
responseSchema: PassthroughDataSchema21,
|
|
11363
11681
|
responseType: "passthrough"
|
|
11364
11682
|
},
|
|
11365
11683
|
{
|
|
@@ -11455,14 +11773,14 @@ var endpoints20 = [
|
|
|
11455
11773
|
pathParams: [],
|
|
11456
11774
|
queryParams: ["limit", "offset"],
|
|
11457
11775
|
edgeCache: true,
|
|
11458
|
-
responseSchema:
|
|
11776
|
+
responseSchema: PassthroughDataSchema21,
|
|
11459
11777
|
responseType: "passthrough"
|
|
11460
11778
|
}
|
|
11461
11779
|
];
|
|
11462
11780
|
|
|
11463
11781
|
// src/services/p21-core/resources/health-check.ts
|
|
11464
|
-
import * as
|
|
11465
|
-
var UnknownResponseSchema = BaseResponseSchema(
|
|
11782
|
+
import * as v29 from "valibot";
|
|
11783
|
+
var UnknownResponseSchema = BaseResponseSchema(v29.unknown());
|
|
11466
11784
|
function createHealthCheckResource21(executeRequest) {
|
|
11467
11785
|
return {
|
|
11468
11786
|
/**
|
|
@@ -11525,7 +11843,7 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11525
11843
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11526
11844
|
return this.executeRequest(config, params, pathParams);
|
|
11527
11845
|
};
|
|
11528
|
-
const proxy = createServiceProxy("p21-core", boundExecuteRequest,
|
|
11846
|
+
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
|
|
11529
11847
|
const dataProxy = createDataProxy(proxy);
|
|
11530
11848
|
this.address = proxy.address;
|
|
11531
11849
|
this.cashDrawer = proxy.cashDrawer;
|
|
@@ -11550,84 +11868,84 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11550
11868
|
};
|
|
11551
11869
|
|
|
11552
11870
|
// src/services/p21-sism/generated/schemas.ts
|
|
11553
|
-
import * as
|
|
11554
|
-
var ImportListParamsSchema =
|
|
11555
|
-
...EdgeCacheParamsSchema.entries,
|
|
11556
|
-
createdFrom:
|
|
11557
|
-
createdOn:
|
|
11558
|
-
createdTo:
|
|
11559
|
-
excludeState:
|
|
11560
|
-
importState:
|
|
11561
|
-
limit:
|
|
11562
|
-
offset:
|
|
11563
|
-
orderBy:
|
|
11564
|
-
q:
|
|
11565
|
-
referenceNo:
|
|
11566
|
-
sourceId:
|
|
11567
|
-
sourceName:
|
|
11568
|
-
});
|
|
11569
|
-
var ImportDailySummaryListParamsSchema =
|
|
11570
|
-
...EdgeCacheParamsSchema.entries,
|
|
11571
|
-
days:
|
|
11572
|
-
});
|
|
11573
|
-
var ImportRecentListParamsSchema =
|
|
11574
|
-
...EdgeCacheParamsSchema.entries,
|
|
11575
|
-
createdFrom:
|
|
11576
|
-
createdOn:
|
|
11577
|
-
createdTo:
|
|
11578
|
-
excludeState:
|
|
11579
|
-
hours:
|
|
11580
|
-
importState:
|
|
11581
|
-
limit:
|
|
11582
|
-
sourceId:
|
|
11583
|
-
sourceName:
|
|
11584
|
-
});
|
|
11585
|
-
var ImportStuckListParamsSchema =
|
|
11586
|
-
...EdgeCacheParamsSchema.entries,
|
|
11587
|
-
hours:
|
|
11588
|
-
limit:
|
|
11589
|
-
});
|
|
11590
|
-
var ImportDailySummaryDataSchema =
|
|
11591
|
-
date:
|
|
11592
|
-
total:
|
|
11593
|
-
initial:
|
|
11594
|
-
processing:
|
|
11595
|
-
processingCoupon:
|
|
11596
|
-
processCoupon:
|
|
11597
|
-
validate:
|
|
11598
|
-
validating:
|
|
11599
|
-
validated:
|
|
11600
|
-
processed:
|
|
11601
|
-
hold:
|
|
11602
|
-
delivering:
|
|
11603
|
-
delivered:
|
|
11604
|
-
importing:
|
|
11605
|
-
imported:
|
|
11606
|
-
redelivered:
|
|
11607
|
-
invalid:
|
|
11608
|
-
failed:
|
|
11609
|
-
error:
|
|
11610
|
-
cancelled:
|
|
11611
|
-
stopped:
|
|
11612
|
-
skipped:
|
|
11613
|
-
});
|
|
11614
|
-
var ImportDataSchema =
|
|
11615
|
-
importUid:
|
|
11616
|
-
scheduledImportMasterUid:
|
|
11617
|
-
dateCreated:
|
|
11618
|
-
dateLastModified:
|
|
11619
|
-
sourceName:
|
|
11620
|
-
sourceId:
|
|
11621
|
-
importState:
|
|
11622
|
-
jsonData:
|
|
11623
|
-
importStatusCd:
|
|
11624
|
-
importResults:
|
|
11625
|
-
referenceNo:
|
|
11626
|
-
});
|
|
11627
|
-
var
|
|
11871
|
+
import * as v30 from "valibot";
|
|
11872
|
+
var ImportListParamsSchema = v30.looseObject({
|
|
11873
|
+
...EdgeCacheParamsSchema.entries,
|
|
11874
|
+
createdFrom: v30.optional(v30.string()),
|
|
11875
|
+
createdOn: v30.optional(v30.string()),
|
|
11876
|
+
createdTo: v30.optional(v30.string()),
|
|
11877
|
+
excludeState: v30.optional(v30.string()),
|
|
11878
|
+
importState: v30.optional(v30.string()),
|
|
11879
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11880
|
+
offset: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11881
|
+
orderBy: v30.optional(v30.string()),
|
|
11882
|
+
q: v30.optional(v30.string()),
|
|
11883
|
+
referenceNo: v30.optional(v30.string()),
|
|
11884
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11885
|
+
sourceName: v30.optional(v30.string())
|
|
11886
|
+
});
|
|
11887
|
+
var ImportDailySummaryListParamsSchema = v30.looseObject({
|
|
11888
|
+
...EdgeCacheParamsSchema.entries,
|
|
11889
|
+
days: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11890
|
+
});
|
|
11891
|
+
var ImportRecentListParamsSchema = v30.looseObject({
|
|
11892
|
+
...EdgeCacheParamsSchema.entries,
|
|
11893
|
+
createdFrom: v30.optional(v30.string()),
|
|
11894
|
+
createdOn: v30.optional(v30.string()),
|
|
11895
|
+
createdTo: v30.optional(v30.string()),
|
|
11896
|
+
excludeState: v30.optional(v30.string()),
|
|
11897
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11898
|
+
importState: v30.optional(v30.string()),
|
|
11899
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11900
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11901
|
+
sourceName: v30.optional(v30.string())
|
|
11902
|
+
});
|
|
11903
|
+
var ImportStuckListParamsSchema = v30.looseObject({
|
|
11904
|
+
...EdgeCacheParamsSchema.entries,
|
|
11905
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11906
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11907
|
+
});
|
|
11908
|
+
var ImportDailySummaryDataSchema = v30.looseObject({
|
|
11909
|
+
date: v30.optional(v30.string()),
|
|
11910
|
+
total: v30.optional(v30.number()),
|
|
11911
|
+
initial: v30.optional(v30.number()),
|
|
11912
|
+
processing: v30.optional(v30.number()),
|
|
11913
|
+
processingCoupon: v30.optional(v30.number()),
|
|
11914
|
+
processCoupon: v30.optional(v30.number()),
|
|
11915
|
+
validate: v30.optional(v30.number()),
|
|
11916
|
+
validating: v30.optional(v30.number()),
|
|
11917
|
+
validated: v30.optional(v30.number()),
|
|
11918
|
+
processed: v30.optional(v30.number()),
|
|
11919
|
+
hold: v30.optional(v30.number()),
|
|
11920
|
+
delivering: v30.optional(v30.number()),
|
|
11921
|
+
delivered: v30.optional(v30.number()),
|
|
11922
|
+
importing: v30.optional(v30.number()),
|
|
11923
|
+
imported: v30.optional(v30.number()),
|
|
11924
|
+
redelivered: v30.optional(v30.number()),
|
|
11925
|
+
invalid: v30.optional(v30.number()),
|
|
11926
|
+
failed: v30.optional(v30.number()),
|
|
11927
|
+
error: v30.optional(v30.number()),
|
|
11928
|
+
cancelled: v30.optional(v30.number()),
|
|
11929
|
+
stopped: v30.optional(v30.number()),
|
|
11930
|
+
skipped: v30.optional(v30.number())
|
|
11931
|
+
});
|
|
11932
|
+
var ImportDataSchema = v30.looseObject({
|
|
11933
|
+
importUid: v30.optional(v30.number()),
|
|
11934
|
+
scheduledImportMasterUid: v30.optional(v30.number()),
|
|
11935
|
+
dateCreated: v30.optional(v30.string()),
|
|
11936
|
+
dateLastModified: v30.optional(v30.string()),
|
|
11937
|
+
sourceName: v30.optional(v30.nullable(v30.string())),
|
|
11938
|
+
sourceId: v30.optional(v30.number()),
|
|
11939
|
+
importState: v30.optional(v30.string()),
|
|
11940
|
+
jsonData: v30.optional(v30.nullable(v30.string())),
|
|
11941
|
+
importStatusCd: v30.optional(v30.number()),
|
|
11942
|
+
importResults: v30.optional(v30.nullable(v30.string())),
|
|
11943
|
+
referenceNo: v30.optional(v30.nullable(v30.string()))
|
|
11944
|
+
});
|
|
11945
|
+
var PassthroughDataSchema22 = v30.record(v30.string(), v30.unknown());
|
|
11628
11946
|
|
|
11629
11947
|
// src/services/p21-sism/generated/endpoints.ts
|
|
11630
|
-
var
|
|
11948
|
+
var endpoints22 = [
|
|
11631
11949
|
{
|
|
11632
11950
|
method: "GET",
|
|
11633
11951
|
path: "/import",
|
|
@@ -11650,7 +11968,7 @@ var endpoints21 = [
|
|
|
11650
11968
|
"sourceName"
|
|
11651
11969
|
],
|
|
11652
11970
|
edgeCache: true,
|
|
11653
|
-
responseSchema:
|
|
11971
|
+
responseSchema: PassthroughDataSchema22,
|
|
11654
11972
|
responseType: "passthrough"
|
|
11655
11973
|
},
|
|
11656
11974
|
{
|
|
@@ -11684,7 +12002,7 @@ var endpoints21 = [
|
|
|
11684
12002
|
"sourceName"
|
|
11685
12003
|
],
|
|
11686
12004
|
edgeCache: true,
|
|
11687
|
-
responseSchema:
|
|
12005
|
+
responseSchema: PassthroughDataSchema22,
|
|
11688
12006
|
responseType: "passthrough"
|
|
11689
12007
|
},
|
|
11690
12008
|
{
|
|
@@ -11696,7 +12014,7 @@ var endpoints21 = [
|
|
|
11696
12014
|
pathParams: [],
|
|
11697
12015
|
queryParams: ["hours", "limit"],
|
|
11698
12016
|
edgeCache: true,
|
|
11699
|
-
responseSchema:
|
|
12017
|
+
responseSchema: PassthroughDataSchema22,
|
|
11700
12018
|
responseType: "passthrough"
|
|
11701
12019
|
},
|
|
11702
12020
|
{
|
|
@@ -11744,7 +12062,7 @@ var endpoints21 = [
|
|
|
11744
12062
|
pathParams: ["importUid"],
|
|
11745
12063
|
queryParams: [],
|
|
11746
12064
|
edgeCache: true,
|
|
11747
|
-
responseSchema:
|
|
12065
|
+
responseSchema: PassthroughDataSchema22,
|
|
11748
12066
|
responseType: "passthrough"
|
|
11749
12067
|
},
|
|
11750
12068
|
{
|
|
@@ -11756,7 +12074,7 @@ var endpoints21 = [
|
|
|
11756
12074
|
pathParams: ["importUid"],
|
|
11757
12075
|
queryParams: [],
|
|
11758
12076
|
edgeCache: false,
|
|
11759
|
-
responseSchema:
|
|
12077
|
+
responseSchema: PassthroughDataSchema22,
|
|
11760
12078
|
responseType: "passthrough"
|
|
11761
12079
|
},
|
|
11762
12080
|
{
|
|
@@ -11768,7 +12086,7 @@ var endpoints21 = [
|
|
|
11768
12086
|
pathParams: ["importUid"],
|
|
11769
12087
|
queryParams: [],
|
|
11770
12088
|
edgeCache: true,
|
|
11771
|
-
responseSchema:
|
|
12089
|
+
responseSchema: PassthroughDataSchema22,
|
|
11772
12090
|
responseType: "passthrough"
|
|
11773
12091
|
},
|
|
11774
12092
|
{
|
|
@@ -11780,7 +12098,7 @@ var endpoints21 = [
|
|
|
11780
12098
|
pathParams: ["importUid"],
|
|
11781
12099
|
queryParams: [],
|
|
11782
12100
|
edgeCache: false,
|
|
11783
|
-
responseSchema:
|
|
12101
|
+
responseSchema: PassthroughDataSchema22,
|
|
11784
12102
|
responseType: "passthrough"
|
|
11785
12103
|
},
|
|
11786
12104
|
{
|
|
@@ -11792,7 +12110,7 @@ var endpoints21 = [
|
|
|
11792
12110
|
pathParams: ["importUid"],
|
|
11793
12111
|
queryParams: [],
|
|
11794
12112
|
edgeCache: true,
|
|
11795
|
-
responseSchema:
|
|
12113
|
+
responseSchema: PassthroughDataSchema22,
|
|
11796
12114
|
responseType: "passthrough"
|
|
11797
12115
|
},
|
|
11798
12116
|
{
|
|
@@ -11804,7 +12122,7 @@ var endpoints21 = [
|
|
|
11804
12122
|
pathParams: ["scheduledImportMasterUid"],
|
|
11805
12123
|
queryParams: [],
|
|
11806
12124
|
edgeCache: false,
|
|
11807
|
-
responseSchema:
|
|
12125
|
+
responseSchema: PassthroughDataSchema22,
|
|
11808
12126
|
responseType: "passthrough"
|
|
11809
12127
|
}
|
|
11810
12128
|
];
|
|
@@ -11857,7 +12175,7 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11857
12175
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11858
12176
|
return this.executeRequest(config, params, pathParams);
|
|
11859
12177
|
};
|
|
11860
|
-
const proxy = createServiceProxy("p21-sism", boundExecuteRequest,
|
|
12178
|
+
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
|
|
11861
12179
|
const dataProxy = createDataProxy(proxy);
|
|
11862
12180
|
this.import = proxy.import;
|
|
11863
12181
|
this.scheduledImportMaster = proxy.scheduledImportMaster;
|
|
@@ -11872,11 +12190,11 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11872
12190
|
};
|
|
11873
12191
|
|
|
11874
12192
|
// src/services/shipping/generated/schemas.ts
|
|
11875
|
-
import * as
|
|
11876
|
-
var
|
|
12193
|
+
import * as v31 from "valibot";
|
|
12194
|
+
var PassthroughDataSchema23 = v31.record(v31.string(), v31.unknown());
|
|
11877
12195
|
|
|
11878
12196
|
// src/services/shipping/generated/endpoints.ts
|
|
11879
|
-
var
|
|
12197
|
+
var endpoints23 = [
|
|
11880
12198
|
{
|
|
11881
12199
|
method: "POST",
|
|
11882
12200
|
path: "/rates",
|
|
@@ -11886,7 +12204,7 @@ var endpoints22 = [
|
|
|
11886
12204
|
pathParams: [],
|
|
11887
12205
|
queryParams: [],
|
|
11888
12206
|
edgeCache: false,
|
|
11889
|
-
responseSchema:
|
|
12207
|
+
responseSchema: PassthroughDataSchema23,
|
|
11890
12208
|
responseType: "passthrough"
|
|
11891
12209
|
}
|
|
11892
12210
|
];
|
|
@@ -11966,7 +12284,7 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
11966
12284
|
const proxy = createServiceProxy(
|
|
11967
12285
|
"shipping",
|
|
11968
12286
|
boundExecuteRequest,
|
|
11969
|
-
|
|
12287
|
+
endpoints23
|
|
11970
12288
|
);
|
|
11971
12289
|
const dataProxy = createDataProxy(proxy);
|
|
11972
12290
|
this.rates = proxy.rates;
|
|
@@ -11977,11 +12295,11 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
11977
12295
|
};
|
|
11978
12296
|
|
|
11979
12297
|
// src/services/slack/generated/schemas.ts
|
|
11980
|
-
import * as
|
|
11981
|
-
var
|
|
12298
|
+
import * as v32 from "valibot";
|
|
12299
|
+
var PassthroughDataSchema24 = v32.record(v32.string(), v32.unknown());
|
|
11982
12300
|
|
|
11983
12301
|
// src/services/slack/generated/endpoints.ts
|
|
11984
|
-
var
|
|
12302
|
+
var endpoints24 = [
|
|
11985
12303
|
{
|
|
11986
12304
|
method: "POST",
|
|
11987
12305
|
path: "/web-hook",
|
|
@@ -11991,7 +12309,7 @@ var endpoints23 = [
|
|
|
11991
12309
|
pathParams: [],
|
|
11992
12310
|
queryParams: [],
|
|
11993
12311
|
edgeCache: false,
|
|
11994
|
-
responseSchema:
|
|
12312
|
+
responseSchema: PassthroughDataSchema24,
|
|
11995
12313
|
responseType: "passthrough"
|
|
11996
12314
|
},
|
|
11997
12315
|
{
|
|
@@ -12003,7 +12321,7 @@ var endpoints23 = [
|
|
|
12003
12321
|
pathParams: [],
|
|
12004
12322
|
queryParams: [],
|
|
12005
12323
|
edgeCache: true,
|
|
12006
|
-
responseSchema:
|
|
12324
|
+
responseSchema: PassthroughDataSchema24,
|
|
12007
12325
|
responseType: "passthrough"
|
|
12008
12326
|
}
|
|
12009
12327
|
];
|
|
@@ -12092,7 +12410,7 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12092
12410
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12093
12411
|
return this.executeRequest(config, params, pathParams);
|
|
12094
12412
|
};
|
|
12095
|
-
const proxy = createServiceProxy("slack", boundExecuteRequest,
|
|
12413
|
+
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
|
|
12096
12414
|
const dataProxy = createDataProxy(proxy);
|
|
12097
12415
|
this.webHook = proxy.webHook;
|
|
12098
12416
|
this.webHookData = dataProxy.webHook;
|
|
@@ -12102,19 +12420,19 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12102
12420
|
};
|
|
12103
12421
|
|
|
12104
12422
|
// src/services/smarty-streets/generated/schemas.ts
|
|
12105
|
-
import * as
|
|
12106
|
-
var UsLookupGetParamsSchema =
|
|
12423
|
+
import * as v33 from "valibot";
|
|
12424
|
+
var UsLookupGetParamsSchema = v33.looseObject({
|
|
12107
12425
|
...EdgeCacheParamsSchema.entries,
|
|
12108
|
-
address1:
|
|
12109
|
-
address2:
|
|
12110
|
-
city:
|
|
12111
|
-
postalCode:
|
|
12112
|
-
state:
|
|
12426
|
+
address1: v33.string(),
|
|
12427
|
+
address2: v33.string(),
|
|
12428
|
+
city: v33.string(),
|
|
12429
|
+
postalCode: v33.string(),
|
|
12430
|
+
state: v33.string()
|
|
12113
12431
|
});
|
|
12114
|
-
var
|
|
12432
|
+
var PassthroughDataSchema25 = v33.record(v33.string(), v33.unknown());
|
|
12115
12433
|
|
|
12116
12434
|
// src/services/smarty-streets/generated/endpoints.ts
|
|
12117
|
-
var
|
|
12435
|
+
var endpoints25 = [
|
|
12118
12436
|
{
|
|
12119
12437
|
method: "GET",
|
|
12120
12438
|
path: "/us/lookup",
|
|
@@ -12124,7 +12442,7 @@ var endpoints24 = [
|
|
|
12124
12442
|
pathParams: [],
|
|
12125
12443
|
queryParams: ["address1", "address2", "city", "postalCode", "state"],
|
|
12126
12444
|
edgeCache: true,
|
|
12127
|
-
responseSchema:
|
|
12445
|
+
responseSchema: PassthroughDataSchema25,
|
|
12128
12446
|
responseType: "passthrough"
|
|
12129
12447
|
}
|
|
12130
12448
|
];
|
|
@@ -12295,7 +12613,7 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12295
12613
|
const proxy = createServiceProxy(
|
|
12296
12614
|
"smarty-streets",
|
|
12297
12615
|
boundExecuteRequest,
|
|
12298
|
-
|
|
12616
|
+
endpoints25
|
|
12299
12617
|
);
|
|
12300
12618
|
const dataProxy = createDataProxy(proxy);
|
|
12301
12619
|
this.us = proxy.us;
|
|
@@ -12308,30 +12626,30 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12308
12626
|
};
|
|
12309
12627
|
|
|
12310
12628
|
// src/services/ups/generated/schemas.ts
|
|
12311
|
-
import * as
|
|
12312
|
-
var RatesShopListParamsSchema =
|
|
12313
|
-
...EdgeCacheParamsSchema.entries,
|
|
12314
|
-
cacheSiteId:
|
|
12315
|
-
fromAddress1:
|
|
12316
|
-
fromAddress2:
|
|
12317
|
-
fromAddress3:
|
|
12318
|
-
fromCity:
|
|
12319
|
-
fromCountryCode:
|
|
12320
|
-
fromPostalCode:
|
|
12321
|
-
fromStateProvinceCode:
|
|
12322
|
-
toAddress1:
|
|
12323
|
-
toAddress2:
|
|
12324
|
-
toAddress3:
|
|
12325
|
-
toCity:
|
|
12326
|
-
toCountryCode:
|
|
12327
|
-
toPostalCode:
|
|
12328
|
-
toStateProvinceCode:
|
|
12329
|
-
weight:
|
|
12330
|
-
});
|
|
12331
|
-
var
|
|
12629
|
+
import * as v34 from "valibot";
|
|
12630
|
+
var RatesShopListParamsSchema = v34.looseObject({
|
|
12631
|
+
...EdgeCacheParamsSchema.entries,
|
|
12632
|
+
cacheSiteId: v34.optional(v34.string()),
|
|
12633
|
+
fromAddress1: v34.optional(v34.string()),
|
|
12634
|
+
fromAddress2: v34.optional(v34.string()),
|
|
12635
|
+
fromAddress3: v34.optional(v34.string()),
|
|
12636
|
+
fromCity: v34.optional(v34.string()),
|
|
12637
|
+
fromCountryCode: v34.optional(v34.string()),
|
|
12638
|
+
fromPostalCode: v34.optional(v34.string()),
|
|
12639
|
+
fromStateProvinceCode: v34.optional(v34.string()),
|
|
12640
|
+
toAddress1: v34.optional(v34.string()),
|
|
12641
|
+
toAddress2: v34.optional(v34.string()),
|
|
12642
|
+
toAddress3: v34.optional(v34.string()),
|
|
12643
|
+
toCity: v34.optional(v34.string()),
|
|
12644
|
+
toCountryCode: v34.optional(v34.string()),
|
|
12645
|
+
toPostalCode: v34.optional(v34.string()),
|
|
12646
|
+
toStateProvinceCode: v34.optional(v34.string()),
|
|
12647
|
+
weight: v34.optional(v34.pipe(v34.unknown(), v34.transform(Number)))
|
|
12648
|
+
});
|
|
12649
|
+
var PassthroughDataSchema26 = v34.record(v34.string(), v34.unknown());
|
|
12332
12650
|
|
|
12333
12651
|
// src/services/ups/generated/endpoints.ts
|
|
12334
|
-
var
|
|
12652
|
+
var endpoints26 = [
|
|
12335
12653
|
{
|
|
12336
12654
|
method: "GET",
|
|
12337
12655
|
path: "/rates-shop",
|
|
@@ -12358,15 +12676,15 @@ var endpoints25 = [
|
|
|
12358
12676
|
"weight"
|
|
12359
12677
|
],
|
|
12360
12678
|
edgeCache: true,
|
|
12361
|
-
responseSchema:
|
|
12679
|
+
responseSchema: PassthroughDataSchema26,
|
|
12362
12680
|
responseType: "passthrough"
|
|
12363
12681
|
}
|
|
12364
12682
|
];
|
|
12365
12683
|
|
|
12366
12684
|
// src/services/ups/resources/health-check.ts
|
|
12367
|
-
import * as
|
|
12368
|
-
var HealthCheckParamsSchema =
|
|
12369
|
-
"x-site-id":
|
|
12685
|
+
import * as v35 from "valibot";
|
|
12686
|
+
var HealthCheckParamsSchema = v35.looseObject({
|
|
12687
|
+
"x-site-id": v35.string(),
|
|
12370
12688
|
...EdgeCacheParamsSchema.entries
|
|
12371
12689
|
});
|
|
12372
12690
|
function createHealthCheckResource26(executeRequest) {
|
|
@@ -12458,7 +12776,7 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12458
12776
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12459
12777
|
return this.executeRequest(config, params, pathParams);
|
|
12460
12778
|
};
|
|
12461
|
-
const proxy = createServiceProxy("ups", boundExecuteRequest,
|
|
12779
|
+
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
|
|
12462
12780
|
const dataProxy = createDataProxy(proxy);
|
|
12463
12781
|
this.ratesShop = proxy.ratesShop;
|
|
12464
12782
|
this.ratesShopData = dataProxy.ratesShop;
|
|
@@ -12468,354 +12786,354 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12468
12786
|
};
|
|
12469
12787
|
|
|
12470
12788
|
// src/services/basecamp2/generated/schemas.ts
|
|
12471
|
-
import * as
|
|
12472
|
-
var CommentsListParamsSchema =
|
|
12473
|
-
...EdgeCacheParamsSchema.entries,
|
|
12474
|
-
creator_id:
|
|
12475
|
-
limit:
|
|
12476
|
-
offset:
|
|
12477
|
-
order_by:
|
|
12478
|
-
todos_id:
|
|
12479
|
-
});
|
|
12480
|
-
var EventsListParamsSchema =
|
|
12481
|
-
...EdgeCacheParamsSchema.entries,
|
|
12482
|
-
event_type_cd:
|
|
12483
|
-
id:
|
|
12484
|
-
limit:
|
|
12485
|
-
offset:
|
|
12486
|
-
order_by:
|
|
12487
|
-
people_id:
|
|
12488
|
-
});
|
|
12489
|
-
var MetricsListParamsSchema =
|
|
12490
|
-
...EdgeCacheParamsSchema.entries,
|
|
12491
|
-
assigneeId:
|
|
12492
|
-
creatorId:
|
|
12493
|
-
hasComments:
|
|
12494
|
-
isStale:
|
|
12495
|
-
limit:
|
|
12496
|
-
needsResponse:
|
|
12497
|
-
offset:
|
|
12498
|
-
orderBy:
|
|
12499
|
-
projectsId:
|
|
12500
|
-
todosStatusCd:
|
|
12501
|
-
});
|
|
12502
|
-
var PeopleListParamsSchema =
|
|
12503
|
-
...EdgeCacheParamsSchema.entries,
|
|
12504
|
-
adminFlag:
|
|
12505
|
-
limit:
|
|
12506
|
-
offset:
|
|
12507
|
-
orderBy:
|
|
12508
|
-
q:
|
|
12509
|
-
trashedFlag:
|
|
12510
|
-
});
|
|
12511
|
-
var PeopleMetricsListParamsSchema =
|
|
12512
|
-
...EdgeCacheParamsSchema.entries,
|
|
12513
|
-
hasComments:
|
|
12514
|
-
isStale:
|
|
12515
|
-
limit:
|
|
12516
|
-
needsResponse:
|
|
12517
|
-
offset:
|
|
12518
|
-
orderBy:
|
|
12519
|
-
todosStatusCd:
|
|
12520
|
-
});
|
|
12521
|
-
var PeopleTodosListParamsSchema =
|
|
12522
|
-
...EdgeCacheParamsSchema.entries,
|
|
12523
|
-
completed_flag:
|
|
12524
|
-
due_at:
|
|
12525
|
-
limit:
|
|
12526
|
-
offset:
|
|
12527
|
-
order_by:
|
|
12528
|
-
projects_id:
|
|
12529
|
-
});
|
|
12530
|
-
var PeopleProjectsTodosListParamsSchema =
|
|
12531
|
-
...EdgeCacheParamsSchema.entries,
|
|
12532
|
-
completed_flag:
|
|
12533
|
-
limit:
|
|
12534
|
-
offset:
|
|
12535
|
-
order_by:
|
|
12536
|
-
});
|
|
12537
|
-
var ProjectsListParamsSchema =
|
|
12538
|
-
...EdgeCacheParamsSchema.entries,
|
|
12539
|
-
archived_flag:
|
|
12540
|
-
limit:
|
|
12541
|
-
offset:
|
|
12542
|
-
order_by:
|
|
12543
|
-
trashed_flag:
|
|
12544
|
-
});
|
|
12545
|
-
var ProjectsMetricsListParamsSchema =
|
|
12546
|
-
...EdgeCacheParamsSchema.entries,
|
|
12547
|
-
hasComments:
|
|
12548
|
-
isStale:
|
|
12549
|
-
limit:
|
|
12550
|
-
needsResponse:
|
|
12551
|
-
offset:
|
|
12552
|
-
orderBy:
|
|
12553
|
-
todosStatusCd:
|
|
12554
|
-
});
|
|
12555
|
-
var ProjectsTodolistsListParamsSchema =
|
|
12556
|
-
...EdgeCacheParamsSchema.entries,
|
|
12557
|
-
completed_flag:
|
|
12558
|
-
limit:
|
|
12559
|
-
offset:
|
|
12560
|
-
order_by:
|
|
12561
|
-
});
|
|
12562
|
-
var ProjectsTodosListParamsSchema =
|
|
12563
|
-
...EdgeCacheParamsSchema.entries,
|
|
12564
|
-
assignee_id:
|
|
12565
|
-
completed_flag:
|
|
12566
|
-
limit:
|
|
12567
|
-
offset:
|
|
12568
|
-
order_by:
|
|
12569
|
-
});
|
|
12570
|
-
var ProjectsTodolistsTodosListParamsSchema =
|
|
12571
|
-
...EdgeCacheParamsSchema.entries,
|
|
12572
|
-
assignee_id:
|
|
12573
|
-
completed_flag:
|
|
12574
|
-
limit:
|
|
12575
|
-
offset:
|
|
12576
|
-
order_by:
|
|
12577
|
-
});
|
|
12578
|
-
var TodolistsListParamsSchema =
|
|
12579
|
-
...EdgeCacheParamsSchema.entries,
|
|
12580
|
-
assignee_id:
|
|
12581
|
-
completed_flag:
|
|
12582
|
-
limit:
|
|
12583
|
-
offset:
|
|
12584
|
-
order_by:
|
|
12585
|
-
projects_id:
|
|
12586
|
-
});
|
|
12587
|
-
var TodosListParamsSchema =
|
|
12588
|
-
...EdgeCacheParamsSchema.entries,
|
|
12589
|
-
assignee_id:
|
|
12590
|
-
completed_flag:
|
|
12591
|
-
due_at:
|
|
12592
|
-
limit:
|
|
12593
|
-
offset:
|
|
12594
|
-
order_by:
|
|
12595
|
-
projects_id:
|
|
12596
|
-
todolist_id:
|
|
12597
|
-
});
|
|
12598
|
-
var TodosSummaryListParamsSchema =
|
|
12599
|
-
...EdgeCacheParamsSchema.entries,
|
|
12600
|
-
akasha_cd:
|
|
12601
|
-
limit:
|
|
12602
|
-
offset:
|
|
12603
|
-
process_cd:
|
|
12604
|
-
});
|
|
12605
|
-
var TodosCommentsListParamsSchema =
|
|
12606
|
-
...EdgeCacheParamsSchema.entries,
|
|
12607
|
-
limit:
|
|
12608
|
-
offset:
|
|
12609
|
-
order_by:
|
|
12610
|
-
});
|
|
12611
|
-
var TodosEventsListParamsSchema =
|
|
12612
|
-
...EdgeCacheParamsSchema.entries,
|
|
12613
|
-
event_type_cd:
|
|
12614
|
-
limit:
|
|
12615
|
-
offset:
|
|
12616
|
-
order_by:
|
|
12617
|
-
people_id:
|
|
12618
|
-
});
|
|
12619
|
-
var TodosSessionsListParamsSchema =
|
|
12620
|
-
...EdgeCacheParamsSchema.entries,
|
|
12621
|
-
limit:
|
|
12622
|
-
offset:
|
|
12623
|
-
order_by:
|
|
12624
|
-
session_status_cd:
|
|
12625
|
-
});
|
|
12626
|
-
var CommentsDataSchema =
|
|
12627
|
-
id:
|
|
12628
|
-
content:
|
|
12629
|
-
updatedAt:
|
|
12630
|
-
createdAt:
|
|
12631
|
-
creatorId:
|
|
12632
|
-
updateCd:
|
|
12633
|
-
statusCd:
|
|
12634
|
-
processCd:
|
|
12635
|
-
todosId:
|
|
12636
|
-
vector:
|
|
12637
|
-
vectorCd:
|
|
12638
|
-
vectorFlag:
|
|
12639
|
-
dateLastVector:
|
|
12640
|
-
location:
|
|
12641
|
-
contentLength:
|
|
12642
|
-
tokenCount:
|
|
12643
|
-
});
|
|
12644
|
-
var EventsDataSchema =
|
|
12645
|
-
id:
|
|
12646
|
-
eventNum:
|
|
12647
|
-
eventTypeCd:
|
|
12648
|
-
peopleId:
|
|
12649
|
-
eventAt:
|
|
12650
|
-
commentId:
|
|
12651
|
-
dateCreated:
|
|
12652
|
-
dateLastModified:
|
|
12653
|
-
updateCd:
|
|
12654
|
-
statusCd:
|
|
12655
|
-
processCd:
|
|
12656
|
-
todosSessionsUid:
|
|
12657
|
-
});
|
|
12658
|
-
var MetricsDataSchema =
|
|
12659
|
-
id:
|
|
12660
|
-
projectsId:
|
|
12661
|
-
todolistId:
|
|
12662
|
-
assigneeId:
|
|
12663
|
-
creatorId:
|
|
12664
|
-
todosContent:
|
|
12665
|
-
todosStatusCd:
|
|
12666
|
-
isStale:
|
|
12667
|
-
hasComments:
|
|
12668
|
-
needsResponse:
|
|
12669
|
-
createdAt:
|
|
12670
|
-
completedAt:
|
|
12671
|
-
lastActivityAt:
|
|
12672
|
-
firstCommentAt:
|
|
12673
|
-
lastCommentAt:
|
|
12674
|
-
daysOpen:
|
|
12675
|
-
daysSinceLastEvent:
|
|
12676
|
-
daysToFirstComment:
|
|
12677
|
-
cycleTimeDays:
|
|
12678
|
-
commentCount:
|
|
12679
|
-
activeDaysCount:
|
|
12680
|
-
activitySpanDays:
|
|
12681
|
-
avgDaysBetweenActivity:
|
|
12682
|
-
lastCommenterId:
|
|
12683
|
-
dateCreated:
|
|
12684
|
-
dateLastModified:
|
|
12685
|
-
updateCd:
|
|
12686
|
-
statusCd:
|
|
12687
|
-
processCd:
|
|
12688
|
-
});
|
|
12689
|
-
var PeopleDataSchema =
|
|
12690
|
-
id:
|
|
12691
|
-
identityId:
|
|
12692
|
-
name:
|
|
12693
|
-
emailAddress:
|
|
12694
|
-
adminFlag:
|
|
12695
|
-
trashedFlag:
|
|
12696
|
-
updatedAt:
|
|
12697
|
-
createdAt:
|
|
12698
|
-
url:
|
|
12699
|
-
appUrl:
|
|
12700
|
-
avatarUrl:
|
|
12701
|
-
fullsizeAvatarUrl:
|
|
12702
|
-
updateCd:
|
|
12703
|
-
statusCd:
|
|
12704
|
-
processCd:
|
|
12705
|
-
});
|
|
12706
|
-
var ProjectsDataSchema =
|
|
12707
|
-
id:
|
|
12708
|
-
name:
|
|
12709
|
-
description:
|
|
12710
|
-
updatedAt:
|
|
12711
|
-
createdAt:
|
|
12712
|
-
lastEventAt:
|
|
12713
|
-
url:
|
|
12714
|
-
appUrl:
|
|
12715
|
-
templateFlag:
|
|
12716
|
-
archivedFlag:
|
|
12717
|
-
starredFlag:
|
|
12718
|
-
trashedFlag:
|
|
12719
|
-
draftFlag:
|
|
12720
|
-
isClientProjectFlag:
|
|
12721
|
-
color:
|
|
12722
|
-
updateCd:
|
|
12723
|
-
statusCd:
|
|
12724
|
-
processCd:
|
|
12725
|
-
});
|
|
12726
|
-
var TodolistsDataSchema =
|
|
12727
|
-
id:
|
|
12728
|
-
name:
|
|
12729
|
-
description:
|
|
12730
|
-
updatedAt:
|
|
12731
|
-
createdAt:
|
|
12732
|
-
url:
|
|
12733
|
-
appUrl:
|
|
12734
|
-
completedFlag:
|
|
12735
|
-
privateFlag:
|
|
12736
|
-
trashedFlag:
|
|
12737
|
-
completedCount:
|
|
12738
|
-
remainingCount:
|
|
12739
|
-
creatorId:
|
|
12740
|
-
bucketId:
|
|
12741
|
-
updateCd:
|
|
12742
|
-
position:
|
|
12743
|
-
statusCd:
|
|
12744
|
-
processCd:
|
|
12745
|
-
projectsId:
|
|
12746
|
-
});
|
|
12747
|
-
var TodosDataSchema =
|
|
12748
|
-
id:
|
|
12749
|
-
todolistId:
|
|
12750
|
-
content:
|
|
12751
|
-
dueAt:
|
|
12752
|
-
dueOn:
|
|
12753
|
-
updatedAt:
|
|
12754
|
-
createdAt:
|
|
12755
|
-
completedAt:
|
|
12756
|
-
commentsCount:
|
|
12757
|
-
privateFlag:
|
|
12758
|
-
trashedFlag:
|
|
12759
|
-
creatorId:
|
|
12760
|
-
assigneeId:
|
|
12761
|
-
completedFlag:
|
|
12762
|
-
url:
|
|
12763
|
-
appUrl:
|
|
12764
|
-
updateCd:
|
|
12765
|
-
position:
|
|
12766
|
-
projectsId:
|
|
12767
|
-
detailJson:
|
|
12768
|
-
pullDetailCd:
|
|
12769
|
-
processCd:
|
|
12770
|
-
agrInfoCd:
|
|
12771
|
-
statusCd:
|
|
12772
|
-
lastCommentAt:
|
|
12773
|
-
vector:
|
|
12774
|
-
vectorCd:
|
|
12775
|
-
vectorFlag:
|
|
12776
|
-
dateLastVector:
|
|
12777
|
-
});
|
|
12778
|
-
var TodosSummaryDataSchema =
|
|
12779
|
-
id:
|
|
12780
|
-
summary:
|
|
12781
|
-
summaryTokens:
|
|
12782
|
-
context:
|
|
12783
|
-
contextTokens:
|
|
12784
|
-
modelName:
|
|
12785
|
-
vector:
|
|
12786
|
-
vectorCd:
|
|
12787
|
-
statusCd:
|
|
12788
|
-
processCd:
|
|
12789
|
-
updateCd:
|
|
12790
|
-
dateCreated:
|
|
12791
|
-
dateLastModified:
|
|
12792
|
-
akashaCd:
|
|
12793
|
-
complexityScore:
|
|
12794
|
-
complexityReason:
|
|
12795
|
-
estimatedMinutes:
|
|
12796
|
-
requiredServices:
|
|
12797
|
-
worthinessReason:
|
|
12798
|
-
});
|
|
12799
|
-
var TodosSessionsDataSchema =
|
|
12800
|
-
todosSessionsUid:
|
|
12801
|
-
todosId:
|
|
12802
|
-
sessionNum:
|
|
12803
|
-
sessionStatusCd:
|
|
12804
|
-
subject:
|
|
12805
|
-
problem:
|
|
12806
|
-
investigation:
|
|
12807
|
-
plan:
|
|
12808
|
-
outcome:
|
|
12809
|
-
dateCreated:
|
|
12810
|
-
dateLastModified:
|
|
12811
|
-
updateCd:
|
|
12812
|
-
statusCd:
|
|
12813
|
-
processCd:
|
|
12814
|
-
});
|
|
12815
|
-
var
|
|
12789
|
+
import * as v36 from "valibot";
|
|
12790
|
+
var CommentsListParamsSchema = v36.looseObject({
|
|
12791
|
+
...EdgeCacheParamsSchema.entries,
|
|
12792
|
+
creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12793
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12794
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12795
|
+
order_by: v36.optional(v36.string()),
|
|
12796
|
+
todos_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12797
|
+
});
|
|
12798
|
+
var EventsListParamsSchema = v36.looseObject({
|
|
12799
|
+
...EdgeCacheParamsSchema.entries,
|
|
12800
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12801
|
+
id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12802
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12803
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12804
|
+
order_by: v36.optional(v36.string()),
|
|
12805
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12806
|
+
});
|
|
12807
|
+
var MetricsListParamsSchema = v36.looseObject({
|
|
12808
|
+
...EdgeCacheParamsSchema.entries,
|
|
12809
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12810
|
+
creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12811
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12812
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12813
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12814
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12815
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12816
|
+
orderBy: v36.optional(v36.string()),
|
|
12817
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12818
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12819
|
+
});
|
|
12820
|
+
var PeopleListParamsSchema = v36.looseObject({
|
|
12821
|
+
...EdgeCacheParamsSchema.entries,
|
|
12822
|
+
adminFlag: v36.optional(v36.string()),
|
|
12823
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12824
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12825
|
+
orderBy: v36.optional(v36.string()),
|
|
12826
|
+
q: v36.optional(v36.string()),
|
|
12827
|
+
trashedFlag: v36.optional(v36.string())
|
|
12828
|
+
});
|
|
12829
|
+
var PeopleMetricsListParamsSchema = v36.looseObject({
|
|
12830
|
+
...EdgeCacheParamsSchema.entries,
|
|
12831
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12832
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12833
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12834
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12835
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12836
|
+
orderBy: v36.optional(v36.string()),
|
|
12837
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12838
|
+
});
|
|
12839
|
+
var PeopleTodosListParamsSchema = v36.looseObject({
|
|
12840
|
+
...EdgeCacheParamsSchema.entries,
|
|
12841
|
+
completed_flag: v36.optional(v36.string()),
|
|
12842
|
+
due_at: v36.optional(v36.string()),
|
|
12843
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12844
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12845
|
+
order_by: v36.optional(v36.string()),
|
|
12846
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12847
|
+
});
|
|
12848
|
+
var PeopleProjectsTodosListParamsSchema = v36.looseObject({
|
|
12849
|
+
...EdgeCacheParamsSchema.entries,
|
|
12850
|
+
completed_flag: v36.optional(v36.string()),
|
|
12851
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12852
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12853
|
+
order_by: v36.optional(v36.string())
|
|
12854
|
+
});
|
|
12855
|
+
var ProjectsListParamsSchema = v36.looseObject({
|
|
12856
|
+
...EdgeCacheParamsSchema.entries,
|
|
12857
|
+
archived_flag: v36.optional(v36.string()),
|
|
12858
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12859
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12860
|
+
order_by: v36.optional(v36.string()),
|
|
12861
|
+
trashed_flag: v36.optional(v36.string())
|
|
12862
|
+
});
|
|
12863
|
+
var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
12864
|
+
...EdgeCacheParamsSchema.entries,
|
|
12865
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12866
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12867
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12868
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12869
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12870
|
+
orderBy: v36.optional(v36.string()),
|
|
12871
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12872
|
+
});
|
|
12873
|
+
var ProjectsTodolistsListParamsSchema = v36.looseObject({
|
|
12874
|
+
...EdgeCacheParamsSchema.entries,
|
|
12875
|
+
completed_flag: v36.optional(v36.string()),
|
|
12876
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12877
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12878
|
+
order_by: v36.optional(v36.string())
|
|
12879
|
+
});
|
|
12880
|
+
var ProjectsTodosListParamsSchema = v36.looseObject({
|
|
12881
|
+
...EdgeCacheParamsSchema.entries,
|
|
12882
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12883
|
+
completed_flag: v36.optional(v36.string()),
|
|
12884
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12885
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12886
|
+
order_by: v36.optional(v36.string())
|
|
12887
|
+
});
|
|
12888
|
+
var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
|
|
12889
|
+
...EdgeCacheParamsSchema.entries,
|
|
12890
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12891
|
+
completed_flag: v36.optional(v36.string()),
|
|
12892
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12893
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12894
|
+
order_by: v36.optional(v36.string())
|
|
12895
|
+
});
|
|
12896
|
+
var TodolistsListParamsSchema = v36.looseObject({
|
|
12897
|
+
...EdgeCacheParamsSchema.entries,
|
|
12898
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12899
|
+
completed_flag: 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
|
+
order_by: v36.optional(v36.string()),
|
|
12903
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12904
|
+
});
|
|
12905
|
+
var TodosListParamsSchema = v36.looseObject({
|
|
12906
|
+
...EdgeCacheParamsSchema.entries,
|
|
12907
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12908
|
+
completed_flag: v36.optional(v36.string()),
|
|
12909
|
+
due_at: v36.optional(v36.string()),
|
|
12910
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12911
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12912
|
+
order_by: v36.optional(v36.string()),
|
|
12913
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12914
|
+
todolist_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12915
|
+
});
|
|
12916
|
+
var TodosSummaryListParamsSchema = v36.looseObject({
|
|
12917
|
+
...EdgeCacheParamsSchema.entries,
|
|
12918
|
+
akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12919
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12920
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12921
|
+
process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12922
|
+
});
|
|
12923
|
+
var TodosCommentsListParamsSchema = v36.looseObject({
|
|
12924
|
+
...EdgeCacheParamsSchema.entries,
|
|
12925
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12926
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12927
|
+
order_by: v36.optional(v36.string())
|
|
12928
|
+
});
|
|
12929
|
+
var TodosEventsListParamsSchema = v36.looseObject({
|
|
12930
|
+
...EdgeCacheParamsSchema.entries,
|
|
12931
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12932
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12933
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12934
|
+
order_by: v36.optional(v36.string()),
|
|
12935
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12936
|
+
});
|
|
12937
|
+
var TodosSessionsListParamsSchema = v36.looseObject({
|
|
12938
|
+
...EdgeCacheParamsSchema.entries,
|
|
12939
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12940
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12941
|
+
order_by: v36.optional(v36.string()),
|
|
12942
|
+
session_status_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12943
|
+
});
|
|
12944
|
+
var CommentsDataSchema = v36.looseObject({
|
|
12945
|
+
id: v36.optional(v36.number()),
|
|
12946
|
+
content: v36.optional(v36.string()),
|
|
12947
|
+
updatedAt: v36.optional(v36.string()),
|
|
12948
|
+
createdAt: v36.optional(v36.string()),
|
|
12949
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
12950
|
+
updateCd: v36.optional(v36.number()),
|
|
12951
|
+
statusCd: v36.optional(v36.number()),
|
|
12952
|
+
processCd: v36.optional(v36.number()),
|
|
12953
|
+
todosId: v36.optional(v36.nullable(v36.number())),
|
|
12954
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
12955
|
+
vectorCd: v36.optional(v36.number()),
|
|
12956
|
+
vectorFlag: v36.optional(v36.string()),
|
|
12957
|
+
dateLastVector: v36.optional(v36.string()),
|
|
12958
|
+
location: v36.optional(v36.nullable(v36.string())),
|
|
12959
|
+
contentLength: v36.optional(v36.number()),
|
|
12960
|
+
tokenCount: v36.optional(v36.number())
|
|
12961
|
+
});
|
|
12962
|
+
var EventsDataSchema = v36.looseObject({
|
|
12963
|
+
id: v36.optional(v36.number()),
|
|
12964
|
+
eventNum: v36.optional(v36.number()),
|
|
12965
|
+
eventTypeCd: v36.optional(v36.number()),
|
|
12966
|
+
peopleId: v36.optional(v36.number()),
|
|
12967
|
+
eventAt: v36.optional(v36.string()),
|
|
12968
|
+
commentId: v36.optional(v36.nullable(v36.number())),
|
|
12969
|
+
dateCreated: v36.optional(v36.string()),
|
|
12970
|
+
dateLastModified: v36.optional(v36.string()),
|
|
12971
|
+
updateCd: v36.optional(v36.number()),
|
|
12972
|
+
statusCd: v36.optional(v36.number()),
|
|
12973
|
+
processCd: v36.optional(v36.number()),
|
|
12974
|
+
todosSessionsUid: v36.optional(v36.nullable(v36.number()))
|
|
12975
|
+
});
|
|
12976
|
+
var MetricsDataSchema = v36.looseObject({
|
|
12977
|
+
id: v36.optional(v36.number()),
|
|
12978
|
+
projectsId: v36.optional(v36.nullable(v36.number())),
|
|
12979
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
12980
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
12981
|
+
creatorId: v36.optional(v36.number()),
|
|
12982
|
+
todosContent: v36.optional(v36.nullable(v36.string())),
|
|
12983
|
+
todosStatusCd: v36.optional(v36.number()),
|
|
12984
|
+
isStale: v36.optional(v36.number()),
|
|
12985
|
+
hasComments: v36.optional(v36.number()),
|
|
12986
|
+
needsResponse: v36.optional(v36.number()),
|
|
12987
|
+
createdAt: v36.optional(v36.string()),
|
|
12988
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
12989
|
+
lastActivityAt: v36.optional(v36.string()),
|
|
12990
|
+
firstCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
12991
|
+
lastCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
12992
|
+
daysOpen: v36.optional(v36.nullable(v36.number())),
|
|
12993
|
+
daysSinceLastEvent: v36.optional(v36.nullable(v36.number())),
|
|
12994
|
+
daysToFirstComment: v36.optional(v36.nullable(v36.number())),
|
|
12995
|
+
cycleTimeDays: v36.optional(v36.nullable(v36.number())),
|
|
12996
|
+
commentCount: v36.optional(v36.number()),
|
|
12997
|
+
activeDaysCount: v36.optional(v36.number()),
|
|
12998
|
+
activitySpanDays: v36.optional(v36.nullable(v36.number())),
|
|
12999
|
+
avgDaysBetweenActivity: v36.optional(v36.nullable(v36.number())),
|
|
13000
|
+
lastCommenterId: v36.optional(v36.nullable(v36.number())),
|
|
13001
|
+
dateCreated: v36.optional(v36.string()),
|
|
13002
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13003
|
+
updateCd: v36.optional(v36.number()),
|
|
13004
|
+
statusCd: v36.optional(v36.number()),
|
|
13005
|
+
processCd: v36.optional(v36.number())
|
|
13006
|
+
});
|
|
13007
|
+
var PeopleDataSchema = v36.looseObject({
|
|
13008
|
+
id: v36.optional(v36.number()),
|
|
13009
|
+
identityId: v36.optional(v36.nullable(v36.number())),
|
|
13010
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13011
|
+
emailAddress: v36.optional(v36.nullable(v36.string())),
|
|
13012
|
+
adminFlag: v36.optional(v36.nullable(v36.string())),
|
|
13013
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13014
|
+
updatedAt: v36.optional(v36.string()),
|
|
13015
|
+
createdAt: v36.optional(v36.string()),
|
|
13016
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13017
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13018
|
+
avatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
13019
|
+
fullsizeAvatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
13020
|
+
updateCd: v36.optional(v36.number()),
|
|
13021
|
+
statusCd: v36.optional(v36.number()),
|
|
13022
|
+
processCd: v36.optional(v36.number())
|
|
13023
|
+
});
|
|
13024
|
+
var ProjectsDataSchema = v36.looseObject({
|
|
13025
|
+
id: v36.optional(v36.number()),
|
|
13026
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13027
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13028
|
+
updatedAt: v36.optional(v36.string()),
|
|
13029
|
+
createdAt: v36.optional(v36.string()),
|
|
13030
|
+
lastEventAt: v36.optional(v36.string()),
|
|
13031
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13032
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13033
|
+
templateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13034
|
+
archivedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13035
|
+
starredFlag: v36.optional(v36.nullable(v36.string())),
|
|
13036
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13037
|
+
draftFlag: v36.optional(v36.nullable(v36.string())),
|
|
13038
|
+
isClientProjectFlag: v36.optional(v36.nullable(v36.string())),
|
|
13039
|
+
color: v36.optional(v36.nullable(v36.string())),
|
|
13040
|
+
updateCd: v36.optional(v36.number()),
|
|
13041
|
+
statusCd: v36.optional(v36.number()),
|
|
13042
|
+
processCd: v36.optional(v36.number())
|
|
13043
|
+
});
|
|
13044
|
+
var TodolistsDataSchema = v36.looseObject({
|
|
13045
|
+
id: v36.optional(v36.number()),
|
|
13046
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13047
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13048
|
+
updatedAt: v36.optional(v36.string()),
|
|
13049
|
+
createdAt: v36.optional(v36.string()),
|
|
13050
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13051
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13052
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13053
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13054
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13055
|
+
completedCount: v36.optional(v36.nullable(v36.number())),
|
|
13056
|
+
remainingCount: v36.optional(v36.nullable(v36.number())),
|
|
13057
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13058
|
+
bucketId: v36.optional(v36.nullable(v36.number())),
|
|
13059
|
+
updateCd: v36.optional(v36.number()),
|
|
13060
|
+
position: v36.optional(v36.number()),
|
|
13061
|
+
statusCd: v36.optional(v36.number()),
|
|
13062
|
+
processCd: v36.optional(v36.number()),
|
|
13063
|
+
projectsId: v36.optional(v36.number())
|
|
13064
|
+
});
|
|
13065
|
+
var TodosDataSchema = v36.looseObject({
|
|
13066
|
+
id: v36.optional(v36.number()),
|
|
13067
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
13068
|
+
content: v36.optional(v36.nullable(v36.string())),
|
|
13069
|
+
dueAt: v36.optional(v36.nullable(v36.string())),
|
|
13070
|
+
dueOn: v36.optional(v36.nullable(v36.string())),
|
|
13071
|
+
updatedAt: v36.optional(v36.string()),
|
|
13072
|
+
createdAt: v36.optional(v36.string()),
|
|
13073
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
13074
|
+
commentsCount: v36.optional(v36.nullable(v36.number())),
|
|
13075
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13076
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13077
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13078
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
13079
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13080
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13081
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13082
|
+
updateCd: v36.optional(v36.number()),
|
|
13083
|
+
position: v36.optional(v36.number()),
|
|
13084
|
+
projectsId: v36.optional(v36.number()),
|
|
13085
|
+
detailJson: v36.optional(v36.nullable(v36.string())),
|
|
13086
|
+
pullDetailCd: v36.optional(v36.number()),
|
|
13087
|
+
processCd: v36.optional(v36.number()),
|
|
13088
|
+
agrInfoCd: v36.optional(v36.number()),
|
|
13089
|
+
statusCd: v36.optional(v36.number()),
|
|
13090
|
+
lastCommentAt: v36.optional(v36.string()),
|
|
13091
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13092
|
+
vectorCd: v36.optional(v36.number()),
|
|
13093
|
+
vectorFlag: v36.optional(v36.string()),
|
|
13094
|
+
dateLastVector: v36.optional(v36.string())
|
|
13095
|
+
});
|
|
13096
|
+
var TodosSummaryDataSchema = v36.looseObject({
|
|
13097
|
+
id: v36.optional(v36.number()),
|
|
13098
|
+
summary: v36.optional(v36.nullable(v36.string())),
|
|
13099
|
+
summaryTokens: v36.optional(v36.number()),
|
|
13100
|
+
context: v36.optional(v36.nullable(v36.string())),
|
|
13101
|
+
contextTokens: v36.optional(v36.number()),
|
|
13102
|
+
modelName: v36.optional(v36.nullable(v36.string())),
|
|
13103
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13104
|
+
vectorCd: v36.optional(v36.number()),
|
|
13105
|
+
statusCd: v36.optional(v36.number()),
|
|
13106
|
+
processCd: v36.optional(v36.number()),
|
|
13107
|
+
updateCd: v36.optional(v36.number()),
|
|
13108
|
+
dateCreated: v36.optional(v36.string()),
|
|
13109
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13110
|
+
akashaCd: v36.optional(v36.number()),
|
|
13111
|
+
complexityScore: v36.optional(v36.nullable(v36.number())),
|
|
13112
|
+
complexityReason: v36.optional(v36.nullable(v36.string())),
|
|
13113
|
+
estimatedMinutes: v36.optional(v36.nullable(v36.number())),
|
|
13114
|
+
requiredServices: v36.optional(v36.nullable(v36.string())),
|
|
13115
|
+
worthinessReason: v36.optional(v36.nullable(v36.string()))
|
|
13116
|
+
});
|
|
13117
|
+
var TodosSessionsDataSchema = v36.looseObject({
|
|
13118
|
+
todosSessionsUid: v36.optional(v36.number()),
|
|
13119
|
+
todosId: v36.optional(v36.number()),
|
|
13120
|
+
sessionNum: v36.optional(v36.number()),
|
|
13121
|
+
sessionStatusCd: v36.optional(v36.number()),
|
|
13122
|
+
subject: v36.optional(v36.nullable(v36.string())),
|
|
13123
|
+
problem: v36.optional(v36.nullable(v36.string())),
|
|
13124
|
+
investigation: v36.optional(v36.nullable(v36.string())),
|
|
13125
|
+
plan: v36.optional(v36.nullable(v36.string())),
|
|
13126
|
+
outcome: v36.optional(v36.nullable(v36.string())),
|
|
13127
|
+
dateCreated: v36.optional(v36.string()),
|
|
13128
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13129
|
+
updateCd: v36.optional(v36.number()),
|
|
13130
|
+
statusCd: v36.optional(v36.number()),
|
|
13131
|
+
processCd: v36.optional(v36.number())
|
|
13132
|
+
});
|
|
13133
|
+
var PassthroughDataSchema27 = v36.record(v36.string(), v36.unknown());
|
|
12816
13134
|
|
|
12817
13135
|
// src/services/basecamp2/generated/endpoints.ts
|
|
12818
|
-
var
|
|
13136
|
+
var endpoints27 = [
|
|
12819
13137
|
{
|
|
12820
13138
|
method: "GET",
|
|
12821
13139
|
path: "/comments",
|
|
@@ -13269,7 +13587,7 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13269
13587
|
const proxy = createServiceProxy(
|
|
13270
13588
|
"basecamp2",
|
|
13271
13589
|
boundExecuteRequest,
|
|
13272
|
-
|
|
13590
|
+
endpoints27
|
|
13273
13591
|
);
|
|
13274
13592
|
const dataProxy = createDataProxy(proxy);
|
|
13275
13593
|
this.comments = proxy.comments;
|
|
@@ -13488,6 +13806,16 @@ var AugurAPI = class _AugurAPI {
|
|
|
13488
13806
|
}
|
|
13489
13807
|
return this._agrInfo;
|
|
13490
13808
|
}
|
|
13809
|
+
/**
|
|
13810
|
+
* Access AGR Int (internal RBAC) service endpoints
|
|
13811
|
+
*/
|
|
13812
|
+
get agrInt() {
|
|
13813
|
+
if (!this._agrInt) {
|
|
13814
|
+
const httpClient = new HTTPClient("agr-int", this.config);
|
|
13815
|
+
this._agrInt = new AgrIntClient(httpClient);
|
|
13816
|
+
}
|
|
13817
|
+
return this._agrInt;
|
|
13818
|
+
}
|
|
13491
13819
|
/**
|
|
13492
13820
|
* Access AGR Work service endpoints
|
|
13493
13821
|
*/
|
|
@@ -13638,6 +13966,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13638
13966
|
this._p21Pim = void 0;
|
|
13639
13967
|
this._payments = void 0;
|
|
13640
13968
|
this._agrInfo = void 0;
|
|
13969
|
+
this._agrInt = void 0;
|
|
13641
13970
|
this._agrWork = void 0;
|
|
13642
13971
|
this._avalara = void 0;
|
|
13643
13972
|
this._brandFolder = void 0;
|
|
@@ -13672,6 +14001,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13672
14001
|
this._p21Pim = void 0;
|
|
13673
14002
|
this._payments = void 0;
|
|
13674
14003
|
this._agrInfo = void 0;
|
|
14004
|
+
this._agrInt = void 0;
|
|
13675
14005
|
this._agrWork = void 0;
|
|
13676
14006
|
this._avalara = void 0;
|
|
13677
14007
|
this._brandFolder = void 0;
|
|
@@ -13729,6 +14059,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13729
14059
|
{ name: "p21Pim", client: this.p21Pim },
|
|
13730
14060
|
{ name: "payments", client: this.payments },
|
|
13731
14061
|
{ name: "agrInfo", client: this.agrInfo },
|
|
14062
|
+
{ name: "agrInt", client: this.agrInt },
|
|
13732
14063
|
{ name: "agrWork", client: this.agrWork },
|
|
13733
14064
|
{ name: "avalara", client: this.avalara },
|
|
13734
14065
|
{ name: "brandFolder", client: this.brandFolder },
|
|
@@ -13823,11 +14154,11 @@ var AugurAPI = class _AugurAPI {
|
|
|
13823
14154
|
/**
|
|
13824
14155
|
* Search and score endpoints against search term
|
|
13825
14156
|
*/
|
|
13826
|
-
searchAndScoreEndpoints(
|
|
14157
|
+
searchAndScoreEndpoints(endpoints28, searchTerm, options) {
|
|
13827
14158
|
const { domain, minScore } = options;
|
|
13828
14159
|
const results = [];
|
|
13829
14160
|
const searchTermLower = searchTerm.toLowerCase();
|
|
13830
|
-
for (const endpoint of
|
|
14161
|
+
for (const endpoint of endpoints28) {
|
|
13831
14162
|
if (!this.isValidEndpoint(endpoint)) {
|
|
13832
14163
|
continue;
|
|
13833
14164
|
}
|
|
@@ -14181,9 +14512,10 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14181
14512
|
}
|
|
14182
14513
|
|
|
14183
14514
|
// src/index.ts
|
|
14184
|
-
var VERSION = "2026.6.
|
|
14515
|
+
var VERSION = "2026.6.3";
|
|
14185
14516
|
export {
|
|
14186
14517
|
AgrInfoClient,
|
|
14518
|
+
AgrIntClient,
|
|
14187
14519
|
AgrSiteClient,
|
|
14188
14520
|
AgrWorkClient,
|
|
14189
14521
|
AugurAPI,
|