cooptypes 1.0.20-alpha.1 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -6899,6 +6899,13 @@ interface IAgenda {
6899
6899
  interface IComplexAgenda extends IAgenda {
6900
6900
  documents: IComplexDocument;
6901
6901
  }
6902
+ interface IGetResponse<T> {
6903
+ results: T[];
6904
+ page: number;
6905
+ limit: number;
6906
+ totalResults: number;
6907
+ totalPages: number;
6908
+ }
6902
6909
  /**
6903
6910
  * Общий интерфейс для генерации/регенерации документа
6904
6911
  */
@@ -6916,12 +6923,11 @@ interface IGenerateJoinCoop extends IGenerate {
6916
6923
  interface IGenerateJoinCoopDecision extends IGenerate {
6917
6924
  decision_id: number;
6918
6925
  }
6919
- interface IGetResponse<T> {
6920
- results: T[];
6921
- page: number;
6922
- limit: number;
6923
- totalResults: number;
6924
- totalPages: number;
6926
+ /** Интерфейс генерации документа для присоединения к программе ЦПП */
6927
+ interface IGenerateJoinProgram extends IGenerate {
6928
+ registry_id: number;
6929
+ protocol_number: string;
6930
+ protocol_day_month_year: string;
6925
6931
  }
6926
6932
 
6927
6933
  type index$2_IAgenda = IAgenda;
@@ -6934,13 +6940,14 @@ type index$2_IComplexStatement = IComplexStatement;
6934
6940
  type index$2_IGenerate = IGenerate;
6935
6941
  type index$2_IGenerateJoinCoop = IGenerateJoinCoop;
6936
6942
  type index$2_IGenerateJoinCoopDecision = IGenerateJoinCoopDecision;
6943
+ type index$2_IGenerateJoinProgram = IGenerateJoinProgram;
6937
6944
  type index$2_IGeneratedDocument = IGeneratedDocument;
6938
6945
  type index$2_IGetComplexDocuments = IGetComplexDocuments;
6939
6946
  type index$2_IGetResponse<T> = IGetResponse<T>;
6940
6947
  type index$2_IMetaDocument = IMetaDocument;
6941
6948
  type index$2_LangType = LangType;
6942
6949
  declare namespace index$2 {
6943
- export type { index$2_IAgenda as IAgenda, index$2_IChainDocument as IChainDocument, index$2_IComplexAct as IComplexAct, index$2_IComplexAgenda as IComplexAgenda, index$2_IComplexDecision as IComplexDecision, index$2_IComplexDocument as IComplexDocument, index$2_IComplexStatement as IComplexStatement, index$2_IGenerate as IGenerate, index$2_IGenerateJoinCoop as IGenerateJoinCoop, index$2_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$2_IGeneratedDocument as IGeneratedDocument, index$2_IGetComplexDocuments as IGetComplexDocuments, index$2_IGetResponse as IGetResponse, index$2_IMetaDocument as IMetaDocument, index$2_LangType as LangType };
6950
+ export type { index$2_IAgenda as IAgenda, index$2_IChainDocument as IChainDocument, index$2_IComplexAct as IComplexAct, index$2_IComplexAgenda as IComplexAgenda, index$2_IComplexDecision as IComplexDecision, index$2_IComplexDocument as IComplexDocument, index$2_IComplexStatement as IComplexStatement, index$2_IGenerate as IGenerate, index$2_IGenerateJoinCoop as IGenerateJoinCoop, index$2_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$2_IGenerateJoinProgram as IGenerateJoinProgram, index$2_IGeneratedDocument as IGeneratedDocument, index$2_IGetComplexDocuments as IGetComplexDocuments, index$2_IGetResponse as IGetResponse, index$2_IMetaDocument as IMetaDocument, index$2_LangType as LangType };
6944
6951
  }
6945
6952
 
6946
6953
  interface ICooperativeData extends IOrganizationData, ICooperative {
package/dist/index.d.mts CHANGED
@@ -6899,6 +6899,13 @@ interface IAgenda {
6899
6899
  interface IComplexAgenda extends IAgenda {
6900
6900
  documents: IComplexDocument;
6901
6901
  }
6902
+ interface IGetResponse<T> {
6903
+ results: T[];
6904
+ page: number;
6905
+ limit: number;
6906
+ totalResults: number;
6907
+ totalPages: number;
6908
+ }
6902
6909
  /**
6903
6910
  * Общий интерфейс для генерации/регенерации документа
6904
6911
  */
@@ -6916,12 +6923,11 @@ interface IGenerateJoinCoop extends IGenerate {
6916
6923
  interface IGenerateJoinCoopDecision extends IGenerate {
6917
6924
  decision_id: number;
6918
6925
  }
6919
- interface IGetResponse<T> {
6920
- results: T[];
6921
- page: number;
6922
- limit: number;
6923
- totalResults: number;
6924
- totalPages: number;
6926
+ /** Интерфейс генерации документа для присоединения к программе ЦПП */
6927
+ interface IGenerateJoinProgram extends IGenerate {
6928
+ registry_id: number;
6929
+ protocol_number: string;
6930
+ protocol_day_month_year: string;
6925
6931
  }
6926
6932
 
6927
6933
  type index$2_IAgenda = IAgenda;
@@ -6934,13 +6940,14 @@ type index$2_IComplexStatement = IComplexStatement;
6934
6940
  type index$2_IGenerate = IGenerate;
6935
6941
  type index$2_IGenerateJoinCoop = IGenerateJoinCoop;
6936
6942
  type index$2_IGenerateJoinCoopDecision = IGenerateJoinCoopDecision;
6943
+ type index$2_IGenerateJoinProgram = IGenerateJoinProgram;
6937
6944
  type index$2_IGeneratedDocument = IGeneratedDocument;
6938
6945
  type index$2_IGetComplexDocuments = IGetComplexDocuments;
6939
6946
  type index$2_IGetResponse<T> = IGetResponse<T>;
6940
6947
  type index$2_IMetaDocument = IMetaDocument;
6941
6948
  type index$2_LangType = LangType;
6942
6949
  declare namespace index$2 {
6943
- export type { index$2_IAgenda as IAgenda, index$2_IChainDocument as IChainDocument, index$2_IComplexAct as IComplexAct, index$2_IComplexAgenda as IComplexAgenda, index$2_IComplexDecision as IComplexDecision, index$2_IComplexDocument as IComplexDocument, index$2_IComplexStatement as IComplexStatement, index$2_IGenerate as IGenerate, index$2_IGenerateJoinCoop as IGenerateJoinCoop, index$2_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$2_IGeneratedDocument as IGeneratedDocument, index$2_IGetComplexDocuments as IGetComplexDocuments, index$2_IGetResponse as IGetResponse, index$2_IMetaDocument as IMetaDocument, index$2_LangType as LangType };
6950
+ export type { index$2_IAgenda as IAgenda, index$2_IChainDocument as IChainDocument, index$2_IComplexAct as IComplexAct, index$2_IComplexAgenda as IComplexAgenda, index$2_IComplexDecision as IComplexDecision, index$2_IComplexDocument as IComplexDocument, index$2_IComplexStatement as IComplexStatement, index$2_IGenerate as IGenerate, index$2_IGenerateJoinCoop as IGenerateJoinCoop, index$2_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$2_IGenerateJoinProgram as IGenerateJoinProgram, index$2_IGeneratedDocument as IGeneratedDocument, index$2_IGetComplexDocuments as IGetComplexDocuments, index$2_IGetResponse as IGetResponse, index$2_IMetaDocument as IMetaDocument, index$2_LangType as LangType };
6944
6951
  }
6945
6952
 
6946
6953
  interface ICooperativeData extends IOrganizationData, ICooperative {
package/dist/index.d.ts CHANGED
@@ -6899,6 +6899,13 @@ interface IAgenda {
6899
6899
  interface IComplexAgenda extends IAgenda {
6900
6900
  documents: IComplexDocument;
6901
6901
  }
6902
+ interface IGetResponse<T> {
6903
+ results: T[];
6904
+ page: number;
6905
+ limit: number;
6906
+ totalResults: number;
6907
+ totalPages: number;
6908
+ }
6902
6909
  /**
6903
6910
  * Общий интерфейс для генерации/регенерации документа
6904
6911
  */
@@ -6916,12 +6923,11 @@ interface IGenerateJoinCoop extends IGenerate {
6916
6923
  interface IGenerateJoinCoopDecision extends IGenerate {
6917
6924
  decision_id: number;
6918
6925
  }
6919
- interface IGetResponse<T> {
6920
- results: T[];
6921
- page: number;
6922
- limit: number;
6923
- totalResults: number;
6924
- totalPages: number;
6926
+ /** Интерфейс генерации документа для присоединения к программе ЦПП */
6927
+ interface IGenerateJoinProgram extends IGenerate {
6928
+ registry_id: number;
6929
+ protocol_number: string;
6930
+ protocol_day_month_year: string;
6925
6931
  }
6926
6932
 
6927
6933
  type index$2_IAgenda = IAgenda;
@@ -6934,13 +6940,14 @@ type index$2_IComplexStatement = IComplexStatement;
6934
6940
  type index$2_IGenerate = IGenerate;
6935
6941
  type index$2_IGenerateJoinCoop = IGenerateJoinCoop;
6936
6942
  type index$2_IGenerateJoinCoopDecision = IGenerateJoinCoopDecision;
6943
+ type index$2_IGenerateJoinProgram = IGenerateJoinProgram;
6937
6944
  type index$2_IGeneratedDocument = IGeneratedDocument;
6938
6945
  type index$2_IGetComplexDocuments = IGetComplexDocuments;
6939
6946
  type index$2_IGetResponse<T> = IGetResponse<T>;
6940
6947
  type index$2_IMetaDocument = IMetaDocument;
6941
6948
  type index$2_LangType = LangType;
6942
6949
  declare namespace index$2 {
6943
- export type { index$2_IAgenda as IAgenda, index$2_IChainDocument as IChainDocument, index$2_IComplexAct as IComplexAct, index$2_IComplexAgenda as IComplexAgenda, index$2_IComplexDecision as IComplexDecision, index$2_IComplexDocument as IComplexDocument, index$2_IComplexStatement as IComplexStatement, index$2_IGenerate as IGenerate, index$2_IGenerateJoinCoop as IGenerateJoinCoop, index$2_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$2_IGeneratedDocument as IGeneratedDocument, index$2_IGetComplexDocuments as IGetComplexDocuments, index$2_IGetResponse as IGetResponse, index$2_IMetaDocument as IMetaDocument, index$2_LangType as LangType };
6950
+ export type { index$2_IAgenda as IAgenda, index$2_IChainDocument as IChainDocument, index$2_IComplexAct as IComplexAct, index$2_IComplexAgenda as IComplexAgenda, index$2_IComplexDecision as IComplexDecision, index$2_IComplexDocument as IComplexDocument, index$2_IComplexStatement as IComplexStatement, index$2_IGenerate as IGenerate, index$2_IGenerateJoinCoop as IGenerateJoinCoop, index$2_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$2_IGenerateJoinProgram as IGenerateJoinProgram, index$2_IGeneratedDocument as IGeneratedDocument, index$2_IGetComplexDocuments as IGetComplexDocuments, index$2_IGetResponse as IGetResponse, index$2_IMetaDocument as IMetaDocument, index$2_LangType as LangType };
6944
6951
  }
6945
6952
 
6946
6953
  interface ICooperativeData extends IOrganizationData, ICooperative {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cooptypes",
3
3
  "type": "module",
4
- "version": "1.0.20-alpha.1",
4
+ "version": "1.0.20",
5
5
  "description": "_description_",
6
6
  "author": "Alex Ant <dacom.dark.sun@gmail.com>",
7
7
  "license": "MIT",
@@ -65,5 +65,5 @@
65
65
  "vite": "^5.2.11",
66
66
  "vitest": "^1.5.3"
67
67
  },
68
- "gitHead": "a950a47b28d5cd727940557955b08a1634c478b2"
68
+ "gitHead": "38b28752e1d522c7ff558e34c2614cc0dd5408b5"
69
69
  }