@simpleapps-com/augur-api 2026.6.1 → 2026.6.2
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-rJXd07YM.d.mts} +142 -5
- package/dist/{client-R8LU4_qg.d.ts → client-rJXd07YM.d.ts} +142 -5
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1158 -858
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1157 -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,291 @@ 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 UsersVerifyDataSchema = v22.looseObject({
|
|
9781
|
+
usersUid: v22.optional(v22.number()),
|
|
9782
|
+
username: v22.optional(v22.string())
|
|
9783
|
+
});
|
|
9784
|
+
var UsersRolesDataSchema = v22.looseObject({
|
|
9785
|
+
usersXRolesUid: v22.optional(v22.number()),
|
|
9786
|
+
usersUid: v22.optional(v22.number()),
|
|
9787
|
+
rolesUid: v22.optional(v22.number()),
|
|
9788
|
+
dateCreated: v22.optional(v22.string()),
|
|
9789
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9790
|
+
updateCd: v22.optional(v22.number()),
|
|
9791
|
+
statusCd: v22.optional(v22.number()),
|
|
9792
|
+
processCd: v22.optional(v22.number())
|
|
9793
|
+
});
|
|
9794
|
+
var PassthroughDataSchema15 = v22.record(v22.string(), v22.unknown());
|
|
9795
|
+
|
|
9796
|
+
// src/services/agr-int/generated/endpoints.ts
|
|
9797
|
+
var endpoints15 = [
|
|
9798
|
+
{
|
|
9799
|
+
method: "GET",
|
|
9800
|
+
path: "/roles",
|
|
9801
|
+
chain: "roles",
|
|
9802
|
+
action: "list",
|
|
9803
|
+
aliases: [],
|
|
9804
|
+
pathParams: [],
|
|
9805
|
+
queryParams: ["limit", "offset", "orderBy", "roleId", "roleName", "statusCd", "systemFlag"],
|
|
9806
|
+
edgeCache: true,
|
|
9807
|
+
responseSchema: RolesDataSchema,
|
|
9808
|
+
responseType: "array"
|
|
9809
|
+
},
|
|
9810
|
+
{
|
|
9811
|
+
method: "POST",
|
|
9812
|
+
path: "/roles",
|
|
9813
|
+
chain: "roles",
|
|
9814
|
+
action: "create",
|
|
9815
|
+
aliases: [],
|
|
9816
|
+
pathParams: [],
|
|
9817
|
+
queryParams: [],
|
|
9818
|
+
edgeCache: false,
|
|
9819
|
+
responseSchema: RolesDataSchema,
|
|
9820
|
+
responseType: "object"
|
|
9821
|
+
},
|
|
9822
|
+
{
|
|
9823
|
+
method: "GET",
|
|
9824
|
+
path: "/roles/{rolesUid}",
|
|
9825
|
+
chain: "roles",
|
|
9826
|
+
action: "get",
|
|
9827
|
+
aliases: [],
|
|
9828
|
+
pathParams: ["rolesUid"],
|
|
9829
|
+
queryParams: [],
|
|
9830
|
+
edgeCache: true,
|
|
9831
|
+
responseSchema: RolesDataSchema,
|
|
9832
|
+
responseType: "object"
|
|
9833
|
+
},
|
|
9834
|
+
{
|
|
9835
|
+
method: "PUT",
|
|
9836
|
+
path: "/roles/{rolesUid}",
|
|
9837
|
+
chain: "roles",
|
|
9838
|
+
action: "update",
|
|
9839
|
+
aliases: [],
|
|
9840
|
+
pathParams: ["rolesUid"],
|
|
9841
|
+
queryParams: [],
|
|
9842
|
+
edgeCache: false,
|
|
9843
|
+
responseSchema: RolesDataSchema,
|
|
9844
|
+
responseType: "object"
|
|
9845
|
+
},
|
|
9846
|
+
{
|
|
9847
|
+
method: "DELETE",
|
|
9848
|
+
path: "/roles/{rolesUid}",
|
|
9849
|
+
chain: "roles",
|
|
9850
|
+
action: "delete",
|
|
9851
|
+
aliases: [],
|
|
9852
|
+
pathParams: ["rolesUid"],
|
|
9853
|
+
queryParams: [],
|
|
9854
|
+
edgeCache: false,
|
|
9855
|
+
responseSchema: RolesDataSchema,
|
|
9856
|
+
responseType: "object"
|
|
9857
|
+
},
|
|
9858
|
+
{
|
|
9859
|
+
method: "GET",
|
|
9860
|
+
path: "/users",
|
|
9861
|
+
chain: "users",
|
|
9862
|
+
action: "list",
|
|
9863
|
+
aliases: [],
|
|
9864
|
+
pathParams: [],
|
|
9865
|
+
queryParams: ["email", "limit", "offset", "orderBy", "phoneNumber", "statusCd", "username"],
|
|
9866
|
+
edgeCache: true,
|
|
9867
|
+
responseSchema: UsersDataSchema,
|
|
9868
|
+
responseType: "array"
|
|
9869
|
+
},
|
|
9870
|
+
{
|
|
9871
|
+
method: "POST",
|
|
9872
|
+
path: "/users",
|
|
9873
|
+
chain: "users",
|
|
9874
|
+
action: "create",
|
|
9875
|
+
aliases: [],
|
|
9876
|
+
pathParams: [],
|
|
9877
|
+
queryParams: [],
|
|
9878
|
+
edgeCache: false,
|
|
9879
|
+
responseSchema: UsersDataSchema,
|
|
9880
|
+
responseType: "object"
|
|
9881
|
+
},
|
|
9882
|
+
{
|
|
9883
|
+
method: "POST",
|
|
9884
|
+
path: "/users/verify",
|
|
9885
|
+
chain: "users.verify",
|
|
9886
|
+
action: "create",
|
|
9887
|
+
aliases: [],
|
|
9888
|
+
pathParams: [],
|
|
9889
|
+
queryParams: [],
|
|
9890
|
+
edgeCache: false,
|
|
9891
|
+
responseSchema: UsersVerifyDataSchema,
|
|
9892
|
+
responseType: "object"
|
|
9893
|
+
},
|
|
9894
|
+
{
|
|
9895
|
+
method: "GET",
|
|
9896
|
+
path: "/users/{usersUid}",
|
|
9897
|
+
chain: "users",
|
|
9898
|
+
action: "get",
|
|
9899
|
+
aliases: [],
|
|
9900
|
+
pathParams: ["usersUid"],
|
|
9901
|
+
queryParams: [],
|
|
9902
|
+
edgeCache: true,
|
|
9903
|
+
responseSchema: UsersDataSchema,
|
|
9904
|
+
responseType: "object"
|
|
9905
|
+
},
|
|
9906
|
+
{
|
|
9907
|
+
method: "PUT",
|
|
9908
|
+
path: "/users/{usersUid}",
|
|
9909
|
+
chain: "users",
|
|
9910
|
+
action: "update",
|
|
9911
|
+
aliases: [],
|
|
9912
|
+
pathParams: ["usersUid"],
|
|
9913
|
+
queryParams: [],
|
|
9914
|
+
edgeCache: false,
|
|
9915
|
+
responseSchema: UsersDataSchema,
|
|
9916
|
+
responseType: "object"
|
|
9917
|
+
},
|
|
9918
|
+
{
|
|
9919
|
+
method: "DELETE",
|
|
9920
|
+
path: "/users/{usersUid}",
|
|
9921
|
+
chain: "users",
|
|
9922
|
+
action: "delete",
|
|
9923
|
+
aliases: [],
|
|
9924
|
+
pathParams: ["usersUid"],
|
|
9925
|
+
queryParams: [],
|
|
9926
|
+
edgeCache: false,
|
|
9927
|
+
responseSchema: UsersDataSchema,
|
|
9928
|
+
responseType: "object"
|
|
9929
|
+
},
|
|
9930
|
+
{
|
|
9931
|
+
method: "GET",
|
|
9932
|
+
path: "/users/{usersUid}/roles",
|
|
9933
|
+
chain: "users.roles",
|
|
9934
|
+
action: "list",
|
|
9935
|
+
aliases: [],
|
|
9936
|
+
pathParams: ["usersUid"],
|
|
9937
|
+
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
9938
|
+
edgeCache: true,
|
|
9939
|
+
responseSchema: UsersRolesDataSchema,
|
|
9940
|
+
responseType: "array"
|
|
9941
|
+
},
|
|
9942
|
+
{
|
|
9943
|
+
method: "POST",
|
|
9944
|
+
path: "/users/{usersUid}/roles",
|
|
9945
|
+
chain: "users.roles",
|
|
9946
|
+
action: "create",
|
|
9947
|
+
aliases: [],
|
|
9948
|
+
pathParams: ["usersUid"],
|
|
9949
|
+
queryParams: [],
|
|
9950
|
+
edgeCache: false,
|
|
9951
|
+
responseSchema: UsersRolesDataSchema,
|
|
9952
|
+
responseType: "object"
|
|
9953
|
+
},
|
|
9954
|
+
{
|
|
9955
|
+
method: "GET",
|
|
9956
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
9957
|
+
chain: "users.roles",
|
|
9958
|
+
action: "get",
|
|
9959
|
+
aliases: [],
|
|
9960
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
9961
|
+
queryParams: [],
|
|
9962
|
+
edgeCache: true,
|
|
9963
|
+
responseSchema: UsersRolesDataSchema,
|
|
9964
|
+
responseType: "object"
|
|
9965
|
+
},
|
|
9966
|
+
{
|
|
9967
|
+
method: "PUT",
|
|
9968
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
9969
|
+
chain: "users.roles",
|
|
9970
|
+
action: "update",
|
|
9971
|
+
aliases: [],
|
|
9972
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
9973
|
+
queryParams: [],
|
|
9974
|
+
edgeCache: false,
|
|
9975
|
+
responseSchema: UsersRolesDataSchema,
|
|
9976
|
+
responseType: "object"
|
|
9977
|
+
},
|
|
9978
|
+
{
|
|
9979
|
+
method: "DELETE",
|
|
9980
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
9981
|
+
chain: "users.roles",
|
|
9982
|
+
action: "delete",
|
|
9983
|
+
aliases: [],
|
|
9984
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
9985
|
+
queryParams: [],
|
|
9986
|
+
edgeCache: false,
|
|
9987
|
+
responseSchema: UsersRolesDataSchema,
|
|
9988
|
+
responseType: "object"
|
|
9989
|
+
}
|
|
9990
|
+
];
|
|
9991
|
+
|
|
9992
|
+
// src/services/agr-int/client.ts
|
|
9993
|
+
var AgrIntClient = class extends BaseServiceClient {
|
|
9994
|
+
constructor(http, baseUrl = "https://agr-int.augur-api.com") {
|
|
9995
|
+
super("agr-int", http, baseUrl);
|
|
9996
|
+
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9997
|
+
return this.executeRequest(config, params, pathParams);
|
|
9998
|
+
};
|
|
9999
|
+
const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
|
|
10000
|
+
const dataProxy = createDataProxy(proxy);
|
|
10001
|
+
this.roles = proxy.roles;
|
|
10002
|
+
this.users = proxy.users;
|
|
10003
|
+
this.rolesData = dataProxy.roles;
|
|
10004
|
+
this.usersData = dataProxy.users;
|
|
10005
|
+
}
|
|
10006
|
+
getServiceDescription() {
|
|
10007
|
+
return "agr_int";
|
|
10008
|
+
}
|
|
10009
|
+
};
|
|
10010
|
+
|
|
9726
10011
|
// src/services/agr-work/resources/health-check.ts
|
|
9727
10012
|
function createHealthCheckResource15(executeRequest) {
|
|
9728
10013
|
return {
|
|
@@ -9892,11 +10177,11 @@ var AgrWorkClient = class extends BaseServiceClient {
|
|
|
9892
10177
|
};
|
|
9893
10178
|
|
|
9894
10179
|
// src/services/avalara/generated/schemas.ts
|
|
9895
|
-
import * as
|
|
9896
|
-
var
|
|
10180
|
+
import * as v23 from "valibot";
|
|
10181
|
+
var PassthroughDataSchema16 = v23.record(v23.string(), v23.unknown());
|
|
9897
10182
|
|
|
9898
10183
|
// src/services/avalara/generated/endpoints.ts
|
|
9899
|
-
var
|
|
10184
|
+
var endpoints16 = [
|
|
9900
10185
|
{
|
|
9901
10186
|
method: "POST",
|
|
9902
10187
|
path: "/rates",
|
|
@@ -9906,7 +10191,7 @@ var endpoints15 = [
|
|
|
9906
10191
|
pathParams: [],
|
|
9907
10192
|
queryParams: [],
|
|
9908
10193
|
edgeCache: false,
|
|
9909
|
-
responseSchema:
|
|
10194
|
+
responseSchema: PassthroughDataSchema16,
|
|
9910
10195
|
responseType: "passthrough"
|
|
9911
10196
|
}
|
|
9912
10197
|
];
|
|
@@ -9979,7 +10264,7 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
9979
10264
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9980
10265
|
return this.executeRequest(config, params, pathParams);
|
|
9981
10266
|
};
|
|
9982
|
-
const proxy = createServiceProxy("avalara", boundExecuteRequest,
|
|
10267
|
+
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
|
|
9983
10268
|
const dataProxy = createDataProxy(proxy);
|
|
9984
10269
|
this.rates = proxy.rates;
|
|
9985
10270
|
this.ratesData = dataProxy.rates;
|
|
@@ -9989,11 +10274,11 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
9989
10274
|
};
|
|
9990
10275
|
|
|
9991
10276
|
// src/services/brand-folder/generated/schemas.ts
|
|
9992
|
-
import * as
|
|
9993
|
-
var
|
|
10277
|
+
import * as v24 from "valibot";
|
|
10278
|
+
var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
|
|
9994
10279
|
|
|
9995
10280
|
// src/services/brand-folder/generated/endpoints.ts
|
|
9996
|
-
var
|
|
10281
|
+
var endpoints17 = [
|
|
9997
10282
|
{
|
|
9998
10283
|
method: "POST",
|
|
9999
10284
|
path: "/categories/focus",
|
|
@@ -10003,7 +10288,7 @@ var endpoints16 = [
|
|
|
10003
10288
|
pathParams: [],
|
|
10004
10289
|
queryParams: [],
|
|
10005
10290
|
edgeCache: false,
|
|
10006
|
-
responseSchema:
|
|
10291
|
+
responseSchema: PassthroughDataSchema17,
|
|
10007
10292
|
responseType: "passthrough"
|
|
10008
10293
|
}
|
|
10009
10294
|
];
|
|
@@ -10079,7 +10364,7 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10079
10364
|
const proxy = createServiceProxy(
|
|
10080
10365
|
"brand-folder",
|
|
10081
10366
|
boundExecuteRequest,
|
|
10082
|
-
|
|
10367
|
+
endpoints17
|
|
10083
10368
|
);
|
|
10084
10369
|
const dataProxy = createDataProxy(proxy);
|
|
10085
10370
|
this.categories = proxy.categories;
|
|
@@ -10093,15 +10378,15 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10093
10378
|
};
|
|
10094
10379
|
|
|
10095
10380
|
// src/services/gregorovich/generated/schemas.ts
|
|
10096
|
-
import * as
|
|
10097
|
-
var ChatGptAskGetParamsSchema =
|
|
10381
|
+
import * as v25 from "valibot";
|
|
10382
|
+
var ChatGptAskGetParamsSchema = v25.looseObject({
|
|
10098
10383
|
...EdgeCacheParamsSchema.entries,
|
|
10099
|
-
question:
|
|
10384
|
+
question: v25.string()
|
|
10100
10385
|
});
|
|
10101
|
-
var
|
|
10386
|
+
var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
|
|
10102
10387
|
|
|
10103
10388
|
// src/services/gregorovich/generated/endpoints.ts
|
|
10104
|
-
var
|
|
10389
|
+
var endpoints18 = [
|
|
10105
10390
|
{
|
|
10106
10391
|
method: "GET",
|
|
10107
10392
|
path: "/chat-gpt/ask",
|
|
@@ -10111,7 +10396,7 @@ var endpoints17 = [
|
|
|
10111
10396
|
pathParams: [],
|
|
10112
10397
|
queryParams: ["question"],
|
|
10113
10398
|
edgeCache: true,
|
|
10114
|
-
responseSchema:
|
|
10399
|
+
responseSchema: PassthroughDataSchema18,
|
|
10115
10400
|
responseType: "passthrough"
|
|
10116
10401
|
},
|
|
10117
10402
|
{
|
|
@@ -10123,7 +10408,7 @@ var endpoints17 = [
|
|
|
10123
10408
|
pathParams: [],
|
|
10124
10409
|
queryParams: [],
|
|
10125
10410
|
edgeCache: true,
|
|
10126
|
-
responseSchema:
|
|
10411
|
+
responseSchema: PassthroughDataSchema18,
|
|
10127
10412
|
responseType: "passthrough"
|
|
10128
10413
|
},
|
|
10129
10414
|
{
|
|
@@ -10135,7 +10420,7 @@ var endpoints17 = [
|
|
|
10135
10420
|
pathParams: [],
|
|
10136
10421
|
queryParams: [],
|
|
10137
10422
|
edgeCache: false,
|
|
10138
|
-
responseSchema:
|
|
10423
|
+
responseSchema: PassthroughDataSchema18,
|
|
10139
10424
|
responseType: "passthrough"
|
|
10140
10425
|
}
|
|
10141
10426
|
];
|
|
@@ -10211,7 +10496,7 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10211
10496
|
const proxy = createServiceProxy(
|
|
10212
10497
|
"gregorovich",
|
|
10213
10498
|
boundExecuteRequest,
|
|
10214
|
-
|
|
10499
|
+
endpoints18
|
|
10215
10500
|
);
|
|
10216
10501
|
const dataProxy = createDataProxy(proxy);
|
|
10217
10502
|
this.chatGpt = proxy.chatGpt;
|
|
@@ -10226,139 +10511,139 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10226
10511
|
};
|
|
10227
10512
|
|
|
10228
10513
|
// 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:
|
|
10514
|
+
import * as v26 from "valibot";
|
|
10515
|
+
var FedexRatesListParamsSchema = v26.looseObject({
|
|
10516
|
+
...EdgeCacheParamsSchema.entries,
|
|
10517
|
+
fromAddress1: v26.string(),
|
|
10518
|
+
fromCity: v26.string(),
|
|
10519
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10520
|
+
fromPostalCode: v26.string(),
|
|
10521
|
+
fromStateProvinceCode: v26.string(),
|
|
10522
|
+
toAddress1: v26.string(),
|
|
10523
|
+
toCity: v26.string(),
|
|
10524
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10525
|
+
toPostalCode: v26.string(),
|
|
10526
|
+
toResidential: v26.optional(v26.boolean()),
|
|
10527
|
+
toStateProvinceCode: v26.string(),
|
|
10528
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10529
|
+
});
|
|
10530
|
+
var RtsBrandsListParamsSchema = v26.looseObject({
|
|
10531
|
+
...EdgeCacheParamsSchema.entries,
|
|
10532
|
+
search: v26.optional(v26.string())
|
|
10533
|
+
});
|
|
10534
|
+
var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
|
|
10535
|
+
...EdgeCacheParamsSchema.entries,
|
|
10536
|
+
search: v26.optional(v26.string())
|
|
10537
|
+
});
|
|
10538
|
+
var RtsSearchMachinesListParamsSchema = v26.looseObject({
|
|
10539
|
+
...EdgeCacheParamsSchema.entries,
|
|
10540
|
+
q: v26.string()
|
|
10541
|
+
});
|
|
10542
|
+
var RtsTracksListParamsSchema = v26.looseObject({
|
|
10543
|
+
...EdgeCacheParamsSchema.entries,
|
|
10544
|
+
search: v26.optional(v26.string()),
|
|
10545
|
+
trackClass: v26.optional(v26.string())
|
|
10546
|
+
});
|
|
10547
|
+
var ShipviaRatesListParamsSchema = v26.looseObject({
|
|
10548
|
+
...EdgeCacheParamsSchema.entries,
|
|
10549
|
+
carriers: v26.optional(v26.string()),
|
|
10550
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10551
|
+
fromCity: v26.optional(v26.string()),
|
|
10552
|
+
fromCountry: v26.optional(v26.string()),
|
|
10553
|
+
fromPostalCode: v26.string(),
|
|
10554
|
+
fromState: v26.optional(v26.string()),
|
|
10555
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10556
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10557
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10558
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10559
|
+
residential: v26.optional(v26.boolean()),
|
|
10560
|
+
serviceType: v26.optional(v26.string()),
|
|
10561
|
+
toCity: v26.optional(v26.string()),
|
|
10562
|
+
toCountry: v26.optional(v26.string()),
|
|
10563
|
+
toPostalCode: v26.string(),
|
|
10564
|
+
toState: v26.optional(v26.string()),
|
|
10565
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10566
|
+
weightUnit: v26.string()
|
|
10567
|
+
});
|
|
10568
|
+
var ShipviaRatesLtlListParamsSchema = v26.looseObject({
|
|
10569
|
+
...EdgeCacheParamsSchema.entries,
|
|
10570
|
+
carriers: v26.optional(v26.string()),
|
|
10571
|
+
commodityClass: v26.string(),
|
|
10572
|
+
commodityDescription: v26.string(),
|
|
10573
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10574
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10575
|
+
fromCity: v26.optional(v26.string()),
|
|
10576
|
+
fromCountry: v26.optional(v26.string()),
|
|
10577
|
+
fromPostalCode: v26.string(),
|
|
10578
|
+
fromState: v26.optional(v26.string()),
|
|
10579
|
+
isHazMat: v26.optional(v26.boolean()),
|
|
10580
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10581
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10582
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10583
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10584
|
+
packagingType: v26.string(),
|
|
10585
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10586
|
+
quantity: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10587
|
+
toCity: v26.optional(v26.string()),
|
|
10588
|
+
toCountry: v26.optional(v26.string()),
|
|
10589
|
+
toPostalCode: v26.string(),
|
|
10590
|
+
toState: v26.optional(v26.string()),
|
|
10591
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10592
|
+
weightUnit: v26.string()
|
|
10593
|
+
});
|
|
10594
|
+
var SpeedshipFreightListParamsSchema = v26.looseObject({
|
|
10595
|
+
...EdgeCacheParamsSchema.entries,
|
|
10596
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10597
|
+
dimensionUnit: v26.string(),
|
|
10598
|
+
fromAddressLine: v26.string(),
|
|
10599
|
+
fromCity: v26.string(),
|
|
10600
|
+
fromCompanyName: v26.string(),
|
|
10601
|
+
fromCountryCode: v26.string(),
|
|
10602
|
+
fromFirstName: v26.string(),
|
|
10603
|
+
fromLastName: v26.string(),
|
|
10604
|
+
fromPhone: v26.string(),
|
|
10605
|
+
fromPostalCode: v26.string(),
|
|
10606
|
+
fromState: v26.string(),
|
|
10607
|
+
handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10608
|
+
handlingChargeUnit: v26.optional(v26.string()),
|
|
10609
|
+
international: v26.optional(v26.boolean()),
|
|
10610
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10611
|
+
packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10612
|
+
packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10613
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10614
|
+
productType: v26.string(),
|
|
10615
|
+
quantity: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10616
|
+
responseFormat: v26.string(),
|
|
10617
|
+
toAddressLine: v26.string(),
|
|
10618
|
+
toCity: v26.string(),
|
|
10619
|
+
toCompanyName: v26.string(),
|
|
10620
|
+
toCountryCode: v26.string(),
|
|
10621
|
+
toFirstName: v26.string(),
|
|
10622
|
+
toLastName: v26.string(),
|
|
10623
|
+
toPhone: v26.string(),
|
|
10624
|
+
toPostalCode: v26.string(),
|
|
10625
|
+
toRegion: v26.string(),
|
|
10626
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10627
|
+
weightUnit: v26.string()
|
|
10628
|
+
});
|
|
10629
|
+
var UPSRatesListParamsSchema = v26.looseObject({
|
|
10630
|
+
...EdgeCacheParamsSchema.entries,
|
|
10631
|
+
fromAddress1: v26.string(),
|
|
10632
|
+
fromCity: v26.string(),
|
|
10633
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10634
|
+
fromPostalCode: v26.string(),
|
|
10635
|
+
fromStateProvinceCode: v26.string(),
|
|
10636
|
+
toAddress1: v26.string(),
|
|
10637
|
+
toCity: v26.string(),
|
|
10638
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10639
|
+
toPostalCode: v26.string(),
|
|
10640
|
+
toStateProvinceCode: v26.string(),
|
|
10641
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10357
10642
|
});
|
|
10358
|
-
var
|
|
10643
|
+
var PassthroughDataSchema19 = v26.record(v26.string(), v26.unknown());
|
|
10359
10644
|
|
|
10360
10645
|
// src/services/logistics/generated/endpoints.ts
|
|
10361
|
-
var
|
|
10646
|
+
var endpoints19 = [
|
|
10362
10647
|
{
|
|
10363
10648
|
method: "GET",
|
|
10364
10649
|
path: "/fedex/rates",
|
|
@@ -10381,7 +10666,7 @@ var endpoints18 = [
|
|
|
10381
10666
|
"weight"
|
|
10382
10667
|
],
|
|
10383
10668
|
edgeCache: true,
|
|
10384
|
-
responseSchema:
|
|
10669
|
+
responseSchema: PassthroughDataSchema19,
|
|
10385
10670
|
responseType: "passthrough"
|
|
10386
10671
|
},
|
|
10387
10672
|
{
|
|
@@ -10393,7 +10678,7 @@ var endpoints18 = [
|
|
|
10393
10678
|
pathParams: [],
|
|
10394
10679
|
queryParams: ["search"],
|
|
10395
10680
|
edgeCache: true,
|
|
10396
|
-
responseSchema:
|
|
10681
|
+
responseSchema: PassthroughDataSchema19,
|
|
10397
10682
|
responseType: "passthrough"
|
|
10398
10683
|
},
|
|
10399
10684
|
{
|
|
@@ -10405,7 +10690,7 @@ var endpoints18 = [
|
|
|
10405
10690
|
pathParams: ["brandId"],
|
|
10406
10691
|
queryParams: ["search"],
|
|
10407
10692
|
edgeCache: true,
|
|
10408
|
-
responseSchema:
|
|
10693
|
+
responseSchema: PassthroughDataSchema19,
|
|
10409
10694
|
responseType: "passthrough"
|
|
10410
10695
|
},
|
|
10411
10696
|
{
|
|
@@ -10417,7 +10702,7 @@ var endpoints18 = [
|
|
|
10417
10702
|
pathParams: ["machineId"],
|
|
10418
10703
|
queryParams: [],
|
|
10419
10704
|
edgeCache: true,
|
|
10420
|
-
responseSchema:
|
|
10705
|
+
responseSchema: PassthroughDataSchema19,
|
|
10421
10706
|
responseType: "passthrough"
|
|
10422
10707
|
},
|
|
10423
10708
|
{
|
|
@@ -10429,7 +10714,7 @@ var endpoints18 = [
|
|
|
10429
10714
|
pathParams: [],
|
|
10430
10715
|
queryParams: ["q"],
|
|
10431
10716
|
edgeCache: true,
|
|
10432
|
-
responseSchema:
|
|
10717
|
+
responseSchema: PassthroughDataSchema19,
|
|
10433
10718
|
responseType: "passthrough"
|
|
10434
10719
|
},
|
|
10435
10720
|
{
|
|
@@ -10441,7 +10726,7 @@ var endpoints18 = [
|
|
|
10441
10726
|
pathParams: ["trackId"],
|
|
10442
10727
|
queryParams: [],
|
|
10443
10728
|
edgeCache: true,
|
|
10444
|
-
responseSchema:
|
|
10729
|
+
responseSchema: PassthroughDataSchema19,
|
|
10445
10730
|
responseType: "passthrough"
|
|
10446
10731
|
},
|
|
10447
10732
|
{
|
|
@@ -10453,7 +10738,7 @@ var endpoints18 = [
|
|
|
10453
10738
|
pathParams: [],
|
|
10454
10739
|
queryParams: ["search", "trackClass"],
|
|
10455
10740
|
edgeCache: true,
|
|
10456
|
-
responseSchema:
|
|
10741
|
+
responseSchema: PassthroughDataSchema19,
|
|
10457
10742
|
responseType: "passthrough"
|
|
10458
10743
|
},
|
|
10459
10744
|
{
|
|
@@ -10484,7 +10769,7 @@ var endpoints18 = [
|
|
|
10484
10769
|
"weightUnit"
|
|
10485
10770
|
],
|
|
10486
10771
|
edgeCache: true,
|
|
10487
|
-
responseSchema:
|
|
10772
|
+
responseSchema: PassthroughDataSchema19,
|
|
10488
10773
|
responseType: "passthrough"
|
|
10489
10774
|
},
|
|
10490
10775
|
{
|
|
@@ -10520,7 +10805,7 @@ var endpoints18 = [
|
|
|
10520
10805
|
"weightUnit"
|
|
10521
10806
|
],
|
|
10522
10807
|
edgeCache: true,
|
|
10523
|
-
responseSchema:
|
|
10808
|
+
responseSchema: PassthroughDataSchema19,
|
|
10524
10809
|
responseType: "passthrough"
|
|
10525
10810
|
},
|
|
10526
10811
|
{
|
|
@@ -10565,7 +10850,7 @@ var endpoints18 = [
|
|
|
10565
10850
|
"weightUnit"
|
|
10566
10851
|
],
|
|
10567
10852
|
edgeCache: true,
|
|
10568
|
-
responseSchema:
|
|
10853
|
+
responseSchema: PassthroughDataSchema19,
|
|
10569
10854
|
responseType: "passthrough"
|
|
10570
10855
|
},
|
|
10571
10856
|
{
|
|
@@ -10589,7 +10874,7 @@ var endpoints18 = [
|
|
|
10589
10874
|
"weight"
|
|
10590
10875
|
],
|
|
10591
10876
|
edgeCache: true,
|
|
10592
|
-
responseSchema:
|
|
10877
|
+
responseSchema: PassthroughDataSchema19,
|
|
10593
10878
|
responseType: "passthrough"
|
|
10594
10879
|
}
|
|
10595
10880
|
];
|
|
@@ -10732,7 +11017,7 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10732
11017
|
const proxy = createServiceProxy(
|
|
10733
11018
|
"logistics",
|
|
10734
11019
|
boundExecuteRequest,
|
|
10735
|
-
|
|
11020
|
+
endpoints19
|
|
10736
11021
|
);
|
|
10737
11022
|
const dataProxy = createDataProxy(proxy);
|
|
10738
11023
|
this.fedex = proxy.fedex;
|
|
@@ -10756,51 +11041,51 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10756
11041
|
};
|
|
10757
11042
|
|
|
10758
11043
|
// src/services/p21-apis/generated/schemas.ts
|
|
10759
|
-
import * as
|
|
10760
|
-
var TransCategoryGetParamsSchema =
|
|
11044
|
+
import * as v27 from "valibot";
|
|
11045
|
+
var TransCategoryGetParamsSchema = v27.looseObject({
|
|
10761
11046
|
...EdgeCacheParamsSchema.entries,
|
|
10762
|
-
category_id:
|
|
11047
|
+
category_id: v27.optional(v27.string())
|
|
10763
11048
|
});
|
|
10764
|
-
var TransCategoryUpdateParamsSchema =
|
|
10765
|
-
category_id:
|
|
11049
|
+
var TransCategoryUpdateParamsSchema = v27.looseObject({
|
|
11050
|
+
category_id: v27.optional(v27.string())
|
|
10766
11051
|
});
|
|
10767
|
-
var TransCategoryDeleteParamsSchema =
|
|
10768
|
-
category_id:
|
|
11052
|
+
var TransCategoryDeleteParamsSchema = v27.looseObject({
|
|
11053
|
+
category_id: v27.optional(v27.string())
|
|
10769
11054
|
});
|
|
10770
|
-
var TransCompanyGetParamsSchema =
|
|
11055
|
+
var TransCompanyGetParamsSchema = v27.looseObject({
|
|
10771
11056
|
...EdgeCacheParamsSchema.entries,
|
|
10772
|
-
company_id:
|
|
11057
|
+
company_id: v27.optional(v27.string())
|
|
10773
11058
|
});
|
|
10774
|
-
var TransCompanyUpdateParamsSchema =
|
|
10775
|
-
company_id:
|
|
11059
|
+
var TransCompanyUpdateParamsSchema = v27.looseObject({
|
|
11060
|
+
company_id: v27.optional(v27.string())
|
|
10776
11061
|
});
|
|
10777
|
-
var TransCompanyDeleteParamsSchema =
|
|
10778
|
-
company_id:
|
|
11062
|
+
var TransCompanyDeleteParamsSchema = v27.looseObject({
|
|
11063
|
+
company_id: v27.optional(v27.string())
|
|
10779
11064
|
});
|
|
10780
|
-
var TransUserGetParamsSchema =
|
|
11065
|
+
var TransUserGetParamsSchema = v27.looseObject({
|
|
10781
11066
|
...EdgeCacheParamsSchema.entries,
|
|
10782
|
-
user_id:
|
|
11067
|
+
user_id: v27.optional(v27.string())
|
|
10783
11068
|
});
|
|
10784
|
-
var TransUserUpdateParamsSchema =
|
|
10785
|
-
user_id:
|
|
11069
|
+
var TransUserUpdateParamsSchema = v27.looseObject({
|
|
11070
|
+
user_id: v27.optional(v27.string())
|
|
10786
11071
|
});
|
|
10787
|
-
var TransUserDeleteParamsSchema =
|
|
10788
|
-
user_id:
|
|
11072
|
+
var TransUserDeleteParamsSchema = v27.looseObject({
|
|
11073
|
+
user_id: v27.optional(v27.string())
|
|
10789
11074
|
});
|
|
10790
|
-
var TransWebDisplayTypeGetParamsSchema =
|
|
11075
|
+
var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
|
|
10791
11076
|
...EdgeCacheParamsSchema.entries,
|
|
10792
|
-
web_display_type_id:
|
|
11077
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10793
11078
|
});
|
|
10794
|
-
var TransWebDisplayTypeUpdateParamsSchema =
|
|
10795
|
-
web_display_type_id:
|
|
11079
|
+
var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
|
|
11080
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10796
11081
|
});
|
|
10797
|
-
var TransWebDisplayTypeDeleteParamsSchema =
|
|
10798
|
-
web_display_type_id:
|
|
11082
|
+
var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
|
|
11083
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10799
11084
|
});
|
|
10800
|
-
var
|
|
11085
|
+
var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
|
|
10801
11086
|
|
|
10802
11087
|
// src/services/p21-apis/generated/endpoints.ts
|
|
10803
|
-
var
|
|
11088
|
+
var endpoints20 = [
|
|
10804
11089
|
{
|
|
10805
11090
|
method: "GET",
|
|
10806
11091
|
path: "/entity-contacts/refresh",
|
|
@@ -10810,7 +11095,7 @@ var endpoints19 = [
|
|
|
10810
11095
|
pathParams: [],
|
|
10811
11096
|
queryParams: [],
|
|
10812
11097
|
edgeCache: true,
|
|
10813
|
-
responseSchema:
|
|
11098
|
+
responseSchema: PassthroughDataSchema20,
|
|
10814
11099
|
responseType: "passthrough"
|
|
10815
11100
|
},
|
|
10816
11101
|
{
|
|
@@ -10822,7 +11107,7 @@ var endpoints19 = [
|
|
|
10822
11107
|
pathParams: [],
|
|
10823
11108
|
queryParams: [],
|
|
10824
11109
|
edgeCache: true,
|
|
10825
|
-
responseSchema:
|
|
11110
|
+
responseSchema: PassthroughDataSchema20,
|
|
10826
11111
|
responseType: "passthrough"
|
|
10827
11112
|
},
|
|
10828
11113
|
{
|
|
@@ -10834,7 +11119,7 @@ var endpoints19 = [
|
|
|
10834
11119
|
pathParams: [],
|
|
10835
11120
|
queryParams: [],
|
|
10836
11121
|
edgeCache: false,
|
|
10837
|
-
responseSchema:
|
|
11122
|
+
responseSchema: PassthroughDataSchema20,
|
|
10838
11123
|
responseType: "passthrough"
|
|
10839
11124
|
},
|
|
10840
11125
|
{
|
|
@@ -10846,7 +11131,7 @@ var endpoints19 = [
|
|
|
10846
11131
|
pathParams: ["categoryUid"],
|
|
10847
11132
|
queryParams: ["category_id"],
|
|
10848
11133
|
edgeCache: true,
|
|
10849
|
-
responseSchema:
|
|
11134
|
+
responseSchema: PassthroughDataSchema20,
|
|
10850
11135
|
responseType: "passthrough"
|
|
10851
11136
|
},
|
|
10852
11137
|
{
|
|
@@ -10858,7 +11143,7 @@ var endpoints19 = [
|
|
|
10858
11143
|
pathParams: ["categoryUid"],
|
|
10859
11144
|
queryParams: ["category_id"],
|
|
10860
11145
|
edgeCache: false,
|
|
10861
|
-
responseSchema:
|
|
11146
|
+
responseSchema: PassthroughDataSchema20,
|
|
10862
11147
|
responseType: "passthrough"
|
|
10863
11148
|
},
|
|
10864
11149
|
{
|
|
@@ -10870,7 +11155,7 @@ var endpoints19 = [
|
|
|
10870
11155
|
pathParams: ["categoryUid"],
|
|
10871
11156
|
queryParams: ["category_id"],
|
|
10872
11157
|
edgeCache: false,
|
|
10873
|
-
responseSchema:
|
|
11158
|
+
responseSchema: PassthroughDataSchema20,
|
|
10874
11159
|
responseType: "passthrough"
|
|
10875
11160
|
},
|
|
10876
11161
|
{
|
|
@@ -10882,7 +11167,7 @@ var endpoints19 = [
|
|
|
10882
11167
|
pathParams: [],
|
|
10883
11168
|
queryParams: [],
|
|
10884
11169
|
edgeCache: false,
|
|
10885
|
-
responseSchema:
|
|
11170
|
+
responseSchema: PassthroughDataSchema20,
|
|
10886
11171
|
responseType: "passthrough"
|
|
10887
11172
|
},
|
|
10888
11173
|
{
|
|
@@ -10894,7 +11179,7 @@ var endpoints19 = [
|
|
|
10894
11179
|
pathParams: ["companyUid"],
|
|
10895
11180
|
queryParams: ["company_id"],
|
|
10896
11181
|
edgeCache: true,
|
|
10897
|
-
responseSchema:
|
|
11182
|
+
responseSchema: PassthroughDataSchema20,
|
|
10898
11183
|
responseType: "passthrough"
|
|
10899
11184
|
},
|
|
10900
11185
|
{
|
|
@@ -10906,7 +11191,7 @@ var endpoints19 = [
|
|
|
10906
11191
|
pathParams: ["companyUid"],
|
|
10907
11192
|
queryParams: ["company_id"],
|
|
10908
11193
|
edgeCache: false,
|
|
10909
|
-
responseSchema:
|
|
11194
|
+
responseSchema: PassthroughDataSchema20,
|
|
10910
11195
|
responseType: "passthrough"
|
|
10911
11196
|
},
|
|
10912
11197
|
{
|
|
@@ -10918,7 +11203,7 @@ var endpoints19 = [
|
|
|
10918
11203
|
pathParams: ["companyUid"],
|
|
10919
11204
|
queryParams: ["company_id"],
|
|
10920
11205
|
edgeCache: false,
|
|
10921
|
-
responseSchema:
|
|
11206
|
+
responseSchema: PassthroughDataSchema20,
|
|
10922
11207
|
responseType: "passthrough"
|
|
10923
11208
|
},
|
|
10924
11209
|
{
|
|
@@ -10930,7 +11215,7 @@ var endpoints19 = [
|
|
|
10930
11215
|
pathParams: ["poNo"],
|
|
10931
11216
|
queryParams: [],
|
|
10932
11217
|
edgeCache: true,
|
|
10933
|
-
responseSchema:
|
|
11218
|
+
responseSchema: PassthroughDataSchema20,
|
|
10934
11219
|
responseType: "passthrough"
|
|
10935
11220
|
},
|
|
10936
11221
|
{
|
|
@@ -10942,7 +11227,7 @@ var endpoints19 = [
|
|
|
10942
11227
|
pathParams: ["poNo"],
|
|
10943
11228
|
queryParams: [],
|
|
10944
11229
|
edgeCache: false,
|
|
10945
|
-
responseSchema:
|
|
11230
|
+
responseSchema: PassthroughDataSchema20,
|
|
10946
11231
|
responseType: "passthrough"
|
|
10947
11232
|
},
|
|
10948
11233
|
{
|
|
@@ -10954,7 +11239,7 @@ var endpoints19 = [
|
|
|
10954
11239
|
pathParams: [],
|
|
10955
11240
|
queryParams: [],
|
|
10956
11241
|
edgeCache: false,
|
|
10957
|
-
responseSchema:
|
|
11242
|
+
responseSchema: PassthroughDataSchema20,
|
|
10958
11243
|
responseType: "passthrough"
|
|
10959
11244
|
},
|
|
10960
11245
|
{
|
|
@@ -10966,7 +11251,7 @@ var endpoints19 = [
|
|
|
10966
11251
|
pathParams: ["usersUid"],
|
|
10967
11252
|
queryParams: ["user_id"],
|
|
10968
11253
|
edgeCache: true,
|
|
10969
|
-
responseSchema:
|
|
11254
|
+
responseSchema: PassthroughDataSchema20,
|
|
10970
11255
|
responseType: "passthrough"
|
|
10971
11256
|
},
|
|
10972
11257
|
{
|
|
@@ -10978,7 +11263,7 @@ var endpoints19 = [
|
|
|
10978
11263
|
pathParams: ["usersUid"],
|
|
10979
11264
|
queryParams: ["user_id"],
|
|
10980
11265
|
edgeCache: false,
|
|
10981
|
-
responseSchema:
|
|
11266
|
+
responseSchema: PassthroughDataSchema20,
|
|
10982
11267
|
responseType: "passthrough"
|
|
10983
11268
|
},
|
|
10984
11269
|
{
|
|
@@ -10990,7 +11275,7 @@ var endpoints19 = [
|
|
|
10990
11275
|
pathParams: ["usersUid"],
|
|
10991
11276
|
queryParams: ["user_id"],
|
|
10992
11277
|
edgeCache: false,
|
|
10993
|
-
responseSchema:
|
|
11278
|
+
responseSchema: PassthroughDataSchema20,
|
|
10994
11279
|
responseType: "passthrough"
|
|
10995
11280
|
},
|
|
10996
11281
|
{
|
|
@@ -11002,7 +11287,7 @@ var endpoints19 = [
|
|
|
11002
11287
|
pathParams: [],
|
|
11003
11288
|
queryParams: [],
|
|
11004
11289
|
edgeCache: false,
|
|
11005
|
-
responseSchema:
|
|
11290
|
+
responseSchema: PassthroughDataSchema20,
|
|
11006
11291
|
responseType: "passthrough"
|
|
11007
11292
|
},
|
|
11008
11293
|
{
|
|
@@ -11014,7 +11299,7 @@ var endpoints19 = [
|
|
|
11014
11299
|
pathParams: [],
|
|
11015
11300
|
queryParams: [],
|
|
11016
11301
|
edgeCache: true,
|
|
11017
|
-
responseSchema:
|
|
11302
|
+
responseSchema: PassthroughDataSchema20,
|
|
11018
11303
|
responseType: "passthrough"
|
|
11019
11304
|
},
|
|
11020
11305
|
{
|
|
@@ -11026,7 +11311,7 @@ var endpoints19 = [
|
|
|
11026
11311
|
pathParams: [],
|
|
11027
11312
|
queryParams: [],
|
|
11028
11313
|
edgeCache: true,
|
|
11029
|
-
responseSchema:
|
|
11314
|
+
responseSchema: PassthroughDataSchema20,
|
|
11030
11315
|
responseType: "passthrough"
|
|
11031
11316
|
},
|
|
11032
11317
|
{
|
|
@@ -11038,7 +11323,7 @@ var endpoints19 = [
|
|
|
11038
11323
|
pathParams: ["webDisplayTypeUid"],
|
|
11039
11324
|
queryParams: ["web_display_type_id"],
|
|
11040
11325
|
edgeCache: true,
|
|
11041
|
-
responseSchema:
|
|
11326
|
+
responseSchema: PassthroughDataSchema20,
|
|
11042
11327
|
responseType: "passthrough"
|
|
11043
11328
|
},
|
|
11044
11329
|
{
|
|
@@ -11050,7 +11335,7 @@ var endpoints19 = [
|
|
|
11050
11335
|
pathParams: ["webDisplayTypeUid"],
|
|
11051
11336
|
queryParams: ["web_display_type_id"],
|
|
11052
11337
|
edgeCache: false,
|
|
11053
|
-
responseSchema:
|
|
11338
|
+
responseSchema: PassthroughDataSchema20,
|
|
11054
11339
|
responseType: "passthrough"
|
|
11055
11340
|
},
|
|
11056
11341
|
{
|
|
@@ -11062,7 +11347,7 @@ var endpoints19 = [
|
|
|
11062
11347
|
pathParams: ["webDisplayTypeUid"],
|
|
11063
11348
|
queryParams: ["web_display_type_id"],
|
|
11064
11349
|
edgeCache: false,
|
|
11065
|
-
responseSchema:
|
|
11350
|
+
responseSchema: PassthroughDataSchema20,
|
|
11066
11351
|
responseType: "passthrough"
|
|
11067
11352
|
}
|
|
11068
11353
|
];
|
|
@@ -11121,7 +11406,7 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11121
11406
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11122
11407
|
return this.executeRequest(config, params, pathParams);
|
|
11123
11408
|
};
|
|
11124
|
-
const proxy = createServiceProxy("p21-apis", boundExecuteRequest,
|
|
11409
|
+
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
|
|
11125
11410
|
const dataProxy = createDataProxy(proxy);
|
|
11126
11411
|
this.entityContacts = proxy.entityContacts;
|
|
11127
11412
|
this.entityCustomers = proxy.entityCustomers;
|
|
@@ -11146,150 +11431,150 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11146
11431
|
};
|
|
11147
11432
|
|
|
11148
11433
|
// 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
|
|
11434
|
+
import * as v28 from "valibot";
|
|
11435
|
+
var AddressListParamsSchema = v28.looseObject({
|
|
11436
|
+
...EdgeCacheParamsSchema.entries,
|
|
11437
|
+
carrierFlag: v28.optional(v28.string()),
|
|
11438
|
+
defaultCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11439
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11440
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11441
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11442
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11443
|
+
});
|
|
11444
|
+
var AddressCorpAddressListParamsSchema = v28.looseObject({
|
|
11445
|
+
...EdgeCacheParamsSchema.entries,
|
|
11446
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11447
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11448
|
+
q: v28.optional(v28.string())
|
|
11449
|
+
});
|
|
11450
|
+
var AddressEnableGetParamsSchema = v28.looseObject({
|
|
11451
|
+
...EdgeCacheParamsSchema.entries,
|
|
11452
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11453
|
+
});
|
|
11454
|
+
var CashDrawerListParamsSchema = v28.looseObject({
|
|
11455
|
+
...EdgeCacheParamsSchema.entries,
|
|
11456
|
+
companyId: v28.optional(v28.string()),
|
|
11457
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11458
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11459
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11460
|
+
orderBy: v28.optional(v28.string()),
|
|
11461
|
+
q: v28.optional(v28.string()),
|
|
11462
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11463
|
+
});
|
|
11464
|
+
var CodeP21ListParamsSchema = v28.looseObject({
|
|
11465
|
+
...EdgeCacheParamsSchema.entries,
|
|
11466
|
+
codeNoList: v28.optional(v28.string()),
|
|
11467
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11468
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11469
|
+
q: v28.string()
|
|
11470
|
+
});
|
|
11471
|
+
var CompanyListParamsSchema = v28.looseObject({
|
|
11472
|
+
...EdgeCacheParamsSchema.entries,
|
|
11473
|
+
companyId: v28.optional(v28.string()),
|
|
11474
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11475
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11476
|
+
orderBy: v28.optional(v28.string()),
|
|
11477
|
+
q: v28.optional(v28.string())
|
|
11478
|
+
});
|
|
11479
|
+
var CompanyGetParamsSchema = v28.looseObject({
|
|
11480
|
+
...EdgeCacheParamsSchema.entries,
|
|
11481
|
+
companyId: v28.optional(v28.string())
|
|
11482
|
+
});
|
|
11483
|
+
var LocationListParamsSchema = v28.looseObject({
|
|
11484
|
+
...EdgeCacheParamsSchema.entries,
|
|
11485
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11486
|
+
includeAddress: v28.optional(v28.string()),
|
|
11487
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11488
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11489
|
+
orderBy: v28.optional(v28.string()),
|
|
11490
|
+
q: v28.optional(v28.string())
|
|
11491
|
+
});
|
|
11492
|
+
var LocationGetParamsSchema = v28.looseObject({
|
|
11493
|
+
...EdgeCacheParamsSchema.entries,
|
|
11494
|
+
includeAddress: v28.optional(v28.string())
|
|
11495
|
+
});
|
|
11496
|
+
var PaymentTypesListParamsSchema = v28.looseObject({
|
|
11497
|
+
...EdgeCacheParamsSchema.entries,
|
|
11498
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11499
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11500
|
+
});
|
|
11501
|
+
var CashDrawerDataSchema = v28.looseObject({
|
|
11502
|
+
cashDrawerId: v28.optional(v28.string()),
|
|
11503
|
+
companyId: v28.optional(v28.string()),
|
|
11504
|
+
cashDrawerDescription: v28.optional(v28.string()),
|
|
11505
|
+
currentSequenceNo: v28.optional(v28.number()),
|
|
11506
|
+
openingBalance: v28.optional(v28.nullable(v28.number())),
|
|
11507
|
+
withdrawals: v28.optional(v28.nullable(v28.number())),
|
|
11508
|
+
deposits: v28.optional(v28.nullable(v28.number())),
|
|
11509
|
+
currentBalance: v28.optional(v28.number()),
|
|
11510
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11511
|
+
bankNo: v28.optional(v28.nullable(v28.number())),
|
|
11512
|
+
cashOnHandAccountNumber: v28.optional(v28.string()),
|
|
11513
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11514
|
+
dateCreated: v28.optional(v28.string()),
|
|
11515
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11516
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11517
|
+
cashCardLoad: v28.optional(v28.nullable(v28.number())),
|
|
11518
|
+
cashDrawerUid: v28.optional(v28.number()),
|
|
11519
|
+
locIdForBranchConflict: v28.optional(v28.nullable(v28.number())),
|
|
11520
|
+
defaultCloseBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11521
|
+
updateCd: v28.optional(v28.number()),
|
|
11522
|
+
statusCd: v28.optional(v28.number()),
|
|
11523
|
+
processCd: v28.optional(v28.number())
|
|
11524
|
+
});
|
|
11525
|
+
var CodeP21DataSchema = v28.looseObject({
|
|
11526
|
+
codeUid: v28.optional(v28.number()),
|
|
11527
|
+
codeNo: v28.optional(v28.number()),
|
|
11528
|
+
languageId: v28.optional(v28.string()),
|
|
11529
|
+
codeDescription: v28.optional(v28.string()),
|
|
11530
|
+
rowStatusFlag: v28.optional(v28.string()),
|
|
11531
|
+
dateCreated: v28.optional(v28.string()),
|
|
11532
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11533
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11534
|
+
codeSubDescription: v28.optional(v28.nullable(v28.string())),
|
|
11535
|
+
updateCd: v28.optional(v28.number())
|
|
11536
|
+
});
|
|
11537
|
+
var CompanyDataSchema = v28.looseObject({
|
|
11538
|
+
companyUid: v28.optional(v28.number()),
|
|
11539
|
+
companyId: v28.optional(v28.string()),
|
|
11540
|
+
companyName: v28.optional(v28.nullable(v28.string())),
|
|
11541
|
+
dateCreated: v28.optional(v28.string()),
|
|
11542
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11543
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11544
|
+
updateCd: v28.optional(v28.number()),
|
|
11545
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11546
|
+
addressId: v28.optional(v28.nullable(v28.number())),
|
|
11547
|
+
defaultSalesLocationId: v28.optional(v28.nullable(v28.number())),
|
|
11548
|
+
freightCodeUid: v28.optional(v28.nullable(v28.number())),
|
|
11549
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11550
|
+
defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
|
|
11551
|
+
defaultMultiplier: v28.optional(v28.nullable(v28.number()))
|
|
11552
|
+
});
|
|
11553
|
+
var LocationDataSchema = v28.looseObject({
|
|
11554
|
+
locationId: v28.optional(v28.number()),
|
|
11555
|
+
companyId: v28.optional(v28.string()),
|
|
11556
|
+
defaultBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11557
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11558
|
+
dateCreated: v28.optional(v28.string()),
|
|
11559
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11560
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11561
|
+
locationName: v28.optional(v28.nullable(v28.string())),
|
|
11562
|
+
lotBinIntegration: v28.optional(v28.nullable(v28.string())),
|
|
11563
|
+
fedexLocAcctNo: v28.optional(v28.nullable(v28.string())),
|
|
11564
|
+
fedexMeterNo: v28.optional(v28.nullable(v28.string())),
|
|
11565
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11566
|
+
upsPickupTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11567
|
+
upsCustomerTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11568
|
+
upsOltAccessKey: v28.optional(v28.nullable(v28.string())),
|
|
11569
|
+
upsOltPassword: v28.optional(v28.nullable(v28.string())),
|
|
11570
|
+
upsOltUserId: v28.optional(v28.nullable(v28.string())),
|
|
11571
|
+
distributionCenter: v28.optional(v28.string()),
|
|
11572
|
+
updateCd: v28.optional(v28.number())
|
|
11573
|
+
});
|
|
11574
|
+
var PassthroughDataSchema21 = v28.record(v28.string(), v28.unknown());
|
|
11290
11575
|
|
|
11291
11576
|
// src/services/p21-core/generated/endpoints.ts
|
|
11292
|
-
var
|
|
11577
|
+
var endpoints21 = [
|
|
11293
11578
|
{
|
|
11294
11579
|
method: "GET",
|
|
11295
11580
|
path: "/address",
|
|
@@ -11299,7 +11584,7 @@ var endpoints20 = [
|
|
|
11299
11584
|
pathParams: [],
|
|
11300
11585
|
queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
|
|
11301
11586
|
edgeCache: true,
|
|
11302
|
-
responseSchema:
|
|
11587
|
+
responseSchema: PassthroughDataSchema21,
|
|
11303
11588
|
responseType: "passthrough"
|
|
11304
11589
|
},
|
|
11305
11590
|
{
|
|
@@ -11311,7 +11596,7 @@ var endpoints20 = [
|
|
|
11311
11596
|
pathParams: [],
|
|
11312
11597
|
queryParams: [],
|
|
11313
11598
|
edgeCache: true,
|
|
11314
|
-
responseSchema:
|
|
11599
|
+
responseSchema: PassthroughDataSchema21,
|
|
11315
11600
|
responseType: "passthrough"
|
|
11316
11601
|
},
|
|
11317
11602
|
{
|
|
@@ -11323,7 +11608,7 @@ var endpoints20 = [
|
|
|
11323
11608
|
pathParams: ["id"],
|
|
11324
11609
|
queryParams: [],
|
|
11325
11610
|
edgeCache: true,
|
|
11326
|
-
responseSchema:
|
|
11611
|
+
responseSchema: PassthroughDataSchema21,
|
|
11327
11612
|
responseType: "passthrough"
|
|
11328
11613
|
},
|
|
11329
11614
|
{
|
|
@@ -11335,7 +11620,7 @@ var endpoints20 = [
|
|
|
11335
11620
|
pathParams: ["id"],
|
|
11336
11621
|
queryParams: ["limit", "offset", "q"],
|
|
11337
11622
|
edgeCache: true,
|
|
11338
|
-
responseSchema:
|
|
11623
|
+
responseSchema: PassthroughDataSchema21,
|
|
11339
11624
|
responseType: "passthrough"
|
|
11340
11625
|
},
|
|
11341
11626
|
{
|
|
@@ -11347,7 +11632,7 @@ var endpoints20 = [
|
|
|
11347
11632
|
pathParams: ["id"],
|
|
11348
11633
|
queryParams: [],
|
|
11349
11634
|
edgeCache: true,
|
|
11350
|
-
responseSchema:
|
|
11635
|
+
responseSchema: PassthroughDataSchema21,
|
|
11351
11636
|
responseType: "passthrough"
|
|
11352
11637
|
},
|
|
11353
11638
|
{
|
|
@@ -11359,7 +11644,7 @@ var endpoints20 = [
|
|
|
11359
11644
|
pathParams: ["id"],
|
|
11360
11645
|
queryParams: ["enabledCd"],
|
|
11361
11646
|
edgeCache: true,
|
|
11362
|
-
responseSchema:
|
|
11647
|
+
responseSchema: PassthroughDataSchema21,
|
|
11363
11648
|
responseType: "passthrough"
|
|
11364
11649
|
},
|
|
11365
11650
|
{
|
|
@@ -11455,14 +11740,14 @@ var endpoints20 = [
|
|
|
11455
11740
|
pathParams: [],
|
|
11456
11741
|
queryParams: ["limit", "offset"],
|
|
11457
11742
|
edgeCache: true,
|
|
11458
|
-
responseSchema:
|
|
11743
|
+
responseSchema: PassthroughDataSchema21,
|
|
11459
11744
|
responseType: "passthrough"
|
|
11460
11745
|
}
|
|
11461
11746
|
];
|
|
11462
11747
|
|
|
11463
11748
|
// src/services/p21-core/resources/health-check.ts
|
|
11464
|
-
import * as
|
|
11465
|
-
var UnknownResponseSchema = BaseResponseSchema(
|
|
11749
|
+
import * as v29 from "valibot";
|
|
11750
|
+
var UnknownResponseSchema = BaseResponseSchema(v29.unknown());
|
|
11466
11751
|
function createHealthCheckResource21(executeRequest) {
|
|
11467
11752
|
return {
|
|
11468
11753
|
/**
|
|
@@ -11525,7 +11810,7 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11525
11810
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11526
11811
|
return this.executeRequest(config, params, pathParams);
|
|
11527
11812
|
};
|
|
11528
|
-
const proxy = createServiceProxy("p21-core", boundExecuteRequest,
|
|
11813
|
+
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
|
|
11529
11814
|
const dataProxy = createDataProxy(proxy);
|
|
11530
11815
|
this.address = proxy.address;
|
|
11531
11816
|
this.cashDrawer = proxy.cashDrawer;
|
|
@@ -11550,84 +11835,84 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11550
11835
|
};
|
|
11551
11836
|
|
|
11552
11837
|
// 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
|
|
11838
|
+
import * as v30 from "valibot";
|
|
11839
|
+
var ImportListParamsSchema = v30.looseObject({
|
|
11840
|
+
...EdgeCacheParamsSchema.entries,
|
|
11841
|
+
createdFrom: v30.optional(v30.string()),
|
|
11842
|
+
createdOn: v30.optional(v30.string()),
|
|
11843
|
+
createdTo: v30.optional(v30.string()),
|
|
11844
|
+
excludeState: v30.optional(v30.string()),
|
|
11845
|
+
importState: v30.optional(v30.string()),
|
|
11846
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11847
|
+
offset: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11848
|
+
orderBy: v30.optional(v30.string()),
|
|
11849
|
+
q: v30.optional(v30.string()),
|
|
11850
|
+
referenceNo: v30.optional(v30.string()),
|
|
11851
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11852
|
+
sourceName: v30.optional(v30.string())
|
|
11853
|
+
});
|
|
11854
|
+
var ImportDailySummaryListParamsSchema = v30.looseObject({
|
|
11855
|
+
...EdgeCacheParamsSchema.entries,
|
|
11856
|
+
days: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11857
|
+
});
|
|
11858
|
+
var ImportRecentListParamsSchema = v30.looseObject({
|
|
11859
|
+
...EdgeCacheParamsSchema.entries,
|
|
11860
|
+
createdFrom: v30.optional(v30.string()),
|
|
11861
|
+
createdOn: v30.optional(v30.string()),
|
|
11862
|
+
createdTo: v30.optional(v30.string()),
|
|
11863
|
+
excludeState: v30.optional(v30.string()),
|
|
11864
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11865
|
+
importState: v30.optional(v30.string()),
|
|
11866
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11867
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11868
|
+
sourceName: v30.optional(v30.string())
|
|
11869
|
+
});
|
|
11870
|
+
var ImportStuckListParamsSchema = v30.looseObject({
|
|
11871
|
+
...EdgeCacheParamsSchema.entries,
|
|
11872
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11873
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11874
|
+
});
|
|
11875
|
+
var ImportDailySummaryDataSchema = v30.looseObject({
|
|
11876
|
+
date: v30.optional(v30.string()),
|
|
11877
|
+
total: v30.optional(v30.number()),
|
|
11878
|
+
initial: v30.optional(v30.number()),
|
|
11879
|
+
processing: v30.optional(v30.number()),
|
|
11880
|
+
processingCoupon: v30.optional(v30.number()),
|
|
11881
|
+
processCoupon: v30.optional(v30.number()),
|
|
11882
|
+
validate: v30.optional(v30.number()),
|
|
11883
|
+
validating: v30.optional(v30.number()),
|
|
11884
|
+
validated: v30.optional(v30.number()),
|
|
11885
|
+
processed: v30.optional(v30.number()),
|
|
11886
|
+
hold: v30.optional(v30.number()),
|
|
11887
|
+
delivering: v30.optional(v30.number()),
|
|
11888
|
+
delivered: v30.optional(v30.number()),
|
|
11889
|
+
importing: v30.optional(v30.number()),
|
|
11890
|
+
imported: v30.optional(v30.number()),
|
|
11891
|
+
redelivered: v30.optional(v30.number()),
|
|
11892
|
+
invalid: v30.optional(v30.number()),
|
|
11893
|
+
failed: v30.optional(v30.number()),
|
|
11894
|
+
error: v30.optional(v30.number()),
|
|
11895
|
+
cancelled: v30.optional(v30.number()),
|
|
11896
|
+
stopped: v30.optional(v30.number()),
|
|
11897
|
+
skipped: v30.optional(v30.number())
|
|
11898
|
+
});
|
|
11899
|
+
var ImportDataSchema = v30.looseObject({
|
|
11900
|
+
importUid: v30.optional(v30.number()),
|
|
11901
|
+
scheduledImportMasterUid: v30.optional(v30.number()),
|
|
11902
|
+
dateCreated: v30.optional(v30.string()),
|
|
11903
|
+
dateLastModified: v30.optional(v30.string()),
|
|
11904
|
+
sourceName: v30.optional(v30.nullable(v30.string())),
|
|
11905
|
+
sourceId: v30.optional(v30.number()),
|
|
11906
|
+
importState: v30.optional(v30.string()),
|
|
11907
|
+
jsonData: v30.optional(v30.nullable(v30.string())),
|
|
11908
|
+
importStatusCd: v30.optional(v30.number()),
|
|
11909
|
+
importResults: v30.optional(v30.nullable(v30.string())),
|
|
11910
|
+
referenceNo: v30.optional(v30.nullable(v30.string()))
|
|
11911
|
+
});
|
|
11912
|
+
var PassthroughDataSchema22 = v30.record(v30.string(), v30.unknown());
|
|
11628
11913
|
|
|
11629
11914
|
// src/services/p21-sism/generated/endpoints.ts
|
|
11630
|
-
var
|
|
11915
|
+
var endpoints22 = [
|
|
11631
11916
|
{
|
|
11632
11917
|
method: "GET",
|
|
11633
11918
|
path: "/import",
|
|
@@ -11650,7 +11935,7 @@ var endpoints21 = [
|
|
|
11650
11935
|
"sourceName"
|
|
11651
11936
|
],
|
|
11652
11937
|
edgeCache: true,
|
|
11653
|
-
responseSchema:
|
|
11938
|
+
responseSchema: PassthroughDataSchema22,
|
|
11654
11939
|
responseType: "passthrough"
|
|
11655
11940
|
},
|
|
11656
11941
|
{
|
|
@@ -11684,7 +11969,7 @@ var endpoints21 = [
|
|
|
11684
11969
|
"sourceName"
|
|
11685
11970
|
],
|
|
11686
11971
|
edgeCache: true,
|
|
11687
|
-
responseSchema:
|
|
11972
|
+
responseSchema: PassthroughDataSchema22,
|
|
11688
11973
|
responseType: "passthrough"
|
|
11689
11974
|
},
|
|
11690
11975
|
{
|
|
@@ -11696,7 +11981,7 @@ var endpoints21 = [
|
|
|
11696
11981
|
pathParams: [],
|
|
11697
11982
|
queryParams: ["hours", "limit"],
|
|
11698
11983
|
edgeCache: true,
|
|
11699
|
-
responseSchema:
|
|
11984
|
+
responseSchema: PassthroughDataSchema22,
|
|
11700
11985
|
responseType: "passthrough"
|
|
11701
11986
|
},
|
|
11702
11987
|
{
|
|
@@ -11744,7 +12029,7 @@ var endpoints21 = [
|
|
|
11744
12029
|
pathParams: ["importUid"],
|
|
11745
12030
|
queryParams: [],
|
|
11746
12031
|
edgeCache: true,
|
|
11747
|
-
responseSchema:
|
|
12032
|
+
responseSchema: PassthroughDataSchema22,
|
|
11748
12033
|
responseType: "passthrough"
|
|
11749
12034
|
},
|
|
11750
12035
|
{
|
|
@@ -11756,7 +12041,7 @@ var endpoints21 = [
|
|
|
11756
12041
|
pathParams: ["importUid"],
|
|
11757
12042
|
queryParams: [],
|
|
11758
12043
|
edgeCache: false,
|
|
11759
|
-
responseSchema:
|
|
12044
|
+
responseSchema: PassthroughDataSchema22,
|
|
11760
12045
|
responseType: "passthrough"
|
|
11761
12046
|
},
|
|
11762
12047
|
{
|
|
@@ -11768,7 +12053,7 @@ var endpoints21 = [
|
|
|
11768
12053
|
pathParams: ["importUid"],
|
|
11769
12054
|
queryParams: [],
|
|
11770
12055
|
edgeCache: true,
|
|
11771
|
-
responseSchema:
|
|
12056
|
+
responseSchema: PassthroughDataSchema22,
|
|
11772
12057
|
responseType: "passthrough"
|
|
11773
12058
|
},
|
|
11774
12059
|
{
|
|
@@ -11780,7 +12065,7 @@ var endpoints21 = [
|
|
|
11780
12065
|
pathParams: ["importUid"],
|
|
11781
12066
|
queryParams: [],
|
|
11782
12067
|
edgeCache: false,
|
|
11783
|
-
responseSchema:
|
|
12068
|
+
responseSchema: PassthroughDataSchema22,
|
|
11784
12069
|
responseType: "passthrough"
|
|
11785
12070
|
},
|
|
11786
12071
|
{
|
|
@@ -11792,7 +12077,7 @@ var endpoints21 = [
|
|
|
11792
12077
|
pathParams: ["importUid"],
|
|
11793
12078
|
queryParams: [],
|
|
11794
12079
|
edgeCache: true,
|
|
11795
|
-
responseSchema:
|
|
12080
|
+
responseSchema: PassthroughDataSchema22,
|
|
11796
12081
|
responseType: "passthrough"
|
|
11797
12082
|
},
|
|
11798
12083
|
{
|
|
@@ -11804,7 +12089,7 @@ var endpoints21 = [
|
|
|
11804
12089
|
pathParams: ["scheduledImportMasterUid"],
|
|
11805
12090
|
queryParams: [],
|
|
11806
12091
|
edgeCache: false,
|
|
11807
|
-
responseSchema:
|
|
12092
|
+
responseSchema: PassthroughDataSchema22,
|
|
11808
12093
|
responseType: "passthrough"
|
|
11809
12094
|
}
|
|
11810
12095
|
];
|
|
@@ -11857,7 +12142,7 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11857
12142
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11858
12143
|
return this.executeRequest(config, params, pathParams);
|
|
11859
12144
|
};
|
|
11860
|
-
const proxy = createServiceProxy("p21-sism", boundExecuteRequest,
|
|
12145
|
+
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
|
|
11861
12146
|
const dataProxy = createDataProxy(proxy);
|
|
11862
12147
|
this.import = proxy.import;
|
|
11863
12148
|
this.scheduledImportMaster = proxy.scheduledImportMaster;
|
|
@@ -11872,11 +12157,11 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11872
12157
|
};
|
|
11873
12158
|
|
|
11874
12159
|
// src/services/shipping/generated/schemas.ts
|
|
11875
|
-
import * as
|
|
11876
|
-
var
|
|
12160
|
+
import * as v31 from "valibot";
|
|
12161
|
+
var PassthroughDataSchema23 = v31.record(v31.string(), v31.unknown());
|
|
11877
12162
|
|
|
11878
12163
|
// src/services/shipping/generated/endpoints.ts
|
|
11879
|
-
var
|
|
12164
|
+
var endpoints23 = [
|
|
11880
12165
|
{
|
|
11881
12166
|
method: "POST",
|
|
11882
12167
|
path: "/rates",
|
|
@@ -11886,7 +12171,7 @@ var endpoints22 = [
|
|
|
11886
12171
|
pathParams: [],
|
|
11887
12172
|
queryParams: [],
|
|
11888
12173
|
edgeCache: false,
|
|
11889
|
-
responseSchema:
|
|
12174
|
+
responseSchema: PassthroughDataSchema23,
|
|
11890
12175
|
responseType: "passthrough"
|
|
11891
12176
|
}
|
|
11892
12177
|
];
|
|
@@ -11966,7 +12251,7 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
11966
12251
|
const proxy = createServiceProxy(
|
|
11967
12252
|
"shipping",
|
|
11968
12253
|
boundExecuteRequest,
|
|
11969
|
-
|
|
12254
|
+
endpoints23
|
|
11970
12255
|
);
|
|
11971
12256
|
const dataProxy = createDataProxy(proxy);
|
|
11972
12257
|
this.rates = proxy.rates;
|
|
@@ -11977,11 +12262,11 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
11977
12262
|
};
|
|
11978
12263
|
|
|
11979
12264
|
// src/services/slack/generated/schemas.ts
|
|
11980
|
-
import * as
|
|
11981
|
-
var
|
|
12265
|
+
import * as v32 from "valibot";
|
|
12266
|
+
var PassthroughDataSchema24 = v32.record(v32.string(), v32.unknown());
|
|
11982
12267
|
|
|
11983
12268
|
// src/services/slack/generated/endpoints.ts
|
|
11984
|
-
var
|
|
12269
|
+
var endpoints24 = [
|
|
11985
12270
|
{
|
|
11986
12271
|
method: "POST",
|
|
11987
12272
|
path: "/web-hook",
|
|
@@ -11991,7 +12276,7 @@ var endpoints23 = [
|
|
|
11991
12276
|
pathParams: [],
|
|
11992
12277
|
queryParams: [],
|
|
11993
12278
|
edgeCache: false,
|
|
11994
|
-
responseSchema:
|
|
12279
|
+
responseSchema: PassthroughDataSchema24,
|
|
11995
12280
|
responseType: "passthrough"
|
|
11996
12281
|
},
|
|
11997
12282
|
{
|
|
@@ -12003,7 +12288,7 @@ var endpoints23 = [
|
|
|
12003
12288
|
pathParams: [],
|
|
12004
12289
|
queryParams: [],
|
|
12005
12290
|
edgeCache: true,
|
|
12006
|
-
responseSchema:
|
|
12291
|
+
responseSchema: PassthroughDataSchema24,
|
|
12007
12292
|
responseType: "passthrough"
|
|
12008
12293
|
}
|
|
12009
12294
|
];
|
|
@@ -12092,7 +12377,7 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12092
12377
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12093
12378
|
return this.executeRequest(config, params, pathParams);
|
|
12094
12379
|
};
|
|
12095
|
-
const proxy = createServiceProxy("slack", boundExecuteRequest,
|
|
12380
|
+
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
|
|
12096
12381
|
const dataProxy = createDataProxy(proxy);
|
|
12097
12382
|
this.webHook = proxy.webHook;
|
|
12098
12383
|
this.webHookData = dataProxy.webHook;
|
|
@@ -12102,19 +12387,19 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12102
12387
|
};
|
|
12103
12388
|
|
|
12104
12389
|
// src/services/smarty-streets/generated/schemas.ts
|
|
12105
|
-
import * as
|
|
12106
|
-
var UsLookupGetParamsSchema =
|
|
12390
|
+
import * as v33 from "valibot";
|
|
12391
|
+
var UsLookupGetParamsSchema = v33.looseObject({
|
|
12107
12392
|
...EdgeCacheParamsSchema.entries,
|
|
12108
|
-
address1:
|
|
12109
|
-
address2:
|
|
12110
|
-
city:
|
|
12111
|
-
postalCode:
|
|
12112
|
-
state:
|
|
12393
|
+
address1: v33.string(),
|
|
12394
|
+
address2: v33.string(),
|
|
12395
|
+
city: v33.string(),
|
|
12396
|
+
postalCode: v33.string(),
|
|
12397
|
+
state: v33.string()
|
|
12113
12398
|
});
|
|
12114
|
-
var
|
|
12399
|
+
var PassthroughDataSchema25 = v33.record(v33.string(), v33.unknown());
|
|
12115
12400
|
|
|
12116
12401
|
// src/services/smarty-streets/generated/endpoints.ts
|
|
12117
|
-
var
|
|
12402
|
+
var endpoints25 = [
|
|
12118
12403
|
{
|
|
12119
12404
|
method: "GET",
|
|
12120
12405
|
path: "/us/lookup",
|
|
@@ -12124,7 +12409,7 @@ var endpoints24 = [
|
|
|
12124
12409
|
pathParams: [],
|
|
12125
12410
|
queryParams: ["address1", "address2", "city", "postalCode", "state"],
|
|
12126
12411
|
edgeCache: true,
|
|
12127
|
-
responseSchema:
|
|
12412
|
+
responseSchema: PassthroughDataSchema25,
|
|
12128
12413
|
responseType: "passthrough"
|
|
12129
12414
|
}
|
|
12130
12415
|
];
|
|
@@ -12295,7 +12580,7 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12295
12580
|
const proxy = createServiceProxy(
|
|
12296
12581
|
"smarty-streets",
|
|
12297
12582
|
boundExecuteRequest,
|
|
12298
|
-
|
|
12583
|
+
endpoints25
|
|
12299
12584
|
);
|
|
12300
12585
|
const dataProxy = createDataProxy(proxy);
|
|
12301
12586
|
this.us = proxy.us;
|
|
@@ -12308,30 +12593,30 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12308
12593
|
};
|
|
12309
12594
|
|
|
12310
12595
|
// 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
|
|
12596
|
+
import * as v34 from "valibot";
|
|
12597
|
+
var RatesShopListParamsSchema = v34.looseObject({
|
|
12598
|
+
...EdgeCacheParamsSchema.entries,
|
|
12599
|
+
cacheSiteId: v34.optional(v34.string()),
|
|
12600
|
+
fromAddress1: v34.optional(v34.string()),
|
|
12601
|
+
fromAddress2: v34.optional(v34.string()),
|
|
12602
|
+
fromAddress3: v34.optional(v34.string()),
|
|
12603
|
+
fromCity: v34.optional(v34.string()),
|
|
12604
|
+
fromCountryCode: v34.optional(v34.string()),
|
|
12605
|
+
fromPostalCode: v34.optional(v34.string()),
|
|
12606
|
+
fromStateProvinceCode: v34.optional(v34.string()),
|
|
12607
|
+
toAddress1: v34.optional(v34.string()),
|
|
12608
|
+
toAddress2: v34.optional(v34.string()),
|
|
12609
|
+
toAddress3: v34.optional(v34.string()),
|
|
12610
|
+
toCity: v34.optional(v34.string()),
|
|
12611
|
+
toCountryCode: v34.optional(v34.string()),
|
|
12612
|
+
toPostalCode: v34.optional(v34.string()),
|
|
12613
|
+
toStateProvinceCode: v34.optional(v34.string()),
|
|
12614
|
+
weight: v34.optional(v34.pipe(v34.unknown(), v34.transform(Number)))
|
|
12615
|
+
});
|
|
12616
|
+
var PassthroughDataSchema26 = v34.record(v34.string(), v34.unknown());
|
|
12332
12617
|
|
|
12333
12618
|
// src/services/ups/generated/endpoints.ts
|
|
12334
|
-
var
|
|
12619
|
+
var endpoints26 = [
|
|
12335
12620
|
{
|
|
12336
12621
|
method: "GET",
|
|
12337
12622
|
path: "/rates-shop",
|
|
@@ -12358,15 +12643,15 @@ var endpoints25 = [
|
|
|
12358
12643
|
"weight"
|
|
12359
12644
|
],
|
|
12360
12645
|
edgeCache: true,
|
|
12361
|
-
responseSchema:
|
|
12646
|
+
responseSchema: PassthroughDataSchema26,
|
|
12362
12647
|
responseType: "passthrough"
|
|
12363
12648
|
}
|
|
12364
12649
|
];
|
|
12365
12650
|
|
|
12366
12651
|
// src/services/ups/resources/health-check.ts
|
|
12367
|
-
import * as
|
|
12368
|
-
var HealthCheckParamsSchema =
|
|
12369
|
-
"x-site-id":
|
|
12652
|
+
import * as v35 from "valibot";
|
|
12653
|
+
var HealthCheckParamsSchema = v35.looseObject({
|
|
12654
|
+
"x-site-id": v35.string(),
|
|
12370
12655
|
...EdgeCacheParamsSchema.entries
|
|
12371
12656
|
});
|
|
12372
12657
|
function createHealthCheckResource26(executeRequest) {
|
|
@@ -12458,7 +12743,7 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12458
12743
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12459
12744
|
return this.executeRequest(config, params, pathParams);
|
|
12460
12745
|
};
|
|
12461
|
-
const proxy = createServiceProxy("ups", boundExecuteRequest,
|
|
12746
|
+
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
|
|
12462
12747
|
const dataProxy = createDataProxy(proxy);
|
|
12463
12748
|
this.ratesShop = proxy.ratesShop;
|
|
12464
12749
|
this.ratesShopData = dataProxy.ratesShop;
|
|
@@ -12468,354 +12753,354 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12468
12753
|
};
|
|
12469
12754
|
|
|
12470
12755
|
// 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
|
|
12756
|
+
import * as v36 from "valibot";
|
|
12757
|
+
var CommentsListParamsSchema = v36.looseObject({
|
|
12758
|
+
...EdgeCacheParamsSchema.entries,
|
|
12759
|
+
creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12760
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12761
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12762
|
+
order_by: v36.optional(v36.string()),
|
|
12763
|
+
todos_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12764
|
+
});
|
|
12765
|
+
var EventsListParamsSchema = v36.looseObject({
|
|
12766
|
+
...EdgeCacheParamsSchema.entries,
|
|
12767
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12768
|
+
id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12769
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12770
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12771
|
+
order_by: v36.optional(v36.string()),
|
|
12772
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12773
|
+
});
|
|
12774
|
+
var MetricsListParamsSchema = v36.looseObject({
|
|
12775
|
+
...EdgeCacheParamsSchema.entries,
|
|
12776
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12777
|
+
creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12778
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12779
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12780
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12781
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12782
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12783
|
+
orderBy: v36.optional(v36.string()),
|
|
12784
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12785
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12786
|
+
});
|
|
12787
|
+
var PeopleListParamsSchema = v36.looseObject({
|
|
12788
|
+
...EdgeCacheParamsSchema.entries,
|
|
12789
|
+
adminFlag: v36.optional(v36.string()),
|
|
12790
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12791
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12792
|
+
orderBy: v36.optional(v36.string()),
|
|
12793
|
+
q: v36.optional(v36.string()),
|
|
12794
|
+
trashedFlag: v36.optional(v36.string())
|
|
12795
|
+
});
|
|
12796
|
+
var PeopleMetricsListParamsSchema = v36.looseObject({
|
|
12797
|
+
...EdgeCacheParamsSchema.entries,
|
|
12798
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12799
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12800
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12801
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12802
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12803
|
+
orderBy: v36.optional(v36.string()),
|
|
12804
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12805
|
+
});
|
|
12806
|
+
var PeopleTodosListParamsSchema = v36.looseObject({
|
|
12807
|
+
...EdgeCacheParamsSchema.entries,
|
|
12808
|
+
completed_flag: v36.optional(v36.string()),
|
|
12809
|
+
due_at: v36.optional(v36.string()),
|
|
12810
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12811
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12812
|
+
order_by: v36.optional(v36.string()),
|
|
12813
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12814
|
+
});
|
|
12815
|
+
var PeopleProjectsTodosListParamsSchema = v36.looseObject({
|
|
12816
|
+
...EdgeCacheParamsSchema.entries,
|
|
12817
|
+
completed_flag: v36.optional(v36.string()),
|
|
12818
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12819
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12820
|
+
order_by: v36.optional(v36.string())
|
|
12821
|
+
});
|
|
12822
|
+
var ProjectsListParamsSchema = v36.looseObject({
|
|
12823
|
+
...EdgeCacheParamsSchema.entries,
|
|
12824
|
+
archived_flag: v36.optional(v36.string()),
|
|
12825
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12826
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12827
|
+
order_by: v36.optional(v36.string()),
|
|
12828
|
+
trashed_flag: v36.optional(v36.string())
|
|
12829
|
+
});
|
|
12830
|
+
var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
12831
|
+
...EdgeCacheParamsSchema.entries,
|
|
12832
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12833
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12834
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12835
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12836
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12837
|
+
orderBy: v36.optional(v36.string()),
|
|
12838
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12839
|
+
});
|
|
12840
|
+
var ProjectsTodolistsListParamsSchema = v36.looseObject({
|
|
12841
|
+
...EdgeCacheParamsSchema.entries,
|
|
12842
|
+
completed_flag: 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
|
+
});
|
|
12847
|
+
var ProjectsTodosListParamsSchema = v36.looseObject({
|
|
12848
|
+
...EdgeCacheParamsSchema.entries,
|
|
12849
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
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 ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
|
|
12856
|
+
...EdgeCacheParamsSchema.entries,
|
|
12857
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12858
|
+
completed_flag: v36.optional(v36.string()),
|
|
12859
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12860
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12861
|
+
order_by: v36.optional(v36.string())
|
|
12862
|
+
});
|
|
12863
|
+
var TodolistsListParamsSchema = v36.looseObject({
|
|
12864
|
+
...EdgeCacheParamsSchema.entries,
|
|
12865
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12866
|
+
completed_flag: v36.optional(v36.string()),
|
|
12867
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12868
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12869
|
+
order_by: v36.optional(v36.string()),
|
|
12870
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12871
|
+
});
|
|
12872
|
+
var TodosListParamsSchema = v36.looseObject({
|
|
12873
|
+
...EdgeCacheParamsSchema.entries,
|
|
12874
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12875
|
+
completed_flag: v36.optional(v36.string()),
|
|
12876
|
+
due_at: v36.optional(v36.string()),
|
|
12877
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12878
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12879
|
+
order_by: v36.optional(v36.string()),
|
|
12880
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12881
|
+
todolist_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12882
|
+
});
|
|
12883
|
+
var TodosSummaryListParamsSchema = v36.looseObject({
|
|
12884
|
+
...EdgeCacheParamsSchema.entries,
|
|
12885
|
+
akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12886
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12887
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12888
|
+
process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12889
|
+
});
|
|
12890
|
+
var TodosCommentsListParamsSchema = v36.looseObject({
|
|
12891
|
+
...EdgeCacheParamsSchema.entries,
|
|
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 TodosEventsListParamsSchema = v36.looseObject({
|
|
12897
|
+
...EdgeCacheParamsSchema.entries,
|
|
12898
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12899
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12900
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12901
|
+
order_by: v36.optional(v36.string()),
|
|
12902
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12903
|
+
});
|
|
12904
|
+
var TodosSessionsListParamsSchema = v36.looseObject({
|
|
12905
|
+
...EdgeCacheParamsSchema.entries,
|
|
12906
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12907
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12908
|
+
order_by: v36.optional(v36.string()),
|
|
12909
|
+
session_status_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12910
|
+
});
|
|
12911
|
+
var CommentsDataSchema = v36.looseObject({
|
|
12912
|
+
id: v36.optional(v36.number()),
|
|
12913
|
+
content: v36.optional(v36.string()),
|
|
12914
|
+
updatedAt: v36.optional(v36.string()),
|
|
12915
|
+
createdAt: v36.optional(v36.string()),
|
|
12916
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
12917
|
+
updateCd: v36.optional(v36.number()),
|
|
12918
|
+
statusCd: v36.optional(v36.number()),
|
|
12919
|
+
processCd: v36.optional(v36.number()),
|
|
12920
|
+
todosId: v36.optional(v36.nullable(v36.number())),
|
|
12921
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
12922
|
+
vectorCd: v36.optional(v36.number()),
|
|
12923
|
+
vectorFlag: v36.optional(v36.string()),
|
|
12924
|
+
dateLastVector: v36.optional(v36.string()),
|
|
12925
|
+
location: v36.optional(v36.nullable(v36.string())),
|
|
12926
|
+
contentLength: v36.optional(v36.number()),
|
|
12927
|
+
tokenCount: v36.optional(v36.number())
|
|
12928
|
+
});
|
|
12929
|
+
var EventsDataSchema = v36.looseObject({
|
|
12930
|
+
id: v36.optional(v36.number()),
|
|
12931
|
+
eventNum: v36.optional(v36.number()),
|
|
12932
|
+
eventTypeCd: v36.optional(v36.number()),
|
|
12933
|
+
peopleId: v36.optional(v36.number()),
|
|
12934
|
+
eventAt: v36.optional(v36.string()),
|
|
12935
|
+
commentId: v36.optional(v36.nullable(v36.number())),
|
|
12936
|
+
dateCreated: v36.optional(v36.string()),
|
|
12937
|
+
dateLastModified: v36.optional(v36.string()),
|
|
12938
|
+
updateCd: v36.optional(v36.number()),
|
|
12939
|
+
statusCd: v36.optional(v36.number()),
|
|
12940
|
+
processCd: v36.optional(v36.number()),
|
|
12941
|
+
todosSessionsUid: v36.optional(v36.nullable(v36.number()))
|
|
12942
|
+
});
|
|
12943
|
+
var MetricsDataSchema = v36.looseObject({
|
|
12944
|
+
id: v36.optional(v36.number()),
|
|
12945
|
+
projectsId: v36.optional(v36.nullable(v36.number())),
|
|
12946
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
12947
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
12948
|
+
creatorId: v36.optional(v36.number()),
|
|
12949
|
+
todosContent: v36.optional(v36.nullable(v36.string())),
|
|
12950
|
+
todosStatusCd: v36.optional(v36.number()),
|
|
12951
|
+
isStale: v36.optional(v36.number()),
|
|
12952
|
+
hasComments: v36.optional(v36.number()),
|
|
12953
|
+
needsResponse: v36.optional(v36.number()),
|
|
12954
|
+
createdAt: v36.optional(v36.string()),
|
|
12955
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
12956
|
+
lastActivityAt: v36.optional(v36.string()),
|
|
12957
|
+
firstCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
12958
|
+
lastCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
12959
|
+
daysOpen: v36.optional(v36.nullable(v36.number())),
|
|
12960
|
+
daysSinceLastEvent: v36.optional(v36.nullable(v36.number())),
|
|
12961
|
+
daysToFirstComment: v36.optional(v36.nullable(v36.number())),
|
|
12962
|
+
cycleTimeDays: v36.optional(v36.nullable(v36.number())),
|
|
12963
|
+
commentCount: v36.optional(v36.number()),
|
|
12964
|
+
activeDaysCount: v36.optional(v36.number()),
|
|
12965
|
+
activitySpanDays: v36.optional(v36.nullable(v36.number())),
|
|
12966
|
+
avgDaysBetweenActivity: v36.optional(v36.nullable(v36.number())),
|
|
12967
|
+
lastCommenterId: v36.optional(v36.nullable(v36.number())),
|
|
12968
|
+
dateCreated: v36.optional(v36.string()),
|
|
12969
|
+
dateLastModified: v36.optional(v36.string()),
|
|
12970
|
+
updateCd: v36.optional(v36.number()),
|
|
12971
|
+
statusCd: v36.optional(v36.number()),
|
|
12972
|
+
processCd: v36.optional(v36.number())
|
|
12973
|
+
});
|
|
12974
|
+
var PeopleDataSchema = v36.looseObject({
|
|
12975
|
+
id: v36.optional(v36.number()),
|
|
12976
|
+
identityId: v36.optional(v36.nullable(v36.number())),
|
|
12977
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
12978
|
+
emailAddress: v36.optional(v36.nullable(v36.string())),
|
|
12979
|
+
adminFlag: v36.optional(v36.nullable(v36.string())),
|
|
12980
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
12981
|
+
updatedAt: v36.optional(v36.string()),
|
|
12982
|
+
createdAt: v36.optional(v36.string()),
|
|
12983
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
12984
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
12985
|
+
avatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
12986
|
+
fullsizeAvatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
12987
|
+
updateCd: v36.optional(v36.number()),
|
|
12988
|
+
statusCd: v36.optional(v36.number()),
|
|
12989
|
+
processCd: v36.optional(v36.number())
|
|
12990
|
+
});
|
|
12991
|
+
var ProjectsDataSchema = v36.looseObject({
|
|
12992
|
+
id: v36.optional(v36.number()),
|
|
12993
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
12994
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
12995
|
+
updatedAt: v36.optional(v36.string()),
|
|
12996
|
+
createdAt: v36.optional(v36.string()),
|
|
12997
|
+
lastEventAt: v36.optional(v36.string()),
|
|
12998
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
12999
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13000
|
+
templateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13001
|
+
archivedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13002
|
+
starredFlag: v36.optional(v36.nullable(v36.string())),
|
|
13003
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13004
|
+
draftFlag: v36.optional(v36.nullable(v36.string())),
|
|
13005
|
+
isClientProjectFlag: v36.optional(v36.nullable(v36.string())),
|
|
13006
|
+
color: v36.optional(v36.nullable(v36.string())),
|
|
13007
|
+
updateCd: v36.optional(v36.number()),
|
|
13008
|
+
statusCd: v36.optional(v36.number()),
|
|
13009
|
+
processCd: v36.optional(v36.number())
|
|
13010
|
+
});
|
|
13011
|
+
var TodolistsDataSchema = v36.looseObject({
|
|
13012
|
+
id: v36.optional(v36.number()),
|
|
13013
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13014
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13015
|
+
updatedAt: v36.optional(v36.string()),
|
|
13016
|
+
createdAt: v36.optional(v36.string()),
|
|
13017
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13018
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13019
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13020
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13021
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13022
|
+
completedCount: v36.optional(v36.nullable(v36.number())),
|
|
13023
|
+
remainingCount: v36.optional(v36.nullable(v36.number())),
|
|
13024
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13025
|
+
bucketId: v36.optional(v36.nullable(v36.number())),
|
|
13026
|
+
updateCd: v36.optional(v36.number()),
|
|
13027
|
+
position: v36.optional(v36.number()),
|
|
13028
|
+
statusCd: v36.optional(v36.number()),
|
|
13029
|
+
processCd: v36.optional(v36.number()),
|
|
13030
|
+
projectsId: v36.optional(v36.number())
|
|
13031
|
+
});
|
|
13032
|
+
var TodosDataSchema = v36.looseObject({
|
|
13033
|
+
id: v36.optional(v36.number()),
|
|
13034
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
13035
|
+
content: v36.optional(v36.nullable(v36.string())),
|
|
13036
|
+
dueAt: v36.optional(v36.nullable(v36.string())),
|
|
13037
|
+
dueOn: v36.optional(v36.nullable(v36.string())),
|
|
13038
|
+
updatedAt: v36.optional(v36.string()),
|
|
13039
|
+
createdAt: v36.optional(v36.string()),
|
|
13040
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
13041
|
+
commentsCount: v36.optional(v36.nullable(v36.number())),
|
|
13042
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13043
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13044
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13045
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
13046
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13047
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13048
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13049
|
+
updateCd: v36.optional(v36.number()),
|
|
13050
|
+
position: v36.optional(v36.number()),
|
|
13051
|
+
projectsId: v36.optional(v36.number()),
|
|
13052
|
+
detailJson: v36.optional(v36.nullable(v36.string())),
|
|
13053
|
+
pullDetailCd: v36.optional(v36.number()),
|
|
13054
|
+
processCd: v36.optional(v36.number()),
|
|
13055
|
+
agrInfoCd: v36.optional(v36.number()),
|
|
13056
|
+
statusCd: v36.optional(v36.number()),
|
|
13057
|
+
lastCommentAt: v36.optional(v36.string()),
|
|
13058
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13059
|
+
vectorCd: v36.optional(v36.number()),
|
|
13060
|
+
vectorFlag: v36.optional(v36.string()),
|
|
13061
|
+
dateLastVector: v36.optional(v36.string())
|
|
13062
|
+
});
|
|
13063
|
+
var TodosSummaryDataSchema = v36.looseObject({
|
|
13064
|
+
id: v36.optional(v36.number()),
|
|
13065
|
+
summary: v36.optional(v36.nullable(v36.string())),
|
|
13066
|
+
summaryTokens: v36.optional(v36.number()),
|
|
13067
|
+
context: v36.optional(v36.nullable(v36.string())),
|
|
13068
|
+
contextTokens: v36.optional(v36.number()),
|
|
13069
|
+
modelName: v36.optional(v36.nullable(v36.string())),
|
|
13070
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13071
|
+
vectorCd: v36.optional(v36.number()),
|
|
13072
|
+
statusCd: v36.optional(v36.number()),
|
|
13073
|
+
processCd: v36.optional(v36.number()),
|
|
13074
|
+
updateCd: v36.optional(v36.number()),
|
|
13075
|
+
dateCreated: v36.optional(v36.string()),
|
|
13076
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13077
|
+
akashaCd: v36.optional(v36.number()),
|
|
13078
|
+
complexityScore: v36.optional(v36.nullable(v36.number())),
|
|
13079
|
+
complexityReason: v36.optional(v36.nullable(v36.string())),
|
|
13080
|
+
estimatedMinutes: v36.optional(v36.nullable(v36.number())),
|
|
13081
|
+
requiredServices: v36.optional(v36.nullable(v36.string())),
|
|
13082
|
+
worthinessReason: v36.optional(v36.nullable(v36.string()))
|
|
13083
|
+
});
|
|
13084
|
+
var TodosSessionsDataSchema = v36.looseObject({
|
|
13085
|
+
todosSessionsUid: v36.optional(v36.number()),
|
|
13086
|
+
todosId: v36.optional(v36.number()),
|
|
13087
|
+
sessionNum: v36.optional(v36.number()),
|
|
13088
|
+
sessionStatusCd: v36.optional(v36.number()),
|
|
13089
|
+
subject: v36.optional(v36.nullable(v36.string())),
|
|
13090
|
+
problem: v36.optional(v36.nullable(v36.string())),
|
|
13091
|
+
investigation: v36.optional(v36.nullable(v36.string())),
|
|
13092
|
+
plan: v36.optional(v36.nullable(v36.string())),
|
|
13093
|
+
outcome: v36.optional(v36.nullable(v36.string())),
|
|
13094
|
+
dateCreated: v36.optional(v36.string()),
|
|
13095
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13096
|
+
updateCd: v36.optional(v36.number()),
|
|
13097
|
+
statusCd: v36.optional(v36.number()),
|
|
13098
|
+
processCd: v36.optional(v36.number())
|
|
13099
|
+
});
|
|
13100
|
+
var PassthroughDataSchema27 = v36.record(v36.string(), v36.unknown());
|
|
12816
13101
|
|
|
12817
13102
|
// src/services/basecamp2/generated/endpoints.ts
|
|
12818
|
-
var
|
|
13103
|
+
var endpoints27 = [
|
|
12819
13104
|
{
|
|
12820
13105
|
method: "GET",
|
|
12821
13106
|
path: "/comments",
|
|
@@ -13269,7 +13554,7 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13269
13554
|
const proxy = createServiceProxy(
|
|
13270
13555
|
"basecamp2",
|
|
13271
13556
|
boundExecuteRequest,
|
|
13272
|
-
|
|
13557
|
+
endpoints27
|
|
13273
13558
|
);
|
|
13274
13559
|
const dataProxy = createDataProxy(proxy);
|
|
13275
13560
|
this.comments = proxy.comments;
|
|
@@ -13488,6 +13773,16 @@ var AugurAPI = class _AugurAPI {
|
|
|
13488
13773
|
}
|
|
13489
13774
|
return this._agrInfo;
|
|
13490
13775
|
}
|
|
13776
|
+
/**
|
|
13777
|
+
* Access AGR Int (internal RBAC) service endpoints
|
|
13778
|
+
*/
|
|
13779
|
+
get agrInt() {
|
|
13780
|
+
if (!this._agrInt) {
|
|
13781
|
+
const httpClient = new HTTPClient("agr-int", this.config);
|
|
13782
|
+
this._agrInt = new AgrIntClient(httpClient);
|
|
13783
|
+
}
|
|
13784
|
+
return this._agrInt;
|
|
13785
|
+
}
|
|
13491
13786
|
/**
|
|
13492
13787
|
* Access AGR Work service endpoints
|
|
13493
13788
|
*/
|
|
@@ -13638,6 +13933,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13638
13933
|
this._p21Pim = void 0;
|
|
13639
13934
|
this._payments = void 0;
|
|
13640
13935
|
this._agrInfo = void 0;
|
|
13936
|
+
this._agrInt = void 0;
|
|
13641
13937
|
this._agrWork = void 0;
|
|
13642
13938
|
this._avalara = void 0;
|
|
13643
13939
|
this._brandFolder = void 0;
|
|
@@ -13672,6 +13968,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13672
13968
|
this._p21Pim = void 0;
|
|
13673
13969
|
this._payments = void 0;
|
|
13674
13970
|
this._agrInfo = void 0;
|
|
13971
|
+
this._agrInt = void 0;
|
|
13675
13972
|
this._agrWork = void 0;
|
|
13676
13973
|
this._avalara = void 0;
|
|
13677
13974
|
this._brandFolder = void 0;
|
|
@@ -13729,6 +14026,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13729
14026
|
{ name: "p21Pim", client: this.p21Pim },
|
|
13730
14027
|
{ name: "payments", client: this.payments },
|
|
13731
14028
|
{ name: "agrInfo", client: this.agrInfo },
|
|
14029
|
+
{ name: "agrInt", client: this.agrInt },
|
|
13732
14030
|
{ name: "agrWork", client: this.agrWork },
|
|
13733
14031
|
{ name: "avalara", client: this.avalara },
|
|
13734
14032
|
{ name: "brandFolder", client: this.brandFolder },
|
|
@@ -13823,11 +14121,11 @@ var AugurAPI = class _AugurAPI {
|
|
|
13823
14121
|
/**
|
|
13824
14122
|
* Search and score endpoints against search term
|
|
13825
14123
|
*/
|
|
13826
|
-
searchAndScoreEndpoints(
|
|
14124
|
+
searchAndScoreEndpoints(endpoints28, searchTerm, options) {
|
|
13827
14125
|
const { domain, minScore } = options;
|
|
13828
14126
|
const results = [];
|
|
13829
14127
|
const searchTermLower = searchTerm.toLowerCase();
|
|
13830
|
-
for (const endpoint of
|
|
14128
|
+
for (const endpoint of endpoints28) {
|
|
13831
14129
|
if (!this.isValidEndpoint(endpoint)) {
|
|
13832
14130
|
continue;
|
|
13833
14131
|
}
|
|
@@ -14181,9 +14479,10 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14181
14479
|
}
|
|
14182
14480
|
|
|
14183
14481
|
// src/index.ts
|
|
14184
|
-
var VERSION = "2026.6.
|
|
14482
|
+
var VERSION = "2026.6.2";
|
|
14185
14483
|
export {
|
|
14186
14484
|
AgrInfoClient,
|
|
14485
|
+
AgrIntClient,
|
|
14187
14486
|
AgrSiteClient,
|
|
14188
14487
|
AgrWorkClient,
|
|
14189
14488
|
AugurAPI,
|